Paste #117046: logs

Date: 2023/11/02 17:14:05 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114


[01:13:10] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[01:13:11] [ServerMain/INFO]: Loaded 7 recipes
[01:13:11] [Server thread/INFO]: Starting minecraft server version 1.20.1
[01:13:11] [Server thread/INFO]: Loading properties
[01:13:11] [Server thread/INFO]: This server is running Paper version git-Paper-169 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: b4e3b3d)
[01:13:11] [Server thread/INFO]: Server Ping Player Sample Count: 12
[01:13:11] [Server thread/INFO]: Using 4 threads for Netty based IO
[01:13:11] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[01:13:11] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[01:13:11] [Server thread/INFO]: Default game type: SURVIVAL
[01:13:11] [Server thread/INFO]: Generating keypair
[01:13:11] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25614
[01:13:11] [Server thread/INFO]: Using epoll channel type
[01:13:11] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[01:13:11] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[01:13:12] [Server thread/INFO]: [AzLink] Folia support enabled successfully.
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loading 1 libraries... please wait
[01:13:12] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[01:13:12] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[01:13:14] [Server thread/WARN]: Legacy plugin SimpleTpa v6.4 does not specify an api-version.
[01:13:14] [Server thread/WARN]: Legacy plugin PlayTime v3.6 does not specify an api-version.
[01:13:14] [Server thread/WARN]: Legacy plugin NightVision v2.0 does not specify an api-version.
[01:13:14] [Server thread/WARN]: Legacy plugin CustomHeads v3.0.10 does not specify an api-version.
[01:13:14] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loading 2 libraries... please wait
[01:13:14] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[01:13:14] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[01:13:14] [Server thread/INFO]: [SpigotLibraryLoader] [O'DailyQuests] Loaded library /home/container/libraries/com/h2database/h2/2.1.214/h2-2.1.214.jar
[01:13:14] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.104
[01:13:14] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[01:13:14] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.2.17+6544-56d0383
[01:13:15] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@783d132b]
[01:13:15] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0
[01:13:15] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.4
[01:13:15] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[01:13:15] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[01:13:15] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+19-3eceec8
[01:13:15] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.0.3
[01:13:15] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
[01:13:15] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[01:13:15] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[01:13:15] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3247)
[01:13:15] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+17-79449ef
[01:13:15] [Server thread/INFO]: [AzLink] Loading server plugin AzLink v1.3.1
[01:13:15] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.27
[01:13:15] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR3.1.9
[01:13:15] [Server thread/INFO]: [AuthMe] Loading server plugin AuthMe v5.6.0-beta2-b2453
[01:13:15] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.18
[01:13:15] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.2-beta-r2
[01:13:15] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.14.1
[01:13:15] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[01:13:15] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.4
[01:13:15] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[01:13:15] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.92.1
[01:13:15] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v3.5.1
[01:13:15] [Server thread/INFO]: [ChatReaction] Loading server plugin ChatReaction v1.8.0
[01:13:15] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.0.0
[01:13:15] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.12.1
[01:13:15] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.3.371
[01:13:15] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.13
[01:13:15] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[01:13:15] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v4.4.0
[01:13:15] [Server thread/INFO]: [BattlePass] Loading server plugin BattlePass v4.0.15
[01:13:15] [Server thread/INFO]: [PlaytimeRewards] Loading server plugin PlaytimeRewards v0.2.0
[01:13:15] [Server thread/INFO]: [SilkSpawners_v2] Loading server plugin SilkSpawners_v2 v2.2.1
[01:13:15] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+17-79449ef
[01:13:15] [Server thread/INFO]: [CosmeticsCore] Loading server plugin CosmeticsCore v1.2.2f
[01:13:15] [Server thread/INFO]: [SimpleTpa] Loading server plugin SimpleTpa v6.4
[01:13:15] [Server thread/INFO]: [InvisibleItemFrames] Loading server plugin InvisibleItemFrames v2.15.1
[01:13:15] [Server thread/INFO]: [Freeze] Loading server plugin Freeze v2.5.0.165
[01:13:15] [Server thread/INFO]: [NoPlugins] Loading server plugin NoPlugins v8.1
[01:13:15] [Server thread/INFO]: [PlayTime] Loading server plugin PlayTime v3.6
[01:13:15] [Server thread/INFO]: [BetterSleeping4] Loading server plugin BetterSleeping4 v4.0.2
[01:13:15] [Server thread/INFO]: [AureliumSkills] Loading server plugin AureliumSkills vBeta 1.3.23
[01:13:15] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.11
[01:13:15] [Server thread/INFO]: [NightVision] Loading server plugin NightVision v2.0
[01:13:15] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.11.1
[01:13:15] [Server thread/INFO]: [FunctionalClans] Loading server plugin FunctionalClans v1.0.5.6
[01:13:15] [Server thread/INFO]: [M0-AntiAnvilRename] Loading server plugin M0-AntiAnvilRename v1.11
[01:13:15] [Server thread/INFO]: [HatCosmetics] Loading server plugin HatCosmetics v1.2.0-b5
[01:13:15] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.55
[01:13:15] [Server thread/INFO]: [CustomHeads] Loading server plugin CustomHeads v3.0.10
[01:13:15] [Server thread/INFO]: [O'DailyQuests] Loading server plugin ODailyQuests v2.2.4-SNAPSHOT-11
[01:13:15] [Server thread/INFO]: [BetterPrefix] Loading server plugin BetterPrefix v5.4
[01:13:15] [Server thread/INFO]: [UberEnchant] Loading server plugin UberEnchant v8.10.2
[01:13:15] [Server thread/INFO]: [PlugMan] Loading server plugin PlugMan v2.1.7
[01:13:15] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.43.1
[01:13:15] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[01:13:15] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[01:13:15] [Server thread/INFO]: [ActionHealth] Loading server plugin ActionHealth v3.5.9
[01:13:15] [Server thread/INFO]: [Sit] Loading server plugin Sit v1.5
[01:13:15] [Server thread/INFO]: [ClearLagTimer] Loading server plugin ClearLagTimer vBuild 36
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[01:13:15] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[01:13:15] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.14.2-3345d07
[01:13:15] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.6
[01:13:15] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[01:13:15] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[01:13:15] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.104
[01:13:16] [Server thread/INFO]:         __    
[01:13:16] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.104
[01:13:16] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[01:13:16] [Server thread/INFO]: 
[01:13:16] [Server thread/INFO]: [LuckPerms] Loading configuration...
[01:13:16] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[01:13:17] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[01:13:17] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[01:13:17] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1750ms)
[01:13:17] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[01:13:17] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[01:13:17] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[01:13:17] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[01:13:17] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[01:13:17] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.17+6544-56d0383
[01:13:17] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[01:13:17] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[01:13:18] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R1.PaperweightAdapter as the Bukkit adapter
[01:13:18] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[01:13:18] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.3
[01:13:18] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_20_R1, using PaperSkinRefresher.
[01:13:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.0.3]
[01:13:18] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[01:13:18] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[01:13:18] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.27
[01:13:18] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[01:13:18] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[01:13:18] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[01:13:18] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[01:13:18] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[01:13:19] [Server thread/INFO]: [NexEngine] Plugin loaded in 49 ms!
[01:13:19] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.12.1
[01:13:19] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.3.371
[01:13:19] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 2 language(s).
[01:13:19] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Current version: 15.0.3
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: aa377c1
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[01:13:19] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[01:13:19] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[01:13:19] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[01:13:19] [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.
[01:13:19] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[01:13:19] [Server thread/INFO]: Preparing level "world"
[01:13:19] [Server thread/INFO]: -------- World Settings For [world] --------
[01:13:19] [Server thread/INFO]: View Distance: 10
[01:13:19] [Server thread/INFO]: Simulation Distance: 10
[01:13:19] [Server thread/INFO]: Item Merge Radius: 4.0
[01:13:19] [Server thread/INFO]: Experience Merge Radius: 6.0
[01:13:19] [Server thread/INFO]: Mob Spawn Range: 6
[01:13:19] [Server thread/INFO]: Item Despawn Rate: 6000
[01:13:19] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[01:13:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:13:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[01:13:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:13:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[01:13:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 16 / Mo 24 / Mi 8 / Di 64 / Other 32
[01:13:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[01:13:19] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:13:19] [Server thread/INFO]: Max TNT Explosions: 100
[01:13:19] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:13:19] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[01:13:19] [Server thread/INFO]: View Distance: 10
[01:13:19] [Server thread/INFO]: Simulation Distance: 10
[01:13:19] [Server thread/INFO]: Item Merge Radius: 4.0
[01:13:19] [Server thread/INFO]: Experience Merge Radius: 6.0
[01:13:19] [Server thread/INFO]: Mob Spawn Range: 6
[01:13:19] [Server thread/INFO]: Item Despawn Rate: 6000
[01:13:19] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[01:13:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:13:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[01:13:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:13:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[01:13:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 16 / Mo 24 / Mi 8 / Di 64 / Other 32
[01:13:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[01:13:19] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:13:19] [Server thread/INFO]: Max TNT Explosions: 100
[01:13:19] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:13:19] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[01:13:19] [Server thread/INFO]: View Distance: 10
[01:13:19] [Server thread/INFO]: Simulation Distance: 10
[01:13:19] [Server thread/INFO]: Item Merge Radius: 4.0
[01:13:19] [Server thread/INFO]: Experience Merge Radius: 6.0
[01:13:19] [Server thread/INFO]: Mob Spawn Range: 6
[01:13:19] [Server thread/INFO]: Item Despawn Rate: 6000
[01:13:19] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[01:13:19] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:13:19] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[01:13:19] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:13:19] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[01:13:19] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[01:13:19] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 16 / Mo 24 / Mi 8 / Di 64 / Other 32
[01:13:19] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[01:13:19] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:13:19] [Server thread/INFO]: Max TNT Explosions: 100
[01:13:19] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:13:19] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[01:13:19] [Server thread/INFO]: Time elapsed: 312 ms
[01:13:19] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[01:13:19] [Server thread/INFO]: Time elapsed: 14 ms
[01:13:19] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[01:13:19] [Server thread/INFO]: Time elapsed: 10 ms
[01:13:19] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.4
[01:13:20] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[01:13:20] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[01:13:20] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[01:13:20] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[01:13:20] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[01:13:20] [Server thread/INFO]: [WorldGuard] Loading region data...
[01:13:20] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[01:13:20] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[01:13:20] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[01:13:20] [Server thread/INFO]: -------- World Settings For [pvparena] --------
[01:13:20] [Server thread/INFO]: View Distance: 10
[01:13:20] [Server thread/INFO]: Simulation Distance: 10
[01:13:20] [Server thread/INFO]: Item Merge Radius: 4.0
[01:13:20] [Server thread/INFO]: Experience Merge Radius: 6.0
[01:13:20] [Server thread/INFO]: Mob Spawn Range: 6
[01:13:20] [Server thread/INFO]: Item Despawn Rate: 6000
[01:13:20] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[01:13:20] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:13:20] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[01:13:20] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:13:20] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[01:13:20] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 16 / Mo 24 / Mi 8 / Di 64 / Other 32
[01:13:20] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[01:13:20] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:13:20] [Server thread/INFO]: Max TNT Explosions: 100
[01:13:20] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:13:20] [Server thread/INFO]: Preparing start region for dimension minecraft:pvparena
[01:13:20] [Server thread/INFO]: Time elapsed: 266 ms
[01:13:20] [Server thread/INFO]: [WorldGuard] (pvparena) TNT ignition is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (pvparena) Lighters are PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (pvparena) Lava fire is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (pvparena) Fire spread is UNRESTRICTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'pvparena'
[01:13:20] [Server thread/INFO]: -------- World Settings For [halloween] --------
[01:13:20] [Server thread/INFO]: View Distance: 10
[01:13:20] [Server thread/INFO]: Simulation Distance: 10
[01:13:20] [Server thread/INFO]: Item Merge Radius: 4.0
[01:13:20] [Server thread/INFO]: Experience Merge Radius: 6.0
[01:13:20] [Server thread/INFO]: Mob Spawn Range: 6
[01:13:20] [Server thread/INFO]: Item Despawn Rate: 6000
[01:13:20] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[01:13:20] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[01:13:20] [Server thread/INFO]: Nerfing mobs spawned from spawners: true
[01:13:20] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[01:13:20] [Server thread/INFO]: Cactus Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Cane Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Melon Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Sapling Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Carrot Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Potato Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Wheat Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Vine Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Kelp Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[01:13:20] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[01:13:20] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 16 / Mo 24 / Mi 8 / Di 64 / Other 32
[01:13:20] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[01:13:20] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[01:13:20] [Server thread/INFO]: Max TNT Explosions: 100
[01:13:20] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[01:13:20] [Server thread/INFO]: Preparing start region for dimension minecraft:halloween
[01:13:20] [Server thread/INFO]: Time elapsed: 30 ms
[01:13:20] [Server thread/INFO]: [WorldGuard] (halloween) TNT ignition is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (halloween) Lighters are PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (halloween) Lava fire is PERMITTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] (halloween) Fire spread is UNRESTRICTED.
[01:13:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'halloween'
[01:13:20] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[01:13:20] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[01:13:20] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[01:13:20] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+19-3eceec8
[01:13:20] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[01:13:20] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsSpawn to the same version.
[01:13:20] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsChat to the same version.
[01:13:21] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[01:13:21] [Server thread/INFO]: [Essentials] No kits found to migrate.
[01:13:21] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[01:13:21] [Server thread/INFO]: [Essentials] Using locale en_US
[01:13:21] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[01:13:21] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[01:13:21] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[01:13:21] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[01:13:21] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
[01:13:21] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.1)...
[01:13:21] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[01:13:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[01:13:22] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[01:13:22] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[01:13:22] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[01:13:22] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[01:13:22] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[01:13:22] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading Packs...
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading Items...
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading Skills...
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/container/plugins/MythicMobs/stats.yml
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[01:13:23] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[01:13:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[01:13:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[01:13:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[01:13:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[01:13:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[01:13:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[01:13:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[01:13:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[01:13:23] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[01:13:23] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[01:13:23] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.4.1 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
[01:13:23] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3247)
[01:13:24] [Server thread/INFO]: [Citizens] Loading external libraries
[01:13:24] [Server thread/ERROR]: [Citizens] v2.0.33-SNAPSHOT (build 3247) is not compatible with Minecraft v1_20_R1 - try upgrading Minecraft or Citizens. Disabling...
[01:13:24] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3247)
[01:13:24] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+17-79449ef
[01:13:24] [Server thread/WARN]: [EssentialsSpawn] Version mismatch! Please update all Essentials jars to the same version.
[01:13:24] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[01:13:24] [Server thread/INFO]: [AzLink] Enabling AzLink v1.3.1
[01:13:24] [Server thread/INFO]: [AzLink] Starting HTTP server
[01:13:24] [nioEventLoopGroup-2-1/INFO]: [AzLink] HTTP server started on /[0:0:0:0:0:0:0:0]:30489
[01:13:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: azlink [1.3.1]
[01:13:24] [Server thread/INFO]: [AzLink] PlaceholderAPI expansion enabled
[01:13:24] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.9
[01:13:24] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[01:13:24] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[01:13:24] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-beta2-b2453
[01:13:24] [Server thread/INFO]: [AuthMe] SQLite Setup finished
[01:13:24] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
[01:13:24] [Folia Async Scheduler Thread #2/INFO]: [AzLink] Successfully connected to https://yutcraft.wstr.fr
[01:13:24] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[01:13:24] [Server thread/INFO]: [AuthMe] Hooked successfully into Multiverse-Core
[01:13:24] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0-beta2 build n.2453 successfully enabled!
[01:13:24] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.18
[01:13:24] [Folia Async Scheduler Thread #3/WARN]: [AzLink] A new update of AzLink is available: v1.3.2
[01:13:24] [Folia Async Scheduler Thread #3/WARN]: [AzLink] You can download it on https://azuriom.com/azlink
[01:13:24] [Server thread/INFO]: [SuperVanish] Hooked into PaperSpigot for server list ping support
[01:13:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.18]
[01:13:24] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[01:13:24] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[01:13:24] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.2-beta-r2
[01:13:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[01:13:24] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[01:13:24] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.2-beta-r2
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.27
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-169 (MC: 1.20.1)
                                               
[01:13:24] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 30481
[01:13:24] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.14.1
[01:13:24] [Server thread/WARN]: [VotingPlugin] Detected no voting sites, this may mean something isn't properly setup
[01:13:24] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[01:13:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[01:13:24] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[01:13:25] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[01:13:25] [Server thread/WARN]: [VotingPlugin] No VotifierEvent found, install Votifier, NuVotifier, or another Votifier plugin
[01:13:25] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.14.1
[01:13:25] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[01:13:25] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.4
[01:13:25] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[01:13:25] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.92.1
[01:13:25] [Server thread/INFO]: [ShopGUIPlus] [STDOUT] [Spigotunlocked.com] - COSMO
[01:13:25] [Server thread/WARN]: Nag author(s): '[brc]' of 'ShopGUIPlus v1.92.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[01:13:25] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.5.1
[01:13:25] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[01:13:25] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[01:13:25] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_20_R1
[01:13:25] [Server thread/INFO]: [AuctionHouse] Enabled DiscordSRV support
[01:13:25] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[01:13:25] [Server thread/INFO]: [AuctionHouse] Loaded 56 listings
[01:13:25] [Server thread/INFO]: [ChatReaction] Enabling ChatReaction v1.8.0
[01:13:25] [Server thread/INFO]: [ChatReaction] You are using Spigot! Tooltips in reaction start messages are enabled!
[01:13:25] [Server thread/INFO]: [ChatReaction] 18 words loaded!
[01:13:25] [Server thread/INFO]: [ChatReaction] Reaction stats are disabled!!
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[01:13:25] [Server thread/WARN]: Nag author(s): '[extended_clip]' of 'ChatReaction v1.8.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT] Could not connect to spigotmc.org
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT] to check for updates! 
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT] You are running 1.8.0
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT] The latest version
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT] of ChatReaction!
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[01:13:25] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[01:13:25] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.0.0
[01:13:25] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[01:13:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.0.0]
[01:13:25] [pool-74-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[01:13:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[01:13:25] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@1b590973
[01:13:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[01:13:25] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[01:13:25] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[01:13:25] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[01:13:25] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crate keys.
[01:13:25] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[01:13:26] [Server thread/INFO]: [ExcellentCrates] Loaded 4 crates.
[01:13:26] [Server thread/ERROR]: [ExcellentCrates] Invalid crate 'diamond' in 'default' menu!
[01:13:26] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[01:13:26] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 265 ms!
[01:13:26] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.13
[01:13:26] [Server thread/INFO]: [RoseStacker] Initializing using RoseGarden v1.2.4
[01:13:26] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[01:13:26] [JDA MainWS-WriteThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[01:13:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.13]
[01:13:26] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[01:13:26] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[01:13:26] [Server thread/INFO]: [ClearLag] Loading modules...
[01:13:26] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_20_R1.MinecraftServer)
[01:13:26] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[01:13:26] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[01:13:26] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[01:13:26] [Thread-27/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.20]...
[01:13:26] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.4.0
[01:13:26] [Server thread/INFO]: [BattlePass] Enabling BattlePass v4.0.15
[01:13:26] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[01:13:26] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[01:13:26] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[01:13:26] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully.
[01:13:26] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[01:13:26] [Thread-27/INFO]: [ClearLag] No updates found!
[01:13:26] [Server thread/INFO]: [AuctionHouse] Hooked into AuctionHouse
[01:13:26] [Server thread/INFO]: [ChatReaction] Hooked into ChatReaction
[01:13:26] [Server thread/INFO]: [ExcellentCrates] Hooked into ExcellentCrates
[01:13:26] [Server thread/INFO]: [MythicMobs] Using internal version as PluginVersion{major=5, minor=4, bugfix=1} for loading MythicMobs.
[01:13:26] [Server thread/INFO]: [MythicMobs] Hooked into MythicMobs
[01:13:26] [Server thread/INFO]: [ShopGUIPlus] Hooked into ShopGuiPlus
[01:13:26] [Server thread/INFO]: [BattlePass] Enabled 6 actions.
[01:13:26] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[01:13:26] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[01:13:26] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[01:13:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: battlepass [1.1]
[01:13:26] [Server thread/INFO]: [PlaytimeRewards] Enabling PlaytimeRewards v0.2.0
[01:13:26] [Server thread/WARN]: [PlaytimeRewards] Detected a newer Version than v1.19.*
[01:13:26] [Server thread/WARN]: [PlaytimeRewards] Please be aware that this Version has not been tested by the Developer!
[01:13:26] [Server thread/WARN]: [PlaytimeRewards] Found a preceding '/' in your Commands for the Reward 'SampleReward2'.
[01:13:26] [Server thread/WARN]: [PlaytimeRewards] Make sure that this doesn't happen!
[01:13:26] [Server thread/WARN]: [PlaytimeRewards] Found a preceding '/' in your Commands for the Reward 'SampleReward3'.
[01:13:26] [Server thread/WARN]: [PlaytimeRewards] Make sure that this doesn't happen!
[01:13:26] [Server thread/INFO]: [PlaytimeRewards] Loaded 3 rewards!
[01:13:26] [Server thread/INFO]: [PlaytimeRewards] Found PlaceholderAPI, registering Placeholders...
[01:13:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PTR [0.2.0]
[01:13:26] [Server thread/INFO]: [PlaytimeRewards] Plugin is running (took 19ms)!
[01:13:26] [Server thread/INFO]: [SilkSpawners_v2] Enabling SilkSpawners_v2 v2.2.1
[01:13:26] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting SilkSpawners v2.2.1
[01:13:26] [pool-80-thread-1/INFO]: [SilkSpawners] [INFO]: Checking for updates
[01:13:26] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading Cross-Version support
[01:13:26] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading support for NMS-Version v1_20_R1
[01:13:26] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading locale file
[01:13:26] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting metrics service. You can disable the collection of anonymous usage data by editing the config file under /plugins/bStats/
[01:13:26] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering listeners
[01:13:26] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering commands
[01:13:26] [Server thread/INFO]: [SilkSpawners] [INFO]: Started SilkSpawners v2.2.1
[01:13:26] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+17-79449ef
[01:13:26] [Server thread/WARN]: [EssentialsChat] Version mismatch! Please update all Essentials jars to the same version.
[01:13:26] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[01:13:26] [Server thread/INFO]: [CosmeticsCore] Enabling CosmeticsCore v1.2.2f
[01:13:26] [pool-80-thread-1/INFO]: [SilkSpawners] [INFO]: The plugin is up to date (v2.2.1)
[01:13:26] [Server thread/INFO]: [SimpleTpa] Enabling SimpleTpa v6.4*
[01:13:26] [Server thread/INFO]: [SimpleTpa] If you need support contact me at https://discord.gg/SZUkza9
[01:13:26] [Server thread/INFO]: [SimpleTpa] Simple Tpa has been enabled on version 6.4
[01:13:26] [Server thread/INFO]: Enabled metrics. You may opt-out by changing plugins/bStats/config.yml
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] Enabling InvisibleItemFrames v2.15.1
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] Initializing managers...
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] MemoryDataManager initialized!
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] Using Paper Implementation!
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] ImplementationManager initialized!
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] BlockLockerManager initialized!
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] Registering commands...
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] Registering listeners...
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] Loading data...
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] Starting metrics...
[01:13:26] [Server thread/INFO]: [InvisibleItemFrames] Done and enabled in 6.82ms
[01:13:26] [Server thread/INFO]: [Freeze] Enabling Freeze v2.5.0.165
[01:13:27] [Server thread/INFO]: [Freeze] Using Paper ItemHandler with NMS backup for NBT.
[01:13:27] [Server thread/INFO]: [Freeze] Successfully loaded 1 language(s).
[01:13:27] [Server thread/INFO]: [Freeze] Detected server as regular SpigotMC/PaperMC (not Folia)
[01:13:27] [Server thread/INFO]: [NoPlugins] Enabling NoPlugins v8.1
[01:13:27] [Server thread/INFO]: [NoPlugins] Minecraft version: v1_20_R1
[01:13:27] [Server thread/INFO]: [NoPlugins] Loaded assets for newer minecraft (1.13+)
[01:13:27] [Server thread/INFO]: [NoPlugins] Successfully loaded.
[01:13:27] [Server thread/INFO]: [PlayTime] Enabling PlayTime v3.6*
[01:13:27] [Server thread/INFO]: [PlayTime] PlaceholderAPI was found! Registering Placeholders.
[01:13:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playtime [3.6]
[01:13:27] [Server thread/INFO]: [BetterSleeping4] Enabling BetterSleeping4 v4.0.2
[01:13:27] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[01:13:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bettersleeping [4.0.2]
[01:13:27] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.23
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:YutCraft - V1(1156249449543249930)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢・annonces(1158819498925756518)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📜・règles(1160943387168489593)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📸・spoil-v2(1168535486894186576)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚧・status(1161385695491928190)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚧・patch-notes(1158819666685349928)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌌・giveaway(1163867146862989416)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🏯・sondages(1160959321757192302)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎫・ticket(1164297562665254912)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📋・recrutement(1167229692504457419)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬・chat(1158819295774642206)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📸・médias(1160953612923584634)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖・cmds(1160953650101887157)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎃・mêmes(1160953251072585808)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔮・suggestions(1160953631080714320)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔮・art(1160962733030789120)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬・chat-en-jeu(1165684098375889008)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💵・commerce(1166754420126662848)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚧・claim(1165685585898389654)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔮・craft(1167079667480658060)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🕔・logs-bot(1161680328822370325)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖・test(1162471511479816292)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:arrivée(1156249450860253278)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-emoji(1158837022077747291)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:chat-staff(1161700526354878504)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs-invite(1161701300803751996)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-bloodone_(1165011136316457102)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-bloodone_(1166042646708490250)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-dragonnemone(1166828052400058492)
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[01:13:27] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[01:13:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [Beta 1.3.23]
[01:13:27] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[01:13:27] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[01:13:27] [Server thread/INFO]: [AureliumSkills] Loaded 194 config options in 0 ms
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[01:13:27] [Server thread/INFO]: [AureliumSkills] Loaded 312 sources and 10 tags in 6ms
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[01:13:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[01:13:27] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[01:13:27] [Server thread/INFO]: [AureliumSkills] Loading languages...
[01:13:28] [Server thread/INFO]: [AureliumSkills] Loaded 17 languages in 777ms
[01:13:28] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[01:13:28] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 2ms
[01:13:28] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[01:13:28] [Server thread/INFO]: [AureliumSkills] Loaded 32 loot entries in 4 pools and 2 tables
[01:13:28] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[01:13:28] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[01:13:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[01:13:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[01:13:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AureliumSkills' to create a bStats instance!
[01:13:28] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.11
[01:13:28] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[01:13:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.11]
[01:13:28] [Server thread/INFO]: [NightVision] Enabling NightVision v2.0*
[01:13:28] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.11.1
[01:13:28] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[01:13:28] [Server thread/INFO]: [EpicRename] Version: 3.11.1 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[01:13:28] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[01:13:28] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[01:13:28] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[01:13:28] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[01:13:28] [Server thread/INFO]: [FunctionalClans] Enabling FunctionalClans v1.0.5.6
[01:13:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fc [1.0]
[01:13:28] [Server thread/INFO]: [FunctionalClans] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[01:13:28] [Server thread/INFO]: [FunctionalClans] Successfully enabled. (10 ms)
[01:13:28] [Server thread/INFO]: [FunctionalClans] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[01:13:28] [Server thread/INFO]: [M0-AntiAnvilRename] Enabling M0-AntiAnvilRename v1.11
[01:13:28] [Server thread/INFO]: [HatCosmetics] Enabling HatCosmetics v1.2.0-b5
[01:13:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[01:13:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[01:13:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[01:13:28] [Server thread/INFO]: [spark] Enabling spark v1.10.55
[01:13:28] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[01:13:28] [Server thread/INFO]: [spark] Starting background profiler...
[01:13:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.55]
[01:13:28] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[01:13:28] [Server thread/INFO]: [CustomHeads] Enabling CustomHeads v3.0.10*
[01:13:28] [Server thread/INFO]: [CustomHeads] Using V1_20_R1 as Version Handler
[01:13:29] [Server thread/INFO]: [O'DailyQuests] Enabling ODailyQuests v2.2.4-SNAPSHOT-11
[01:13:29] [Server thread/INFO]: [O'DailyQuests] Plugin is starting...
[01:13:29] [Server thread/WARN]: [O'DailyQuests] It looks like you were using an older version of the plugin. Let's update your files!
[01:13:29] [Server thread/WARN]: [O'DailyQuests] The parameter "disable_status" was missing in one of your configuration files.
[01:13:29] [Server thread/WARN]: [O'DailyQuests] It has been added automatically on your file.
[01:13:29] [Server thread/WARN]: [O'DailyQuests] For more information about this addition, please visit the Wiki.
[01:13:29] [Server thread/INFO]: [O'DailyQuests] Checking for update...
[01:13:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[01:13:29] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection conn0: url=jdbc:h2:./plugins/ODailyQuests/database user=ODQ
[01:13:29] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[01:13:29] [Server thread/INFO]: [O'DailyQuests] Plugin successfully connected to database DATABASE.
[01:13:29] [Server thread/INFO]: [O'DailyQuests] Vault successfully hooked.
[01:13:29] [Server thread/INFO]: [O'DailyQuests] MythicMobs successfully hooked.
[01:13:29] [Server thread/ERROR]: Error occurred while enabling ODailyQuests v2.2.4-SNAPSHOT-11 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/Citizens
    at com.ordwen.odailyquests.externs.hooks.npcs.CitizensHook.setupCitizens(CitizensHook.java:22) ~[ODailyQuests-2.2.4-SNAPSHOT-11.jar:?]
    at com.ordwen.odailyquests.externs.IntegrationsManager.loadCitizens(IntegrationsManager.java:116) ~[ODailyQuests-2.2.4-SNAPSHOT-11.jar:?]
    at com.ordwen.odailyquests.externs.IntegrationsManager.loadAllDependencies(IntegrationsManager.java:37) ~[ODailyQuests-2.2.4-SNAPSHOT-11.jar:?]
    at com.ordwen.odailyquests.ODailyQuests.onEnable(ODailyQuests.java:92) ~[ODailyQuests-2.2.4-SNAPSHOT-11.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.1.jar:git-Paper-169]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.1.jar:git-Paper-169]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.20.1.jar:git-Paper-169]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:551) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.20.1.jar:git-Paper-169]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.Citizens
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:183) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:150) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 16 more
[01:13:29] [Server thread/INFO]: [O'DailyQuests] Disabling ODailyQuests v2.2.4-SNAPSHOT-11
[01:13:29] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling ODailyQuests v2.2.4-SNAPSHOT-11 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "String.hashCode()" because "<local3>" is null
    at com.ordwen.odailyquests.commands.ReloadService.saveConnectedPlayerQuests(ReloadService.java:88) ~[ODailyQuests-2.2.4-SNAPSHOT-11.jar:?]
    at com.ordwen.odailyquests.ODailyQuests.onDisable(ODailyQuests.java:142) ~[ODailyQuests-2.2.4-SNAPSHOT-11.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:283) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:224) ~[paper-1.20.1.jar:git-Paper-169]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.1.jar:git-Paper-169]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:193) ~[paper-1.20.1.jar:git-Paper-169]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.1.jar:git-Paper-169]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.20.1.jar:git-Paper-169]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:551) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.20.1.jar:git-Paper-169]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.20.1.jar:git-Paper-169]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[01:13:29] [Server thread/INFO]: [BetterPrefix] Enabling BetterPrefix v5.4
[01:13:29] [Server thread/INFO]: [BetterPrefix] Loaded config.yml
[01:13:29] [Server thread/INFO]: [UberEnchant] Enabling UberEnchant v8.10.2
[01:13:29] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.7
[01:13:29] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.43.1
[01:13:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.43.1]
[01:13:29] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.43.1
[01:13:29] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[01:13:29] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[01:13:29] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[01:13:29] [Server thread/INFO]: [DeluxeMenus] 3 GUI menus loaded!
[01:13:29] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[01:13:29] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[01:13:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.13.7-Release]
[01:13:29] [Server thread/INFO]: [ActionHealth] Enabling ActionHealth v3.5.9
[01:13:29] [Server thread/INFO]: [Sit] Enabling Sit v1.5
[01:13:29] [Server thread/INFO]: [ClearLagTimer] Enabling ClearLagTimer vBuild 36
[01:13:29] [Server thread/INFO]: [ClearLagTimer] Build 36, a free resource by Norska - Thanks for downloading!
[01:13:29] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[01:13:30] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[01:13:30] [Server thread/INFO]: [ajLeaderboards] Loaded 1 boards
[01:13:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[01:13:30] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[01:13:30] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[01:13:30] [Server thread/INFO]: [Quests] Enabling Quests v3.14.2-3345d07
[01:13:30] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[01:13:30] [Server thread/INFO]: [Quests] Your server is running version 1.20
[01:13:30] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[01:13:30] [Server thread/INFO]: [TAB] Enabling TAB v4.0.6
[01:13:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.0.6]
[01:13:30] [Server thread/INFO]: [TAB] Enabled in 104ms
[01:13:30] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[01:13:30] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[01:13:30] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[01:13:30] [Server thread/INFO]: [UberEnchant] Found: 0 Registered UberEnchantments.
[01:13:30] [Server thread/INFO]: [UberEnchant] Loaded: 0 UberEnchantments.
[01:13:30] [Server thread/INFO]: Starting GS4 status listener
[01:13:30] [Server thread/INFO]: Thread Query Listener started
[01:13:30] [Query Listener #1/INFO]: Query running on 0.0.0.0:25614
[01:13:30] [Server thread/INFO]: Running delayed init tasks
[01:13:30] [Craft Scheduler Thread - 4 - Essentials/INFO]: [Essentials] Fetching version information...
[01:13:30] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[01:13:30] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[01:13:30] [Craft Scheduler Thread - 6 - AuthMe/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
[01:13:30] [Craft Scheduler Thread - 6 - AuthMe/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
[01:13:30] [Craft Scheduler Thread - 6 - AuthMe/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
[01:13:30] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: [ItemsAdder] [License] Store product licensed to: yuteeyys (470440)
[01:13:30] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[01:13:30] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] [Generating assets]
[01:13:30] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[01:13:30] [Craft Scheduler Thread - 6 - AuthMe/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins/AuthMe/GeoLite2-Country.mmdb (No such file or directory)
[01:13:30] [Craft Scheduler Thread - 18 - CosmeticsCore/INFO]: [CosmeticsCore] [License] Store product licensed to: dfd (1)
[01:13:30] [Craft Scheduler Thread - 32 - Vault/INFO]: [Vault] Checking for Updates ... 
[01:13:30] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[01:13:30] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[01:13:30] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[01:13:30] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[01:13:31] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loaded 6 holograms!
[01:13:31] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[01:13:31] [Craft Scheduler Thread - 32 - Vault/INFO]: [Vault] No new version available
[01:13:31] [Craft Scheduler Thread - 23 - M0-AntiAnvilRename/INFO]: [M0-AntiAnvilRename] You are running an outdated version of M0-CoreCord.
[01:13:31] [Craft Scheduler Thread - 23 - M0-AntiAnvilRename/INFO]: [M0-AntiAnvilRename] Latest version: 1.11.2, you are using: 1.11
[01:13:31] [Craft Scheduler Thread - 23 - M0-AntiAnvilRename/INFO]: [M0-AntiAnvilRename] You can download the latest version on Spigot:
[01:13:31] [Craft Scheduler Thread - 23 - M0-AntiAnvilRename/INFO]: [M0-AntiAnvilRename] https://www.spigotmc.org/resources/m0-antianvilrename.86811/
[01:13:31] [Craft Scheduler Thread - 19 - PlayTime/INFO]: [PlayTime] Latest version is installed! - v3.6
[01:13:31] [Craft Scheduler Thread - 17 - RoseStacker/INFO]: [RoseGarden] An update for RoseStacker (v1.5.14) is available! You are running v1.5.13.
[01:13:31] [Craft Scheduler Thread - 24 - HatCosmetics/INFO]: [HatCosmetics] Server is running the latest version available!
[01:13:31] [Server thread/WARN]: Cannot load file: /contents/panneau/items_packs/hallowencosmetics/blocks.yml
[01:13:31] [Server thread/WARN]: [ItemsAdder] Error: while scanning for the next token
found character '\t(TAB)' that cannot start any token. (Do not use \t(TAB) for indentation)
 in 'reader', line 11, column 1:
        behaviours:
    ^

[01:13:31] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[01:13:31] [Craft Scheduler Thread - 1 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlueSlimeCore'.
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/flowers.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/logs.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/trapdoors.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/deadcoralfans.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/drops.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/miscellaneous.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/ores.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/shulkerboxes.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/glass.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/beds.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/food.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/signs.yml
[01:13:31] [Craft Scheduler Thread - 11 - RoseStacker/INFO]: [RoseStacker] Fetched 125 translation locales.
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/decorations.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/dyes.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/terracottas.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/boats.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/strippedlogs.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/wools.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/deadcorals.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/blackmarket.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/glazedterracottas.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/lang.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/musicdiscs.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/concretes.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/banners.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/redstone.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/doors.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/glasspanes.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/concretepowders.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/planks.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/saplings.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/skulls.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/fencegates.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/strippedwoods.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/fences.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/deadcoralblocks.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/buttons.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/farming.yml
[01:13:31] [Craft Scheduler Thread - 2 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[01:13:31] [Craft Scheduler Thread - 2 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'Freeze'.
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/coralblocks.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/blocks.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/walls.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/config.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/woods.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'events' for item enderiteexpansion:enderite_armor_boots
[01:13:31] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'events' for item enderiteexpansion:enderite_armor_boots
[01:13:31] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'events' for item enderiteexpansion:enderite_armor_boots
[01:13:31] [Server thread/ERROR]: [ItemsAdder] Unknown slot: 'events' for item enderiteexpansion:enderite_armor_boots
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/carpets.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/corals.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/leaves.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/coralfans.yml
[01:13:31] [Server thread/ERROR]: [ItemsAdder] No namespace. File: /contents/_iainternal/configs/shops/PressurePlates.yml
[01:13:31] [Server thread/WARN]: [ItemsAdder] Custom entities 'fast_packets_creation' is disabled. This might cause stuttering animations. More info: https://a.devs.beer/ia-delaypackets
[01:13:31] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Essentials for Vault's Economy API
[01:13:31] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LuckPerms for Vault's Chat API
[01:13:31] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for RoseStacker.
[01:13:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.26.2]
[01:13:31] [Server thread/INFO]: [BetterPrefix] was enabled successfully!
[01:13:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.14.2-3345d07]
[01:13:31] [Server thread/INFO]: [Quests] 37 task types have been registered.
[01:13:31] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[01:13:31] [Server thread/INFO]: [Quests] 1002 quests have been registered.
[01:13:31] [Craft Scheduler Thread - 26 - BetterPrefix/INFO]: [BetterPrefix] There is not a new update available.
[01:13:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[01:13:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.7]
[01:13:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[01:13:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: progress [2.1]
[01:13:31] [Server thread/INFO]: 4 placeholder hook(s) registered!
[01:13:31] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.5) is available at:
[01:13:31] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[01:13:31] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[01:13:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionhouse [3.5.1]
[01:13:31] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[01:13:31] [Server thread/INFO]: Done (20.439s)! For help, type "help"
[01:13:31] [Server thread/INFO]: Timings Reset
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic_plate' for recipe 'ufo_toy'. File: /contents/iavehicles/configs/recipes/recipe_ufo_toy.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic_plate' for recipe 'clip'. File: /contents/iaweapons/configs/recipes/clip.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic_plate' for recipe 'shotgun_cartridge'. File: /contents/iaweapons/configs/recipes/shotgun_cartridge.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic_plate' for recipe 'white_go_cart'. File: /contents/iavehicles/configs/recipes/recipe_white_go_cart.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:iron_plate' for recipe 'lava_lamp'. File: /contents/iadeco/configs/recipes/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic_plate' for recipe 'monitor'. File: /contents/iadeco/configs/recipes/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic_plate' for recipe 'tv'. File: /contents/iadeco/configs/recipes/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:iron_plate' for recipe 'mini_fridge'. File: /contents/iadeco/configs/recipes/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:iron_plate' for recipe 'vending_machine'. File: /contents/iadeco/configs/recipes/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:iron_plate' for recipe 'coffee_machine'. File: /contents/iadeco/configs/recipes/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic' for recipe 'white_chandeliers'. File: /contents/iadeco/configs/recipes/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic' for recipe 'blank_disc'. File: /contents/iamusic/configs/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:dark_amethyst_prism' for recipe 'music_disc_cdk_sunday'. File: /contents/iamusic/configs/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:ruby' for recipe 'music_disc_vidian_aether_theories'. File: /contents/iamusic/configs/recipes.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic_plate' for recipe 'shopping_cart'. File: /contents/iavehicles/configs/recipes/recipe_shopping_cart.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:plastic_plate' for recipe 'grenade'. File: /contents/iaweapons/configs/recipes/grenade.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iasurvival:end_ingot' for recipe 'ufo'. File: /contents/iavehicles/configs/recipes/recipe_ufo.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iaalchemy:small_energy_capsule' for recipe 'ufo'. File: /contents/iavehicles/configs/recipes/recipe_ufo.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Ingredient not found 'iaalchemy:mysterious_material' for recipe 'ufo'. File: /contents/iavehicles/configs/recipes/recipe_ufo.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'energy_orb' not found for vehicle 'iavehicles:ufo'. File /contents/iavehicles/configs/air/ufo.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'small_energy_capsule' not found for vehicle 'iavehicles:ufo'. File /contents/iavehicles/configs/air/ufo.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'energy_capsule' not found for vehicle 'iavehicles:ufo'. File /contents/iavehicles/configs/air/ufo.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'energy_orb' not found for vehicle 'iavehicles:broomstick'. File /contents/iavehicles/configs/air/broomstick.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'small_energy_capsule' not found for vehicle 'iavehicles:broomstick'. File /contents/iavehicles/configs/air/broomstick.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'energy_capsule' not found for vehicle 'iavehicles:broomstick'. File /contents/iavehicles/configs/air/broomstick.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'banana' not found for vehicle 'iavehicles:shopping_cart'. File /contents/iavehicles/configs/ground/shopping_cart.yml
[01:13:31] [Craft Scheduler Thread - 8 - ItemsAdder/ERROR]: [ItemsAdder] Fuel item 'pear' not found for vehicle 'iavehicles:shopping_cart'. File /contents/iavehicles/configs/ground/shopping_cart.yml
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Loaded 414 items
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 2/750 REAL_NOTE block IDs
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] Used 93/6608 font_images
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 21 categories
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[01:13:32] [Craft Scheduler Thread - 8 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url... 
[01:13:32] [Craft Scheduler Thread - 32 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://91.197.6.52:30481/generated.zip
[01:13:32] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[01:13:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[01:13:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[01:13:32] [Server thread/ERROR]: [CosmeticsCore] Unknown ModelEngine blueprint: amogus
[01:13:32] [Server thread/ERROR]: [CosmeticsCore] Unknown ModelEngine blueprint: star_kite
[01:13:32] [Server thread/ERROR]: [CosmeticsCore] Unknown ModelEngine blueprint: ballon_cluster
[01:13:32] [Server thread/ERROR]: [CosmeticsCore] Unknown ModelEngine blueprint: locomotive
[01:13:32] [Server thread/INFO]: [Mythic] Reloading plugin...
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading Packs...
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading Items...
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading Skills...
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/container/plugins/MythicMobs/stats.yml
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[01:13:32] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[01:13:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[01:13:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[01:13:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[01:13:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[01:13:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[01:13:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[01:13:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[01:13:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[01:13:32] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[01:13:32] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[01:13:32] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.92.1 ]================================
[01:13:32] [Server thread/INFO]: [ShopGUIPlus]  
[01:13:32] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[01:13:32] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[01:13:32] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[01:13:32] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[01:13:32] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ItemsAdder.
[01:13:32] [Server thread/INFO]: [ShopGUIPlus] Using RoseStacker for spawners support.
[01:13:32] [Server thread/INFO]: [ShopGUIPlus] Loaded 9 main menu items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'corals' with 14 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'coralblocks' with 14 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'concretes' with 25 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'buttons' with 27 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'skulls' with 14 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 31 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'woods' with 18 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 126 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'glass' with 26 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'deadcoralfans' with 14 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'boats' with 15 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blackmarket' with 22 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'banners' with 25 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 25 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'flowers' with 27 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 33 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'planks' with 18 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'trapdoors' with 17 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'fences' with 18 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'doors' with 17 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'glasspanes' with 26 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 24 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'pressureplates' with 18 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'terracottas' with 26 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'glazedterracottas' with 25 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'shulkerboxes' with 26 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'deadcorals' with 14 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'coralfans' with 14 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 36 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'concretepowders' with 25 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'musicdiscs' with 24 items.
[01:13:33] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'saplings' with 16 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'beds' with 25 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 69 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'deadcoralblocks' with 14 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'fencegates' with 17 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decorations' with 61 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 15 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'carpets' with 25 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'strippedwoods' with 18 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'signs' with 17 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 32 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'walls' with 26 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'leaves' with 15 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 54 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'strippedlogs' with 18 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'logs' with 18 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'wools' with 25 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded 48 shops with total of 1249 items.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[01:13:34] [Server thread/INFO]: [ShopGUIPlus]  
[01:13:34] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[01:13:34] [Server thread/INFO]: [ClearLagTimer] Attempting hooks...
[01:13:34] [Server thread/INFO]: [ClearLagTimer] Hooked into PlaceholderAPI!
[01:13:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clearlagtimer [Build 36]
[01:13:34] [Server thread/INFO]: [ClearLagTimer] Successfully performed 1 hooks!
[01:13:35] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[01:13:35] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions