Paste #83583: Log Zappy

Date: 2021/04/18 23:01:07 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
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425


[23:54:07] [main/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[23:54:07] [main/INFO]: Reloading ResourceManager: Default, bukkit
[23:54:07] [Worker-Main-5/INFO]: Loaded 7 recipes
[23:54:08] [Server thread/INFO]: Starting minecraft server version 1.16.5
[23:54:08] [Server thread/INFO]: Loading properties
[23:54:08] [Server thread/INFO]: This server is running Purpur version git-Purpur-1060 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT)
[23:54:08] [Server thread/INFO]: Server Ping Player Sample Count: 12
[23:54:08] [Server thread/INFO]: Using 4 threads for Netty based IO
[23:54:08] [Server thread/INFO]: Debug logging is disabled
[23:54:08] [Server thread/INFO]: Default game type: SURVIVAL
[23:54:08] [Server thread/INFO]: Generating keypair
[23:54:09] [Server thread/INFO]: Starting Minecraft server on 82.208.17.86:27252
[23:54:09] [Server thread/INFO]: Using epoll channel type
[23:54:09] [Server thread/INFO]: Tuinity: Using libdeflate (Linux x86_64) compression from Velocity.
[23:54:09] [Server thread/INFO]: Tuinity: Using Java cipher from Velocity.
[23:54:09] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[23:54:11] [Server thread/WARN]: Legacy plugin DeluxeTags v1.8.1 does not specify an api-version.
[23:54:11] [Server thread/WARN]: Legacy plugin JoinMotd vRELEASE does not specify an api-version.
[23:54:11] [Server thread/WARN]: Legacy plugin PreventItemDestruction v1.1 does not specify an api-version.
[23:54:11] [Server thread/WARN]: Legacy plugin ColoredAnvils v1.08 does not specify an api-version.
[23:54:11] [Server thread/WARN]: Legacy plugin FakaHedaMinequery v1.8 does not specify an api-version.
[23:54:11] [Server thread/WARN]: Legacy plugin Voting v2.6.0 does not specify an api-version.
[23:54:11] [Server thread/WARN]: Legacy plugin RotatingHeads v1.5.1 does not specify an api-version.
[23:54:11] [Server thread/WARN]: Legacy plugin PremiumAds v2.4.1 does not specify an api-version.
[23:54:12] [Server thread/INFO]: [CombatLogX] This plugin is using SirBlobmanAPI by SirBlobman.
[23:54:12] [Server thread/INFO]: [CombatLogX] Searching for a handler that matches NMS version 1_16_R3
[23:54:12] [Server thread/INFO]: [CombatLogX] Successfully found NMS Handler class 'com.SirBlobman.combatlogx.api.shaded.nms.NMS_1_16_R3'.
[23:54:12] [Server thread/INFO]: [Chunky] Loading Chunky v1.2.54
[23:54:12] [Server thread/INFO]: [NoNetherRoof] Loading NoNetherRoof v1.0.5
[23:54:12] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.9
[23:54:12] [Server thread/INFO]: [UltimateAutoRestart] Loading UltimateAutoRestart vBuild 43
[23:54:12] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.2.0
[23:54:12] [Server thread/INFO]: [AntiWorldFly] Loading AntiWorldFly v2.4.0
[23:54:12] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v14.0.2
[23:54:12] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags v1.8.1
[23:54:12] [Server thread/INFO]: [VillagerModifications] Loading VillagerModifications v1.4.6
[23:54:12] [Server thread/INFO]: [MobFarmManager] Loading MobFarmManager v1.5.9.1
[23:54:12] [Server thread/INFO]: [JoinMotd] Loading JoinMotd vRELEASE
[23:54:12] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v3.2.1
[23:54:12] [Server thread/INFO]: [ViaVersion] ViaVersion 3.2.1 is now loaded, injecting!
[23:54:12] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[23:54:12] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[23:54:12] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[23:54:12] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[23:54:12] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[23:54:12] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[23:54:12] [Server thread/INFO]: [CraftingStore] Loading CraftingStore v2.6.4
[23:54:12] [Server thread/INFO]: [LightAPI] Loading LightAPI v3.4.6
[23:54:12] [Server thread/INFO]: [ChatEmoji] Loading ChatEmoji v1.2.2
[23:54:12] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.3.21
[23:54:12] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[23:54:13] [Server thread/INFO]: [SurvivalInvisiframes] Loading SurvivalInvisiframes v2.0.0
[23:54:13] [Server thread/INFO]: [ContainerPassthrough] Loading ContainerPassthrough v1.2.1
[23:54:13] [Server thread/INFO]: [VillagerOptimiser] Loading VillagerOptimiser v1.1.5
[23:54:13] [Server thread/INFO]: [ShulkerPacks] Loading ShulkerPacks v1.5.8
[23:54:13] [Server thread/INFO]: [BeeHivesTrees] Loading BeeHivesTrees v1.2
[23:54:13] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[23:54:13] [Server thread/INFO]: [spark] Loading spark v1.5.2
[23:54:13] [Server thread/INFO]: [JetsAntiAFKPro] Loading JetsAntiAFKPro v3.4.1
[23:54:13] [Server thread/INFO]: [ChunkyBorder] Loading ChunkyBorder v1.0.29
[23:54:13] [Server thread/INFO]: [UltimateStatistics] Loading UltimateStatistics vBuild 78
[23:54:13] [Server thread/INFO]: [OnlyNetherWither] Loading OnlyNetherWither v1.0
[23:54:13] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.6.1-SNAPSHOT-b498
[23:54:13] [Server thread/INFO]: [PixelEvent] Loading PixelEvent v1.0
[23:54:13] [Server thread/INFO]: [AdvancedPortals] Loading AdvancedPortals v0.5.12
[23:54:13] [Server thread/INFO]: [Vouchers] Loading Vouchers v1.8.19-RELEASE
[23:54:13] [Server thread/INFO]: [AntiRaidFarm] Loading AntiRaidFarm v1.0.2
[23:54:13] [Server thread/INFO]: [VoidGenerator] Loading VoidGenerator v1.7.0
[23:54:13] [Server thread/INFO]: [PreventItemDestruction] Loading PreventItemDestruction v1.1
[23:54:13] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[23:54:13] [Server thread/INFO]: [DailyRewards] Loading DailyRewards v1.0.6
[23:54:13] [Server thread/INFO]: [TokenManager] Loading TokenManager v3.2.5
[23:54:13] [Server thread/INFO]: [ColoredAnvils] Loading ColoredAnvils v1.08
[23:54:13] [Server thread/INFO]: [FakaHedaMinequery] Loading FakaHedaMinequery v1.8
[23:54:13] [Server thread/INFO]: [GPack] Loading GPack v[3.3.0.0]
[23:54:13] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.4.6
[23:54:13] [Server thread/INFO]: [MyCommand] Loading MyCommand v5.6.9
[23:54:13] [Server thread/INFO]: [XLTournaments] Loading XLTournaments v3.4.1
[23:54:13] [Server thread/INFO]: [Voting] Loading Voting v2.6.0
[23:54:13] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.13.5
[23:54:13] [Server thread/INFO]: [DeluxeCoinflip] Loading DeluxeCoinflip v1.8.7
[23:54:13] [Server thread/INFO]: [AnyMessageFilter] Loading AnyMessageFilter v1.0
[23:54:13] [Server thread/INFO]: [RotatingHeads] Loading RotatingHeads v1.5.1
[23:54:13] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.2.3-SNAPSHOT-b836
[23:54:13] [Server thread/INFO]: [PremiumAds] Loading PremiumAds v2.4.1
[23:54:13] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.2.1
[23:54:13] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v1.16-658;e433184
[23:54:14] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7c3fe34f]
[23:54:14] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.4-DEV-105
[23:54:14] [Server thread/INFO]: [BlockParticles] Loading BlockParticles v1.12-Build#15
[23:54:14] [Server thread/INFO]: [CrazyCrates] Loading CrazyCrates v1.10.1-Build#107
[23:54:14] [Server thread/INFO]: [HolographicExtension] Loading HolographicExtension v1.10.9
[23:54:14] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.4+f7ff984
[23:54:14] [Server thread/INFO]: [UltraBar] Loading UltraBar v2.2.5
[23:54:14] [Server thread/INFO]: [TradePlus] Loading TradePlus v3.81
[23:54:14] [Server thread/INFO]: [Shop] Loading Shop v1.8.2.4
[23:54:14] [Server thread/INFO]: [GSit] Loading GSit v[5.1.0.3]
[23:54:14] [Server thread/INFO]: [Multiverse-NetherPortals] Loading Multiverse-NetherPortals v4.2.2-SNAPSHOT-b801
[23:54:14] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.0.5
[23:54:14] [Server thread/INFO]: [PlayerWarps] Loading PlayerWarps v6.4.1-pre19
[23:54:14] [Server thread/INFO]: [DropHeads] Loading DropHeads v3.5.4
[23:54:14] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.27-SNAPSHOT (build 2297)
[23:54:14] [Server thread/INFO]: [WolfyUtilities] Loading WolfyUtilities v1.6.3.22
[23:54:14] [Server thread/INFO]: [WolfyUtilities] Register json serializer/deserializer
[23:54:14] [Server thread/INFO]: [WolfyUtilities] Register Meta Setting providers
[23:54:14] [Server thread/INFO]: [AureliumSkills] Loading AureliumSkills vAlpha 1.6.8
[23:54:14] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v3.7.1
[23:54:14] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[23:54:14] [Server thread/INFO]: [LeaderHeadsRevamped] Loading LeaderHeadsRevamped v4.0.6
[23:54:14] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.0-dev+103-195148a
[23:54:14] [Server thread/INFO]: [CustomCrafting] Loading CustomCrafting v1.6.5.1.3
[23:54:14] [Server thread/INFO]: [CustomCrafting] WolfyUtilities API: WolfyUtilities v1.6.3.22
[23:54:14] [Server thread/INFO]: [CustomCrafting] Registering custom data
[23:54:14] [Server thread/INFO]: [Jobs] Loading Jobs v4.17.1
[23:54:14] [Server thread/INFO]: [Elevator] Loading Elevator v3.11.1
[23:54:14] [Server thread/INFO]: [TAB] Loading TAB v2.8.11-pre12
[23:54:14] [Server thread/INFO]: [InteractionVisualizer] Loading InteractionVisualizer v1.14.9.4
[23:54:14] [Server thread/INFO]: [eGlow] Loading eGlow v3.0.7
[23:54:14] [Server thread/INFO]: [BeastWithdraw] Loading BeastWithdraw v2.9.2
[23:54:14] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.19.0-dev+103-195148a
[23:54:14] [Server thread/INFO]: [ChatManager] Loading ChatManager v3.6.9
[23:54:14] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.1.5-SNAPSHOT
[23:54:14] [Server thread/INFO]: [InteractiveChat] Loading InteractiveChat v3.3.0.11
[23:54:14] [Server thread/INFO]: [WildStacker] Loading WildStacker v3.5.2-DEVb110
[23:54:14] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.59.0
[23:54:14] [Server thread/INFO]: [AdvancedEnchantments] Loading AdvancedEnchantments v8.0.0-Pre23.4
[23:54:14] [Server thread/INFO]: [zAuctionHouseV3] Loading zAuctionHouseV3 v3.0.1.7
[23:54:14] [Server thread/INFO]: [WildTools] Loading WildTools v2.10.4-DEVb11
[23:54:14] [Server thread/INFO]: [Quests] Loading Quests v2.16.2
[23:54:14] [Server thread/INFO]: [DeathMessages] Loading DeathMessages v1.3.0
[23:54:14] [Server thread/INFO]: [DeathMessages] WorldGuard v7 found. Enabling Hook.
[23:54:14] [Server thread/INFO]: [CombatLogX] Loading CombatLogX v10.3.8.3
[23:54:14] [Server thread/INFO]: [CombatLogX] Loading expansions...
[23:54:14] [Server thread/INFO]: [CompatWorldGuard] Registering custom WorldGuard flags...
[23:54:14] [Server thread/INFO]: [CompatWorldGuard] Finished registering custom WorldGuard flags.
[23:54:14] [Server thread/INFO]: [CombatLogX] Successfully loaded 3 expansions.
[23:54:14] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v19.5
[23:54:14] [Server thread/INFO]: [UltimateTimber] Loading UltimateTimber v2.2.3
[23:54:14] [Server thread/INFO]: [TempFly] Loading TempFly v3.0.9
[23:54:14] [Server thread/INFO]: [BookShelf] Loading BookShelf v2.6.10.2
[23:54:14] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[23:54:14] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.3.21
[23:54:15] [Server thread/WARN]: SLF4J: No SLF4J providers were found.
[23:54:15] [Server thread/WARN]: SLF4J: Defaulting to no-operation (NOP) logger implementation
[23:54:15] [Server thread/WARN]: SLF4J: See http://www.slf4j.org/codes.html#noProviders for further details.
[23:54:15] [Server thread/INFO]:         __    
[23:54:15] [Server thread/INFO]:   |    |__)   LuckPerms v5.3.21
[23:54:15] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[23:54:15] [Server thread/INFO]: 
[23:54:15] [Server thread/INFO]: [LuckPerms] Loading configuration...
[23:54:15] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[23:54:15] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[23:54:15] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[23:54:15] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[23:54:15] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[23:54:16] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[23:54:16] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 941ms)
[23:54:16] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.6.1-SNAPSHOT-b498
[23:54:16] [Server thread/WARN]: [ProtocolLib] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:16] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[23:54:16] [Server thread/INFO]: [VoidGenerator] Enabling VoidGenerator v1.7.0
[23:54:16] [Server thread/WARN]: [VoidGenerator] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:16] [Server thread/INFO]: [VoidGenerator] v1_15
[23:54:16] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[23:54:16] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.0-dev+103-195148a which is not a depend, softdepend or loadbefore of this plugin.
[23:54:16] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[23:54:16] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[23:54:16] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[23:54:16] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[23:54:16] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v1.16-658;e433184
[23:54:17] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[23:54:17] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.FAWE_Spigot_v1_16_R3 as the Bukkit adapter
[23:54:17] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[23:54:17] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[23:54:17] [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.
[23:54:17] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[23:54:17] [Server thread/INFO]: Preparing level "world"
[23:54:17] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[23:54:17] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[23:54:18] [Server thread/INFO]: Loaded 0 spawn chunks for world world
[23:54:18] [Server thread/INFO]: Preparing spawn area: 0%
[23:54:18] [Server thread/INFO]: Preparing spawn area: 10%
[23:54:18] [Server thread/INFO]: Time elapsed: 506 ms
[23:54:18] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[23:54:18] [Server thread/INFO]: Loaded 0 spawn chunks for world world_nether
[23:54:18] [Server thread/INFO]: Preparing spawn area: 0%
[23:54:18] [Server thread/INFO]: Time elapsed: 136 ms
[23:54:18] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[23:54:18] [Server thread/INFO]: Loaded 0 spawn chunks for world world_the_end
[23:54:18] [Server thread/INFO]: Preparing spawn area: 0%
[23:54:18] [Server thread/INFO]: Time elapsed: 53 ms
[23:54:18] [Server thread/INFO]: [Chunky] Enabling Chunky v1.2.54
[23:54:18] [Server thread/WARN]: [Chunky] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:18] [Server thread/INFO]: [NoNetherRoof] Enabling NoNetherRoof v1.0.5
[23:54:18] [Server thread/WARN]: [NoNetherRoof] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:18] [Server thread/INFO]: [NoNetherRoof] Metrics Enabled!
[23:54:18] [Server thread/INFO]: [NoNetherRoof] Plugin Enabled!
[23:54:18] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.9
[23:54:18] [Server thread/WARN]: [PlaceholderAPI] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:19] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[23:54:19] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 43
[23:54:19] [Server thread/WARN]: [UltimateAutoRestart] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart
[23:54:19] [Server thread/INFO]: 
[23:54:19] [Server thread/INFO]: UltimateAutoRestart Build 43, a free resource by Norska - Enabled!
[23:54:19] [Server thread/INFO]: 
[23:54:19] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.2.0
[23:54:19] [Server thread/WARN]: [PlugMan] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:19] [Server thread/INFO]: [AntiWorldFly] Enabling AntiWorldFly v2.4.0
[23:54:19] [Server thread/WARN]: [AntiWorldFly] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:19] [Server thread/INFO]: [AntiWorldFly] Registering listeners...
[23:54:19] [Server thread/INFO]: [AntiWorldFly] Backing up and loading configuration files...
[23:54:19] [Thread-28/INFO]: [AntiWorldFly] Checking for plugin update...
[23:54:19] [Server thread/INFO]: [AntiWorldFly] Plugin successfully enabled and ready to run! Took 9ms.
[23:54:19] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.0.2
[23:54:19] [Server thread/WARN]: [SkinsRestorer] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:19] [Server thread/INFO]: [SkinsRestorer] [!] WARNING [!] 
[23:54:19] [Server thread/INFO]: [SkinsRestorer] Below message about "Illegal reflective access" can be IGNORED, we will fix this in a later release!
[23:54:19] [Server thread/INFO]: [SkinsRestorer] Unsupported plugin (ViaVersion or ProtocolSupport) detected, forcing OldSkinRefresher
[23:54:19] [Server thread/INFO]: [SkinsRestorer] [SkinsRestorer] Using SpigotSkinRefresher
[23:54:19] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_16_R3, using UniversalSkinFactory.
[23:54:20] [Server thread/INFO]: [SkinsRestorer] [ACF] Enabled Asynchronous Tab Completion Support!
[23:54:20] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.1*
[23:54:20] [Server thread/WARN]: [DeluxeTags] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:20] [Server thread/INFO]: [DeluxeTags] 30 tags loaded
[23:54:20] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[23:54:20] [Server thread/INFO]: [DeluxeTags] DeluxeChat will handle fetching placeholders for tags!
[23:54:20] [Server thread/INFO]: ----------------------------
[23:54:20] [Server thread/INFO]:      DeluxeTags Updater
[23:54:20] [Server thread/INFO]:  
[23:54:20] [Server thread/INFO]: You are running 1.8.1
[23:54:20] [Server thread/INFO]: The latest version
[23:54:20] [Server thread/INFO]: of DeluxeTags!
[23:54:20] [Server thread/INFO]:  
[23:54:20] [Server thread/INFO]: ----------------------------
[23:54:20] [Server thread/INFO]: [VillagerModifications] Enabling VillagerModifications v1.4.6
[23:54:20] [Server thread/WARN]: [VillagerModifications] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:21] [Server thread/INFO]: Villager Modifiers are running
[23:54:21] [Server thread/INFO]: [MobFarmManager] Enabling MobFarmManager v1.5.9.1
[23:54:21] [Server thread/WARN]: [MobFarmManager] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:21] [Server thread/INFO]: MobFarmManager Version 1.5.9.1 has been enabled
[23:54:21] [Server thread/INFO]: [JoinMotd] Enabling JoinMotd vRELEASE*
[23:54:21] [Server thread/WARN]: [JoinMotd] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:21] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v3.2.1
[23:54:21] [Server thread/WARN]: [ViaVersion] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:21] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.6.4
[23:54:21] [Server thread/WARN]: [CraftingStore] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: craftingstore
[23:54:22] [Server thread/INFO]: [CraftingStore] Hooked with PlaceholderAPI
[23:54:22] [Server thread/INFO]: [LightAPI] Enabling LightAPI v3.4.6
[23:54:22] [Server thread/WARN]: [LightAPI] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:22] [Server thread/INFO]: [LightAPI] Could not find Purpur implementation. Trying CraftBukkit instead
[23:54:22] [Server thread/INFO]: [LightAPI] Loading CraftBukkit implementation for Purpur server v1_16_R3.
[23:54:22] [Server thread/INFO]: [ChatEmoji] Enabling ChatEmoji v1.2.2
[23:54:22] [Server thread/WARN]: [ChatEmoji] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:22] [Server thread/INFO]: ChatEmoji v1.2.2 has loaded successfully!
[23:54:22] [Server thread/INFO]: [SurvivalInvisiframes] Enabling SurvivalInvisiframes v2.0.0
[23:54:22] [Server thread/WARN]: [SurvivalInvisiframes] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:22] [Server thread/INFO]: [ContainerPassthrough] Enabling ContainerPassthrough v1.2.1
[23:54:22] [Server thread/WARN]: [ContainerPassthrough] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:22] [Server thread/INFO]: [VillagerOptimiser] Enabling VillagerOptimiser v1.1.5
[23:54:22] [Server thread/WARN]: [VillagerOptimiser] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:23] [Server thread/INFO]: [VillagerOptimiser] Loading config.yml...
[23:54:23] [Server thread/INFO]: [VillagerOptimiser] Successfully loaded config.yml.
[23:54:23] [Server thread/INFO]: [VillagerOptimiser] Successfully enabled.
[23:54:23] [Server thread/INFO]: [ShulkerPacks] Enabling ShulkerPacks v1.5.8
[23:54:23] [Server thread/WARN]: [ShulkerPacks] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:23] [Server thread/INFO]: [ShulkerPacks] ShulkerPacks has been enabled!
[23:54:23] [Server thread/INFO]: [BeeHivesTrees] Enabling BeeHivesTrees v1.2
[23:54:23] [Server thread/WARN]: [BeeHivesTrees] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:23] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[23:54:23] [Server thread/WARN]: [ClearLag] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:23] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[23:54:23] [Server thread/INFO]: [ClearLag] Loading modules...
[23:54:23] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[23:54:23] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[23:54:23] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[23:54:23] [Thread-33/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.16]...
[23:54:23] [Server thread/INFO]: [spark] Enabling spark v1.5.2
[23:54:23] [Server thread/WARN]: [spark] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:23] [Server thread/WARN]: [spark] Loaded class us.myles.ViaVersion.api.protocol.ProtocolRegistry from ViaVersion v3.2.1 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:24] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[23:54:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark
[23:54:24] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[23:54:24] [Server thread/INFO]: [JetsAntiAFKPro] Enabling JetsAntiAFKPro v3.4.1
[23:54:24] [Server thread/WARN]: [JetsAntiAFKPro] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:24] [Server thread/INFO]: 
[23:54:24] [Server thread/INFO]: [JetsAntiAFKPro] Initializing Plugin v3.4.1
[23:54:24] [Server thread/INFO]: [JetsAntiAFKPro] config.yml found, loading!
[23:54:24] [Server thread/WARN]: [JetsAntiAFKPro] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.10.9 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:24] [Server thread/INFO]: [JetsAntiAFKPro] timeplayedgui.yml found, loading!
[23:54:24] [Server thread/INFO]: [JetsAntiAFKPro] messages.yml found, loading!
[23:54:24] [Thread-33/INFO]: [ClearLag] No updates found!
[23:54:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jetsantiafkpro
[23:54:24] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:54:24] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:54:24] [Server thread/INFO]: [JetsAntiAFKPro] Initializing Complete in 239 Ms
[23:54:24] [Server thread/INFO]: 
[23:54:24] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.0.29
[23:54:24] [Server thread/WARN]: [ChunkyBorder] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:24] [Server thread/INFO]: [UltimateStatistics] Enabling UltimateStatistics vBuild 78
[23:54:24] [Server thread/WARN]: [UltimateStatistics] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ustats
[23:54:25] [Server thread/INFO]: [OnlyNetherWither] Enabling OnlyNetherWither v1.0
[23:54:25] [Server thread/WARN]: [OnlyNetherWither] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:25] [Server thread/INFO]: [PixelEvent] Enabling PixelEvent v1.0
[23:54:25] [Server thread/WARN]: [PixelEvent] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:25] [Server thread/INFO]: PixelEvent >> Loading messages ...
[23:54:25] [Server thread/INFO]: PixelEvent >> 4 messages have been loaded!
[23:54:25] [Server thread/INFO]: PixelEvent >> Loading configuration ...
[23:54:25] [Server thread/INFO]: PixelEvent >> Configuration has been loaded!
[23:54:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pixelevent
[23:54:25] [Server thread/INFO]: PixelEvent >> Loading PixelManager...
[23:54:25] [Server thread/INFO]: PixelEvent >> 3 events have been loaded!
[23:54:25] [Server thread/INFO]: PixelEvent >> PixelManager has been loaded!
[23:54:25] [Server thread/INFO]: PixelEvent >> Enabled!
[23:54:25] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v0.5.12
[23:54:25] [Server thread/WARN]: [AdvancedPortals] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:25] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[23:54:25] [Server thread/WARN]: [AdvancedPortals] Advanced bungee features disabled for Advanced Portals as bungee isn't enabled on the server (spigot.yml)
[23:54:25] [Server thread/INFO]: Advanced portals have been successfully enabled!
[23:54:25] [Server thread/INFO]: [Vouchers] Enabling Vouchers v1.8.19-RELEASE
[23:54:25] [Server thread/WARN]: [Vouchers] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:25] [Server thread/INFO]: [Vouchers] Loading the Config.yml
[23:54:25] [Server thread/INFO]: [Vouchers] Successfully loaded Config.yml
[23:54:25] [Server thread/INFO]: [Vouchers] Loading the Data.yml
[23:54:25] [Server thread/INFO]: [Vouchers] Successfully loaded Data.yml
[23:54:25] [Server thread/INFO]: [Vouchers] Loading the Messages.yml
[23:54:25] [Server thread/INFO]: [Vouchers] Successfully loaded Messages.yml
[23:54:25] [Server thread/INFO]: [Vouchers] Loading the VoucherCodes.yml
[23:54:25] [Server thread/INFO]: [Vouchers] Successfully loaded VoucherCodes.yml
[23:54:25] [Server thread/INFO]: [AntiRaidFarm] Enabling AntiRaidFarm v1.0.2
[23:54:25] [Server thread/WARN]: [AntiRaidFarm] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:25] [Server thread/INFO]: [PreventItemDestruction] Enabling PreventItemDestruction v1.1*
[23:54:25] [Server thread/WARN]: [PreventItemDestruction] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:26] [Server thread/INFO]: [DailyRewards] Enabling DailyRewards v1.0.6
[23:54:26] [Server thread/WARN]: [DailyRewards] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:26] [Server thread/INFO]: [TokenManager] Enabling TokenManager v3.2.5
[23:54:26] [Server thread/INFO]: [TokenManager] Loaded Config.
[23:54:26] [Server thread/INFO]: [TokenManager] Loaded Lang.
[23:54:26] [Server thread/INFO]: [TokenManager] ===============================================
[23:54:26] [Server thread/INFO]: [TokenManager] TokenManager has detected your server as offline mode.
[23:54:26] [Server thread/INFO]: [TokenManager] DataManager will operate with Usernames.
[23:54:26] [Server thread/INFO]: [TokenManager] If your server is NOT in offline mode, please manually set online-mode in TokenManager's config.yml.
[23:54:26] [Server thread/INFO]: [TokenManager] ===============================================
[23:54:26] [Server thread/WARN]: Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
[23:54:26] [Server thread/INFO]: [TokenManager] Loaded DataManager.
[23:54:26] [Server thread/INFO]: [TokenManager] ShopConfig: Failed to load displayed item for slot '0' of shop 'examplesubshop': '373:16421' is not a valid material
[23:54:26] [Server thread/INFO]: [TokenManager] Loaded ShopConfig.
[23:54:26] [Server thread/INFO]: [TokenManager] Loaded ShopManager.
[23:54:26] [Server thread/INFO]: [TokenManager] Loaded WorthConfig.
[23:54:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tm
[23:54:26] [Server thread/INFO]: [TokenManager] Successfully hooked into 'PlaceholderAPI'!
[23:54:26] [Server thread/INFO]: [TokenManager] Successfully hooked into 'Vault'!
[23:54:26] [Server thread/INFO]: [TokenManager] Loaded HookManager.
[23:54:26] [Server thread/INFO]: [ColoredAnvils] Enabling ColoredAnvils v1.08*
[23:54:26] [Server thread/WARN]: [ColoredAnvils] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:26] [Server thread/INFO]: [ColoredAnvils] ColoredAnvils v1.08 has been enabled!
[23:54:26] [Server thread/INFO]: [ColoredAnvils] Permissions for ColoredAnvils are disabled.
[23:54:26] [Server thread/INFO]: [FakaHedaMinequery] Enabling FakaHedaMinequery v1.8*
[23:54:26] [Server thread/INFO]: Starting FakaHedaMinequery server on 82.208.17.86:28252
[23:54:26] [Server thread/INFO]: [GPack] Enabling GPack v[3.3.0.0]
[23:54:26] [Server thread/WARN]: [GPack] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:27] [Server thread/INFO]: [GPack] The Plugin was successfully enabled.
[23:54:27] [Server thread/INFO]: [GPack] Link with ViaVersion successful!
[23:54:27] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.4.6
[23:54:27] [Server thread/WARN]: [HolographicDisplays] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:27] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib.
[23:54:27] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.6.9
[23:54:27] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-* MyCommand *-=-=-=-=-=-=-=-=-=-=-*
[23:54:27] [Server thread/INFO]: | Vault  : Ok. Hooked on Vault 1.7.3-b131
[23:54:27] [Server thread/INFO]: | Command file(s) found : 1
[23:54:27] [Server thread/INFO]: | Config : Ready.
[23:54:27] [Server thread/INFO]: | ProtocolLib found, features enabled (SignMenu)
[23:54:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand
[23:54:27] [Server thread/INFO]: | PlaceholderAPI: Hooked, Ok.
[23:54:27] [Server thread/INFO]: | Custom commands loaded : 30
[23:54:27] [Server thread/INFO]: | Version: 5.6.9
[23:54:27] [Server thread/INFO]: | Author : emmerrei a.k.a Ivanpro
[23:54:27] [Server thread/INFO]: | You are running the latest version of MyCommand.
[23:54:27] [Server thread/WARN]: [MyCommand] Loaded class com.comphenix.protocol.events.PacketListener from ProtocolLib v4.6.1-SNAPSHOT-b498 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:27] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[23:54:27] [Server thread/INFO]: [XLTournaments] Enabling XLTournaments v3.4.1
[23:54:27] [Server thread/INFO]: [XLTournaments] 
[23:54:27] [Server thread/INFO]: [XLTournaments] \/|      XLTournaments v3.4.1
[23:54:27] [Server thread/INFO]: [XLTournaments] /\|_     Author: [ItsLewizzz]
[23:54:27] [Server thread/INFO]: [XLTournaments]          Copyright (c) Lewis D 2021. All Rights Reserved.
[23:54:27] [Server thread/INFO]: [XLTournaments] 
[23:54:27] [Server thread/INFO]: [XLTournaments] Loading plugin..
[23:54:27] [Server thread/INFO]: [XLTournaments] Hooked into Vault
[23:54:27] [Server thread/INFO]: [fun.lewisdev.tournaments.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:54:27] [Server thread/INFO]: [fun.lewisdev.tournaments.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:54:27] [Server thread/INFO]: [XLTournaments] 
[23:54:27] [Server thread/INFO]: [Voting] Enabling Voting v2.6.0*
[23:54:28] [Server thread/INFO]: [Voting] Plugin enabled!
[23:54:28] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.13.5
[23:54:28] [Server thread/INFO]: [HeadDatabase] Používáte "cs_CZ.lang" přeloženo od Davideko
[23:54:28] [Server thread/INFO]: [HeadDatabase] Economy successfully setup using CURRENCY!
[23:54:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip] Enabling DeluxeCoinflip v1.8.7
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip] 
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip]  __ __     DeluxeCoinflip v1.8.7
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip] /  |_     Author: ItsLewizzz
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip] \_ |      (c) Lewis D 2020. All rights reserved.
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip] 
[23:54:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: coinflip
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip] Hooked into PlaceholderAPI successfully
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip] 
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip] Successfully loaded in 16ms
[23:54:28] [Server thread/INFO]: [DeluxeCoinflip] 
[23:54:28] [Server thread/INFO]: [AnyMessageFilter] Enabling AnyMessageFilter v1.0
[23:54:28] [Server thread/WARN]: [AnyMessageFilter] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:28] [Server thread/INFO]: [AnyMessageFilter] ProtocolLib found and connected!
[23:54:28] [Server thread/INFO]: [RotatingHeads] Enabling RotatingHeads v1.5.1*
[23:54:28] [Server thread/INFO]: • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
[23:54:28] [Server thread/INFO]: 
[23:54:28] [Server thread/INFO]: ENABLING ROTATING HEADS:
[23:54:28] [Server thread/INFO]:  - Enabling main class
[23:54:28] [Server thread/INFO]:  - Enabling Commands
[23:54:28] [Server thread/INFO]:  - Enabling Listeners
[23:54:28] [Server thread/INFO]:  - Enabling Managers
[23:54:28] [Server thread/INFO]:  - PlaceholdersAPI hooked
[23:54:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rotatingheads
[23:54:28] [Server thread/INFO]:  - HeadDatabase hooked
[23:54:28] [Server thread/INFO]: 
[23:54:28] [Server thread/INFO]:  PLUGIN ENABLED!
[23:54:28] [Server thread/INFO]: 
[23:54:28] [Server thread/INFO]: • • • • • • • • • • • • • • • • • • • • • • • • • • • • •
[23:54:28] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.2.3-SNAPSHOT-b836
[23:54:28] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.2.3-SNAPSHOT-b836" 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--].
[23:54:28] [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.
[23:54:28] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Mining
[23:54:28] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:54:28] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Boss
[23:54:28] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:54:28] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Eventy
[23:54:28] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:54:29] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[23:54:29] [Server thread/INFO]: Loaded 0 spawn chunks for world Spawn
[23:54:29] [Server thread/INFO]: Preparing spawn area: 0%
[23:54:29] [Server thread/INFO]: Time elapsed: 122 ms
[23:54:29] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: AdminSvet
[23:54:29] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:54:29] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[23:54:29] [Server thread/WARN]: Warning: Nashorn engine is planned to be removed from a future JDK release
[23:54:29] [Server thread/INFO]: [Multiverse-Core] Version 4.2.3-SNAPSHOT-b836 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[23:54:29] [Server thread/INFO]: [PremiumAds] Enabling PremiumAds v2.4.1*
[23:54:29] [Server thread/INFO]: ------=-=-=-=------
[23:54:29] [Server thread/INFO]: 
[23:54:29] [Server thread/INFO]: PremiumAds v2.4.1
[23:54:29] [Server thread/INFO]: By ItsLewizzz
[23:54:29] [Server thread/INFO]: 
[23:54:29] [Server thread/INFO]: Plugin enabled successfully
[23:54:29] [Server thread/INFO]: 
[23:54:29] [Server thread/INFO]: ------=-=-=-=------
[23:54:29] [Server thread/INFO]: ** Hooked into Vault **
[23:54:29] [Server thread/INFO]: ** Hooked into TokenManager **
[23:54:29] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.2.1
[23:54:30] [Server thread/WARN]: 2 [Server thread] INFO com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource - HikariPool-1 - Starting...
[23:54:30] [Server thread/WARN]: 5 [Server thread] WARN com.bencodez.votingplugin.advancedcore.hikari.util.DriverDataSource - Registered driver with driverClassName=com.mysql.jdbc.Driver was not found, trying direct instantiation.
[23:54:30] [Server thread/WARN]: 11 [Server thread] INFO com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource - HikariPool-1 - Start completed.
[23:54:30] [Server thread/WARN]: [VotingPlugin] RewardInject Validator: VoteParty_Rewards, Directly Defined: true Path: Items : Invalid item section
[23:54:30] [Server thread/WARN]: [VotingPlugin] RewardInject Validator: VoteReminding_Rewards, Directly Defined: true Path: ActionBar : No actionbar delay set
[23:54:30] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[23:54:30] [Server thread/WARN]: [VotingPlugin] No VotifierEvent found, install Votifier, NuVotifier, or another Votifier plugin
[23:54:30] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.2.1
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.4-DEV-105
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Hooked into PlaceholderAPI!
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: skillstop for menu: skills
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: recepty for menu: recepty
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: odmenyzturnajov for menu: odmenyzturnajov
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: glow for menu: glow
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: wiki for menu: wiki
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: at for menu: adminteam
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: statistiky for menu: statistiky
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: upgradeuzemi for menu: lands-upgrade
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: tokenshop for menu: store
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Registered command: prace for menu: prace
[23:54:30] [Server thread/INFO]: [DeluxeMenus] 41 GUI menus loaded!
[23:54:30] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[23:54:30] [Server thread/WARN]: [DeluxeMenus] Loaded class me.arcaniax.hdb.api.HeadDatabaseAPI from HeadDatabase v4.13.5 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:30] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault for economy requirement!
[23:54:30] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup
[23:54:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus
[23:54:30] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12-Build#15
[23:54:30] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[23:54:30] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[23:54:30] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[23:54:30] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[23:54:30] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.10.1-Build#107
[23:54:30] [Server thread/WARN]: [CrazyCrates] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[23:54:30] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loading the Messages.yml
[23:54:30] [Server thread/INFO]: [CrazyCrates] Successfully loaded Messages.yml
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loading the Locations.yml
[23:54:30] [Server thread/INFO]: [CrazyCrates] Successfully loaded Locations.yml
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[23:54:30] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Egg.yml.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Vote.yml.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Tag.yml.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Boss.yml.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Rare.yml.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[23:54:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[23:54:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[23:54:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:54:30] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Loaded 4 physical crate locations.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Failed to load 2 physical crate locations.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[23:54:30] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[23:54:30] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[23:54:30] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[23:54:30] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[23:54:30] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[23:54:30] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[23:54:30] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[23:54:30] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[23:54:30] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[23:54:30] [Thread-74/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[23:54:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazycrates
[23:54:31] [Server thread/INFO]: [HolographicExtension] Enabling HolographicExtension v1.10.9
[23:54:31] [Server thread/WARN]: [HolographicExtension] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:31] [Server thread/INFO]: [HolographicExtension] Starting HolographicExtension v1.10.9
[23:54:31] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'example' from config.
[23:54:31] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'scroller' from config.
[23:54:31] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'typing' from config.
[23:54:31] [Server thread/INFO]: [HolographicExtension] Registering placeholder 'rainbow' from config.
[23:54:31] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.4+f7ff984
[23:54:31] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[23:54:31] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[23:54:31] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[23:54:31] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[23:54:31] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[23:54:31] [Server thread/INFO]: [WorldGuard] Loading region data...
[23:54:31] [Server thread/INFO]: [UltraBar] Enabling UltraBar v2.2.5
[23:54:31] [Server thread/INFO]: [UltraBar] Your server is running version v1_16_R3!
[23:54:31] [Server thread/INFO]: [UltraBar] UltraBar is enabled and running fine! V: 2.2.5
[23:54:31] [Server thread/INFO]: [UltraBar] WorldGuard detected. WorldGuard addon activated
[23:54:31] [Server thread/INFO]: [UltraBar] Bstat metrics for this plugin is enabled. Disable it in the config if you do not want it on.
[23:54:31] [Server thread/INFO]: [UltraBar] PlaceholderAPI detected. PlaceholderAPI addon detected.
[23:54:31] [Server thread/INFO]: [TradePlus] Enabling TradePlus v3.81
[23:54:32] [TaskChainAsyncQueue Thread 0/INFO]: You appear to be running version 116
[23:54:32] [Server thread/INFO]: [Shop] Enabling Shop v1.8.2.4
[23:54:32] [Server thread/INFO]: [Shop] Vault dependency found. Using the Vault economy ($) for currency on the server.
[23:54:32] [Server thread/INFO]: [GSit] Enabling GSit v[5.1.0.3]
[23:54:32] [Server thread/INFO]: [GSit] The Plugin was successfully enabled.
[23:54:32] [Server thread/INFO]: [GSit] Hooked successfully with WorldGuard!
[23:54:32] [Server thread/INFO]: [GSit] New Version available: [5.1.1.0]!
[GSit] You are currently running Version: [5.1.0.3]!
[GSit] Download the latest Version at:
[GSit] https://www.spigotmc.org/resources/62325
[23:54:32] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.2-SNAPSHOT-b801
[23:54:32] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.2-SNAPSHOT-b801]  Enabled - By Rigby and fernferret
[23:54:32] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.0.5
[23:54:32] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.4.1-pre19
[23:54:33] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[23:54:33] [Server thread/INFO]: [PlayerWarps] Permissions plugin found!
[23:54:33] [Server thread/INFO]: [PlayerWarps] Economy plugin found!
[23:54:33] [Server thread/INFO]: [PlayerWarps] Chat plugin found!
[23:54:33] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI adding support...
[23:54:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw
[23:54:33] [Server thread/WARN]: [PlayerWarps] Loaded class com.earth2me.essentials.Essentials from Essentials v2.19.0-dev+103-195148a which is not a depend, softdepend or loadbefore of this plugin.
[23:54:33] [Server thread/INFO]: [PlayerWarps] MySQL database is enabling...
[23:54:33] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[23:54:33] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[23:54:33] [Server thread/INFO]: [DropHeads] Enabling DropHeads v3.5.4
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 100.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Invalid value: 25.0
[23:54:33] [Server thread/WARN]: [DropHeads] Drop chance should be a decimal between 0 and 1
[23:54:33] [Server thread/WARN]: [DropHeads] Wither Skeleton Skull drop chance has been modified in 'head-drop-rates.txt', but this value will be ignored because 'vanilla-wither-skeleton-skulls' is set to true.
[23:54:33] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.27-SNAPSHOT (build 2297)
[23:54:33] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v1.6.3.22
[23:54:34] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.16.5
[23:54:34] [Server thread/INFO]: [WolfyUtilities] WolfyUtilities version: 1.6.3.22
[23:54:34] [Server thread/INFO]: [WolfyUtilities] Register API references
[23:54:34] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[23:54:34] [Server thread/INFO]: [WolfyUtilities] Loading Player Data
[23:54:34] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[23:54:34] [Server thread/INFO]: [WolfyUtilities] Loading Particles
[23:54:34] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vAlpha 1.6.8
[23:54:34] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[23:54:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aureliumskills
[23:54:34] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[23:54:34] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[23:54:34] [Server thread/WARN]: [AureliumSkills] Incorrect type in config.yml: Option MYSQL_PORT with path mysql.port should be of type INT, using default value instead!
[23:54:34] [Server thread/INFO]: [AureliumSkills] Loaded 151 config options in 0 ms
[23:54:34] [Server thread/INFO]: [AureliumSkills] Loaded 241 sources in 6ms
[23:54:34] [Server thread/INFO]: [AureliumSkills] HolographicDisplays Support Enabled!
[23:54:34] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[23:54:34] [Server thread/INFO]: [AureliumSkills] Loading languages...
[23:54:34] [Server thread/INFO]: [AureliumSkills] Loaded 1 languages in 13ms
[23:54:34] [Server thread/INFO]: [AureliumSkills] Loaded 3 menus, 9 items, and 5 templates in 24 ms
[23:54:34] [Server thread/INFO]: [AureliumSkills] Disabled 0 Abilities
[23:54:34] [Server thread/INFO]: [AureliumSkills] Loaded 77 Ability Options in 2ms
[23:54:34] [Server thread/INFO]: [AureliumSkills] Loaded 23 items and 0 commands in 4 loot tables.
[23:54:34] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[23:54:34] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[23:54:34] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v3.7.1
[23:54:34] [Server thread/INFO]: [ArmorStandTools] Loading support for v1_16_R3
[23:54:34] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[23:54:34] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Enabling LeaderHeadsRevamped v4.0.6
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Hooked into PlaceholderAPI
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Hooked into Citizens
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] [ACF] Enabled Asynchronous Tab Completion Support!
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Starting up database
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Successfully connected to MySQL
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Creating database tables
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistics
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %ustats_topplayer_playerskilled% from file ustats_topplayer_playerskilled.yml
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %statistic_mine_block% from file statistic_mine_block.yml
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %vault_eco_balance_commas% from file vault_eco_balance_commas.yml
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %votingplugin_total_monthly% from file votingplugin_total_monthly.yml
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %ustats_stats_blocksbroken_amount% from file ustats_stats_blocksbroken_amount.yml
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Loading statistic %ustats_stats_playerskilled_amount% from file ustats_stats_playerskilled_amount.yml
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %ustats_topplayer_playerskilled%
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %statistic_mine_block%
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %vault_eco_balance_commas%
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %votingplugin_total_monthly%
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %ustats_stats_blocksbroken_amount%
[23:54:34] [Server thread/INFO]: [LeaderHeadsRevamped] Starting statistic %ustats_stats_playerskilled_amount%
[23:54:34] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.0-dev+103-195148a
[23:54:35] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[23:54:35] [Server thread/INFO]: [Essentials] No kits found to migrate.
[23:54:35] [Server thread/INFO]: [Essentials] Loaded 25599 items from items.json.
[23:54:35] [Server thread/INFO]: [Essentials] Using locale cs_CZ
[23:54:35] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[23:54:35] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[23:54:35] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[23:54:35] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[23:54:35] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v1.6.5.1.3
[23:54:35] [Server thread/INFO]: ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[23:54:35] [Server thread/INFO]: |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[23:54:35] [Server thread/INFO]: |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[23:54:35] [Server thread/INFO]:     v1.6.5.1.3 Free
[23:54:35] [Server thread/INFO]:  
[23:54:35] [Server thread/INFO]: 
[23:54:35] [Server thread/INFO]: Special thanks to my Patrons for supporting this project: 
[23:54:35] [Server thread/INFO]:     | Nat R               | Apprehentice
[23:54:35] [Server thread/INFO]:     | Alex                | Junye Zhou
[23:54:35] [Server thread/INFO]:     | Vincent Deniau      | gizmonster
[23:54:35] [Server thread/INFO]:     | Thomas Texier       | John
[23:54:35] [Server thread/INFO]:     | HittmanA            | CypherPhyre
[23:54:35] [Server thread/INFO]:     | Alexander           | Vincent Fournier
[23:54:35] [Server thread/INFO]:     | The Hound Brothers  | Jason Asada
[23:54:35] [Server thread/INFO]:     | Inec Ackerr         | 伟铎 谢
[23:54:35] [Server thread/INFO]:     | ValentineDesigns    | Gleaks mania
[23:54:35] [Server thread/INFO]: ------------------------------------------------------------------------
[23:54:35] [Server thread/INFO]: Loaded fallback language "en_US" v5.0.0 translated by WolfyScript
[23:54:35] [Server thread/INFO]: Loaded active language "en_US" v5.0.0 translated by WolfyScript
[23:54:35] [Server thread/WARN]: [CustomCrafting] Could not save recipe_book.json to plugins/CustomCrafting/recipe_book.json because recipe_book.json already exists.
[23:54:35] [Server thread/INFO]: ------------------------------------------------------------------------
[23:54:35] [Server thread/INFO]: [CC] Initiating Inventory GUIs
[23:54:35] [Server thread/INFO]: [CC] Loading Cauldrons
[23:54:35] [Server thread/INFO]: [CC] Registering PlaceHolder
[23:54:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: customcrafting
[23:54:35] [Server thread/INFO]: [CC] Loading Recipes & Items
[23:54:35] [Server thread/INFO]: [CC] - - - - [Local Storage] - - - -
[23:54:35] [Server thread/INFO]: [CC] > customcrafting
[23:54:35] [Server thread/INFO]: [CC] 
[23:54:35] [Server thread/INFO]: [CC] Indexing Recipes for Recipe Book...
[23:54:35] [Server thread/INFO]: ------------------------------------------------------------------------
[23:54:35] [Server thread/INFO]: [Jobs] Enabling Jobs v4.17.1
[23:54:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr
[23:54:36] [Server thread/INFO]: [Jobs] PlaceholderAPI hooked.
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 8 titles!
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 75 protected blocks timers!
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 1076 custom item names!
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 72 custom entity names!
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 2 custom MythicMobs names!
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 38 custom enchant names!
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 16 custom color names!
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 4 shop items!
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 1 quests for Farmar
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 1 quests for Kopac
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 1 quests for Stavitel
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 1 quests for Hornik
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 1 quests for Drevorubac
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 5 jobs!
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 1728 furnace for reassigning.
[23:54:37] [Server thread/INFO]: [Jobs] Loaded 143 brewing for reassigning.
[23:54:37] [Jobs-DatabaseSaveTask/INFO]: [Jobs] Started database save task.
[23:54:37] [Jobs-BufferedPaymentThread/INFO]: [Jobs] Started buffered payment thread.
[23:54:37] [ForkJoinPool.commonPool-worker-31/INFO]: [Jobs] Preloaded 2 players data in 0.0
[23:54:37] [Server thread/INFO]: [Jobs] WorldGuard detected.
[23:54:37] [Server thread/INFO]: [Jobs] Plugin has been enabled successfully.
[23:54:37] [Server thread/INFO]: [Elevator] Enabling Elevator v3.11.1
[23:54:37] [Server thread/INFO]: [TAB] Enabling TAB v2.8.11-pre12
[23:54:37] [Server thread/INFO]: [TAB] Server version: 1.16.5 (v1_16_R3)
[23:54:37] [Server thread/INFO]: [TAB] File plugins/TAB/errors.log exists and is not empty. Take a look at the error messages and try to resolve them. After you do, delete the file.
[23:54:37] [Server thread/INFO]: [TAB] Hint: All of your groups have the same value of "tabsuffix" set. Delete it from all groups and add it only to _OTHER_ for cleaner and smaller config.
[23:54:37] [Server thread/INFO]: [TAB] Hint: All of your groups have the same value of "customtagname" set. Delete it from all groups and add it only to _OTHER_ for cleaner and smaller config.
[23:54:37] [Server thread/INFO]: [TAB] Hint: All of your groups have the same value of "belowname2" set. Delete it from all groups and add it only to _OTHER_ for cleaner and smaller config.
[23:54:37] [Server thread/INFO]: [TAB] Hint: All of your groups have the same value of "tagsuffix" set. Delete it from all groups and add it only to _OTHER_ for cleaner and smaller config.
[23:54:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab
[23:54:37] [Server thread/INFO]: [TAB] There was 1 startup warning.
[23:54:37] [Server thread/INFO]: [TAB] Enabled in 55ms
[23:54:37] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.14.9.4
[23:54:37] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into Essentials!
[23:54:37] [Server thread/INFO]: [InteractionVisualizer] Loading languages...
[23:54:37] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[23:54:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactionvisualizer
[23:54:38] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[23:54:38] [Server thread/INFO]: [eGlow] Enabling eGlow v3.0.7
[23:54:38] [Server thread/INFO]: [eGlow]: Loading main config.
[23:54:38] [Server thread/INFO]: [eGlow]: Loading messages config.
[23:54:38] [Server thread/INFO]: [eGlow]: Loading CustomEffects config.
[23:54:38] [Server thread/INFO]: [BeastWithdraw] Enabling BeastWithdraw v2.9.2
[23:54:38] [Server thread/INFO]: [BeastWithdraw] /XpBottle command aliases [xpb] are registered.
[23:54:38] [Server thread/INFO]: [BeastWithdraw] /bWithdraw command aliases [bankovka, withdraw] are registered.
[23:54:38] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[23:54:38] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[23:54:38] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:54:38] [Server thread/INFO]: [BeastWithdraw] Version 2.9.2 : has been enabled!
[23:54:38] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.19.0-dev+103-195148a
[23:54:38] [Thread-88/WARN]: [NBTAPI] [NBTAPI] The NBT-API at 'package me.mraxetv.beastwithdraw.utils.nbtapi' seems to be outdated!
[23:54:38] [Thread-88/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.6.0' Newest Version: 2.7.1'
[23:54:38] [Thread-88/WARN]: [NBTAPI] [NBTAPI] Please update the nbt-api or the plugin that contains the api!
[23:54:38] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[23:54:38] [Server thread/INFO]: [ChatManager] Enabling ChatManager v3.6.9
[23:54:38] [Server thread/INFO]: [ChatManager] Hooked into: PlaceholderAPI v2.10.9
[23:54:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatmanager
[23:54:38] [Server thread/INFO]: [ChatManager] Hooked into: Essentials v2.19.0-dev+103-195148a
[23:54:38] [Server thread/INFO]: [ChatManager] Hooked into: Vault v1.7.3-b131
[23:54:38] [Server thread/INFO]: [ChatManager] Hooked into: DeluxeTags v1.8.1
[23:54:38] [Server thread/INFO]: [ChatManager] Hooked into: LuckPerms v5.3.21
[23:54:38] [Server thread/INFO]: [ChatManager] Plugin is up to date - v3.6.9
[23:54:38] [Server thread/INFO]: [ChatManager] Starting Metrics.
[23:54:38] [Server thread/INFO]: =========================
[23:54:38] [Server thread/INFO]: Chat Manager
[23:54:38] [Server thread/INFO]: Version 3.6.9
[23:54:38] [Server thread/INFO]: Author: H1DD3NxN1NJA
[23:54:38] [Server thread/INFO]: =========================
[23:54:38] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.1.5-SNAPSHOT
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[23:54:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[23:54:38] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v3.3.0.11
[23:54:39] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[23:54:39] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[23:54:39] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ChatManager!
[23:54:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat
[23:54:39] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[23:54:39] [Server thread/INFO]: [WildStacker] Enabling WildStacker v3.5.2-DEVb110
[23:54:39] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[23:54:39] [Server thread/INFO]: [WildStacker] Loading configuration started...
[23:54:39] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[23:54:39] [Server thread/INFO]: [WildStacker]  - Stacking entities is disabled
[23:54:39] [Server thread/INFO]: [WildStacker]  - Stacking spawners is enabled
[23:54:39] [Server thread/INFO]: [WildStacker]  - Stacking barrels is disabled
[23:54:39] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 26ms)
[23:54:39] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[23:54:39] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 7ms)
[23:54:39] [Server thread/INFO]: [WildStacker] Loading messages started...
[23:54:39] [Server thread/INFO]: [WildStacker]  - Found 67 messages in lang.yml.
[23:54:39] [Server thread/INFO]: [WildStacker] Loading messages done (Took 1ms)
[23:54:39] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[23:54:39] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.59.0
[23:54:39] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v8.0.0-Pre23.4
[23:54:39] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[23:54:39] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[23:54:39] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WildStacker.
[23:54:39] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[23:54:39] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[23:54:39] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[23:54:39] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.0.1.7
[23:54:39] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] === ENABLE START ===
[23:54:39] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Plugin Version V3.0.1.7
[23:54:39] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] /hlserver/27252/plugins/zAuctionHouseV3/config.json loaded successfully !
[23:54:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zauctionhouse
[23:54:39] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Loading 2 inventories
[23:54:39] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Loading 1 commands
[23:54:39] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Load SQL...
[23:54:39] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] === ENABLE DONE (37ms) ===
[23:54:39] [Server thread/INFO]: [WildTools] Enabling WildTools v2.10.4-DEVb11
[23:54:40] [Server thread/INFO]: [WildTools] ******** ENABLE START ********
[23:54:40] [Server thread/INFO]: [WildTools] Loading configuration started...
[23:54:40] [Server thread/INFO]: [WildTools]  - Found 22 tools in config.yml.
[23:54:40] [Server thread/INFO]: [WildTools] Loading configuration done (Took 16ms)
[23:54:40] [Server thread/INFO]: [WildTools] Loading messages started...
[23:54:40] [Server thread/INFO]: [WildTools]  - Found 0 messages in lang.yml.
[23:54:40] [Server thread/INFO]: [WildTools] Loading messages done (Took 1ms)
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool trench_pickaxe, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool tray_pickaxe, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool sand_wand, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool sell_wand, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool lightning_wand, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool harvester_hoe, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool cannon_wand, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool crafting_wand, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool builder_wand, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool ice_wand, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool drain_wand, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] Couldn't find the tool sort_wand, skipping recipe...
[23:54:40] [Server thread/INFO]: [WildTools] ******** ENABLE DONE ********
[23:54:40] [Server thread/INFO]: [Quests] Enabling Quests v2.16.2
[23:54:40] [Server thread/INFO]: [Quests] Your server is running version v1_16_R3.
[23:54:40] [Server thread/INFO]: [Quests] Titles have been enabled.
[23:54:40] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[23:54:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests
[23:54:40] [Server thread/INFO]: [DeathMessages] Enabling DeathMessages v1.3.0
[23:54:40] [Server thread/INFO]: [DeathMessages] Partnered with Sparked Host
[23:54:40] [Server thread/INFO]: [DeathMessages] Grab a server today with the code `Josh` for 15% off @ https://sparkedhost.com
[23:54:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deathmessages
[23:54:40] [Server thread/INFO]: [DeathMessages] PlaceholderAPI found. Enabling Hook.
[23:54:40] [Server thread/INFO]: [DeathMessages] WorldGuard found. Enabling Hook.
[23:54:40] [Server thread/INFO]: [DeathMessages] PlugMan found. Adding this plugin to its ignored plugins list.
[23:54:40] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v10.3.8.3
[23:54:40] [Server thread/INFO]: [CombatLogX] Registered command '/combatlogx'.
[23:54:40] [Server thread/INFO]: [CombatLogX] Registered command '/combat-timer'.
[23:54:40] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v15.1'...
[23:54:40] [Server thread/INFO]: [CompatPlaceholderAPI] Successfully hooked into PlaceholderAPI v2.10.9
[23:54:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: combatlogx
[23:54:40] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v15.2'...
[23:54:40] [Server thread/INFO]: [CompatWorldGuard] Successfully hooked into WorldGuard v7.0.4+f7ff984
[23:54:40] [Server thread/INFO]: [CompatWorldGuard] Successfully hooked into ProtocolLib v4.6.1-SNAPSHOT-b498
[23:54:40] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Notifier v15.9'...
[23:54:40] [Server thread/INFO]: [Notifier] Successfully hooked into PlaceholderAPI v2.10.9
[23:54:40] [Server thread/INFO]: [CombatLogX] Successfully enabled 3 expansions.
[23:54:40] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v19.5
[23:54:40] [Server thread/WARN]: [CoreProtect] Loaded class javassist.d from LuckPerms v5.3.21 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:40] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[23:54:40] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[23:54:40] [Server thread/INFO]: --------------------
[23:54:40] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[23:54:40] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[23:54:40] [Server thread/INFO]: --------------------
[23:54:40] [Server thread/INFO]: [UltimateTimber] Enabling UltimateTimber v2.2.3
[23:54:41] [Server thread/INFO]:  
[23:54:41] [Server thread/INFO]: =============================
[23:54:41] [Server thread/INFO]: UltimateTimber 2.2.3 by Songoda <3!
[23:54:41] [Server thread/INFO]: Action: Enabling...
[23:54:41] [Server thread/INFO]: [UltimateTimber] Loaded locale "en_US"
[23:54:41] [Server thread/INFO]: [SongodaCore] Hooked UltimateTimber.
[23:54:41] [Server thread/INFO]: =============================
[23:54:41] [Server thread/INFO]:  
[23:54:41] [Server thread/INFO]: [TempFly] Enabling TempFly v3.0.9
[23:54:41] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[23:54:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tempfly
[23:54:41] [Server thread/INFO]: [BookShelf] Enabling BookShelf v2.6.10.2
[23:54:41] [Server thread/INFO]: [Bookshelf] Hooked into Essentials!
[23:54:41] [Server thread/INFO]: [Bookshelf] Hooked into WorldGuard!
[23:54:41] [Server thread/INFO]: [Bookshelf] Hooked into InteractionVisualizer!
[23:54:41] [Server thread/INFO]: [Bookshelf] Loading bookshelves in spawn chunks in world
[23:54:41] [ForkJoinPool.commonPool-worker-25/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in world: 0%
[23:54:41] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in world: 100%
[23:54:41] [Server thread/INFO]: [Bookshelf] Loading bookshelves in spawn chunks in world_nether
[23:54:41] [ForkJoinPool.commonPool-worker-7/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in world_nether: 0%
[23:54:41] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in world_nether: 100%
[23:54:41] [Server thread/INFO]: [Bookshelf] Loading bookshelves in spawn chunks in world_the_end
[23:54:41] [ForkJoinPool.commonPool-worker-5/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in world_the_end: 0%
[23:54:41] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in world_the_end: 100%
[23:54:41] [Server thread/INFO]: [Bookshelf] Loading bookshelves in spawn chunks in Spawn
[23:54:41] [Server thread/INFO]: [Bookshelf] Preparing bookshelves in spawn chunks in Spawn: 100%
[23:54:41] [Server thread/INFO]: [Bookshelf] Bookshelves loaded in 4 worlds! (53ms)
[23:54:41] [Server thread/INFO]: [Bookshelf] BookShelf has been Enabled!
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[23:54:42] [Server thread/INFO]: Starting GS4 status listener
[23:54:42] [Server thread/INFO]: Thread Query Listener started
[23:54:42] [Query Listener #1/INFO]: Query running on 82.208.17.86:27252
[23:54:42] [Server thread/INFO]: Running delayed init tasks
[23:54:42] [Craft Scheduler Thread - 17 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[23:54:42] [pool-22-thread-1/ERROR]: [CraftingStore] API key not set in the config. You need to set the correct api key using /craftingstore key <key>.
[23:54:42] [Craft Scheduler Thread - 25 - Essentials/INFO]: [Essentials] Fetching version information...
[23:54:42] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.4+f7ff984 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:42] [Server thread/INFO]: [com.boydti.fawe.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[23:54:42] [Craft Scheduler Thread - 43 - CombatLogX/INFO]: [CombatLogX] Checking for updates using the Spigot API...
[23:54:42] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.16.4(754)
[23:54:42] [Craft Scheduler Thread - 35 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[23:54:42] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[23:54:42] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[23:54:42] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[23:54:42] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://jo0001.github.io/ViaSetup
[23:54:42] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[23:54:42] [Craft Scheduler Thread - 42 - BeastWithdraw/INFO]: [BeastWithdraw] There is not a new update available.
[23:54:42] [Craft Scheduler Thread - 39 - Vault/INFO]: [Vault] Checking for Updates ... 
[23:54:42] [Craft Scheduler Thread - 33 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[23:54:42] [Craft Scheduler Thread - 40 - AureliumSkills/INFO]: [AureliumSkills] Connecting to MySql Database...
[23:54:42] [Craft Scheduler Thread - 40 - AureliumSkills/INFO]: [AureliumSkills] Loading Skill Data from database...
[23:54:42] [Craft Scheduler Thread - 40 - AureliumSkills/INFO]: [AureliumSkills] Loaded 0 player Skill Data in 1ms
[23:54:42] [Craft Scheduler Thread - 20 - AureliumSkills/INFO]: [AureliumSkills] No new updates found
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]: java.sql.SQLException: Access denied for user '348836_mysql_db'@'fh24-86.cybersales.cz' (using password: YES)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:129)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:833)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:453)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:246)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at java.sql/java.sql.DriverManager.getConnection(DriverManager.java:677)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at java.sql/java.sql.DriverManager.getConnection(DriverManager.java:228)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at fr.maxlego08.zauctionhouse.zcore.utils.storage.ZConnection.connect(ZConnection.java:82)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at fr.maxlego08.zauctionhouse.storage.storages.SqlStorage.lambda$0(SqlStorage.java:64)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftTask.run(CraftTask.java:100)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at org.bukkit.craftbukkit.v1_16_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:58)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[23:54:42] [Craft Scheduler Thread - 32 - zAuctionHouseV3/WARN]:     at java.base/java.lang.Thread.run(Thread.java:834)
[23:54:42] [Craft Scheduler Thread - 37 - Quests/INFO]: [Quests] A new version 2.16.3 was found on Spigot (your version: 2.16.2). Please update me! <3 - Link: https://www.spigotmc.org/resources/23696
[23:54:42] [Craft Scheduler Thread - 43 - CombatLogX/INFO]: [CombatLogX] ==============================================
[23:54:42] [Craft Scheduler Thread - 43 - CombatLogX/INFO]: [CombatLogX] CombatLogX Update Checker
[23:54:42] [Craft Scheduler Thread - 43 - CombatLogX/INFO]: [CombatLogX]  
[23:54:42] [Craft Scheduler Thread - 43 - CombatLogX/INFO]: [CombatLogX] You are using the latest version!
[23:54:42] [Craft Scheduler Thread - 43 - CombatLogX/INFO]: [CombatLogX] ==============================================
[23:54:42] [Craft Scheduler Thread - 45 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.0.1.7] There is not a new update available.
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     +===============+
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     | SkinsRestorer |
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     |---------------|
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     |  Bukkit only  |
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     +===============+
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 14.0.2
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[23:54:42] [Craft Scheduler Thread - 6 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'bosscrate' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier1' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier1-1teleport-do' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier1-1teleport-z' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier2' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier2-1teleport-do' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier2-1teleport-z' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier3' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier3-1teleport-do' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier3-1teleport-z' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier4' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier4-1teleport-do' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier4-1teleport-z' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier5' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier5-1teleport-do' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier5-1teleport-z' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier6' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier6-1teleport-do' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier6-1teleport-z' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier7' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier7-1teleport-do' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier7-1teleport-z' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier8' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier8-1teleport-do' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'tier8-1teleport-z' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/WARN]: [HolographicDisplays] Hologram 'bossland' was in the world 'Boss' but it wasn't loaded.
[23:54:42] [Server thread/INFO]: [XLTournaments] Registered external objective CRAZYCRATES_OPEN using CrazyCrates plugin.
[23:54:42] [Server thread/INFO]: [XLTournaments] Registered external objective VOTINGPLUGIN_VOTES using VotingPlugin plugin.
[23:54:42] [Server thread/INFO]: [XLTournaments] Registered external objective PLACEHOLDERAPI using PlaceholderAPI plugin.
[23:54:42] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_RECEIVE using Essentials plugin.
[23:54:42] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_SPEND using Essentials plugin.
[23:54:42] [Server thread/INFO]: [XLTournaments] Loaded 12 tournament objectives (PLACEHOLDERAPI, PLAYTIME, VOTINGPLUGIN_VOTES, PLAYER_FISH, CRAZYCRATES_OPEN, BLOCK_BREAK, ESSENTIALS_BALANCE_RECEIVE, MOB_KILLS, ITEM_CRAFT, BLOCK_PLACE, PLAYER_KILLS, ESSENTIALS_BALANCE_SPEND).
[23:54:42] [Server thread/INFO]: [XLTournaments] Loaded 'player_kills_tournament' tournament.
[23:54:42] [Server thread/INFO]: [XLTournaments] Loaded 'fishing_tournament' tournament.
[23:54:42] [Server thread/WARN]: [XLTournaments] Loaded class me.badbones69.crazycrates.api.events.PlayerPrizeEvent from CrazyCrates v1.10.1-Build#107 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:42] [Server thread/INFO]: [XLTournaments] Loaded 'opening_tournament' tournament.
[23:54:42] [Server thread/INFO]: [XLTournaments] Loaded 'block_break_tournament' tournament.
[23:54:42] [Server thread/WARN]: [XLTournaments] Loaded class com.bencodez.votingplugin.events.PlayerVoteEvent from VotingPlugin v6.2.1 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:42] [Server thread/INFO]: [XLTournaments] Loaded 'voting_tournament' tournament.
[23:54:42] [Server thread/INFO]: [XLTournaments] Loaded 'item_craft_challenge_tournament' tournament.
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: xltournaments
[23:54:42] [Server thread/INFO]: [Jobs] Successfully linked with Vault.
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eglow
[23:54:42] [Server thread/INFO]: [WildStacker] Loading providers started...
[23:54:42] [Server thread/INFO]: [WildStacker]  - Couldn't find any spawners providers, using default one.
[23:54:42] [Server thread/INFO]: [WildStacker] Found ShopGUIPlus - Hooked as SpawnerProvider!
[23:54:42] [Server thread/INFO]: [WildStacker] 
[23:54:42] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[23:54:42] [Server thread/INFO]: [WildStacker] 
[23:54:42] [Server thread/INFO]: [WildStacker] Loading providers done (Took 18ms)
[23:54:42] [Server thread/INFO]: [WildTools] Loading providers started...
[23:54:42] [Server thread/INFO]: [WildTools]  - Using v1_16_R3 adapter.
[23:54:42] [Server thread/INFO]: [WildTools]  - Using ShopGUIPlus as PricesProvider.
[23:54:42] [Server thread/INFO]: [WildTools]  - Couldn't find any factions providers for tnt banks, using default one.
[23:54:42] [Server thread/INFO]: [WildTools] Loading providers done (Took 0ms)
[23:54:42] [Server thread/INFO]: [Quests] Task type blockbreak has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type blockbreakcertain has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type blockplace has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type blockplacecertain has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type mobkilling has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type mobkillingcertain has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type playerkilling has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type fishing has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type inventory has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type walking has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type taming has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type milking has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type shearing has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type position has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type playtime has been registered.
[23:54:42] [Craft Scheduler Thread - 12 - TokenManager/INFO]: [TokenManager] No updates were available. You are on the latest version!
[23:54:42] [Server thread/INFO]: [Quests] Task type brewing has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type expearn has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type breeding has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type enchanting has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type dealdamage has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type permission has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type distancefrom has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type command has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type citizens_deliver has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type citizens_interact has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type placeholderapi_evaluate has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type essentials_moneyearn has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type essentials_balance has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type shopguiplus_buycertain has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Task type shopguiplus_sellcertain has been registered.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming10 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building3 with 2 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining7 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat23 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining15 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat22 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming12 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat8 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming27 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat15 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat12 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming14 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming8 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat34 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming26 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming36 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming37 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat13 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming5 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining2 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat31 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat9 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining36 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat17 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat10 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining31 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining3 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat27 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming38 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme6 with 5 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat7 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming3 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming6 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming1 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming9 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme8 with 4 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming22 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming11 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining24 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme1 with 2 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining20 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building5 with 3 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming4 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat32 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining10 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining16 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme5 with 6 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building7 with 2 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming13 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining38 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining33 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme11 with 6 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining39 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining9 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining25 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming20 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining30 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining18 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat20 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building11 with 2 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming19 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming17 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming15 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat14 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat21 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining21 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining27 with 1 tasks.
[23:54:42] [Craft Scheduler Thread - 25 - Essentials/WARN]: [Essentials] You're 2 EssentialsX dev build(s) out of date!
[23:54:42] [Craft Scheduler Thread - 25 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat3 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining22 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme12 with 4 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme10 with 4 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme9 with 3 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining13 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining17 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining32 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining14 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme2 with 5 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat25 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming32 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming24 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat2 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining35 with 1 tasks.
[23:54:42] [Craft Scheduler Thread - 35 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building1 with 3 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme4 with 4 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming39 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme13 with 2 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat30 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat11 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming35 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining12 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining19 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building6 with 3 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building8 with 2 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat6 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining28 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining4 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining1 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming18 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building2 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining8 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining23 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat1 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building4 with 2 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming21 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat4 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining6 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat35 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming30 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming2 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining37 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming28 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining29 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming25 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat28 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming31 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat29 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme3 with 8 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building10 with 2 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building9 with 2 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat33 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining5 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat16 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming40 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining34 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat19 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat5 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme7 with 3 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming29 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat18 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining11 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming7 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest extreme14 with 3 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest mining26 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming23 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming33 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest building12 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming34 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat26 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest farming16 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat24 with 1 tasks.
[23:54:42] [Server thread/INFO]: [Quests] Registering quest combat36 with 1 tasks.
[23:54:42] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player
[23:54:42] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.bencodez.votingplugin.VotingPluginMain from VotingPlugin v6.2.1 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: votingplugin
[23:54:42] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend, softdepend or loadbefore of this plugin.
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime
[23:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags
[23:54:42] [Server thread/INFO]: 8 placeholder hooks successfully registered!
[23:54:42] [Server thread/INFO]: [DeluxeCoinflip] Found and using VAULT economy provider(s).
[23:54:42] [Craft Scheduler Thread - 39 - Vault/INFO]: [Vault] No new version available
[23:54:42] [Server thread/WARN]: [WildStacker] Loaded class net.citizensnpcs.api.CitizensAPI from Citizens v2.0.27-SNAPSHOT (build 2297) which is not a depend, softdepend or loadbefore of this plugin.
[23:54:42] [Craft Scheduler Thread - 31 - InteractionVisualizer/INFO]: [InteractionVisualizer] Loaded all 1 languages!
[23:54:43] [Server thread/INFO]: [Citizens] Loaded 23 NPCs.
[23:54:43] [Server thread/INFO]: [LeaderHeadsRevamped] Creating PlaceholderAPI placeholders
[23:54:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: leaderheads
[23:54:43] [Server thread/INFO]: [WildStacker] Starting to load entities...
[23:54:43] [Server thread/INFO]: [WildStacker] Loading entities done! Took 0 ms.
[23:54:43] [Server thread/INFO]: [WildStacker] Starting to load items...
[23:54:43] [Server thread/INFO]: [WildStacker] Loading items done! Took 0 ms.
[23:54:43] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[23:54:43] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 1 ms.
[23:54:43] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[23:54:43] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 0 ms.
[23:54:43] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[23:54:43] [Server thread/INFO]: Done (34.353s)! For help, type "help"
[23:54:43] [Server thread/INFO]: Timings Reset
[23:54:43] [Craft Scheduler Thread - 35 - InteractionVisualizer/INFO]: [AureliumSkills] Updating leaderboards...
[23:54:43] [Craft Scheduler Thread - 35 - InteractionVisualizer/INFO]: [AureliumSkills] Leaderboards updated in 6.738206 ms
[23:54:43] [Server thread/INFO]: Unknown command. Type "/help" for help.
[23:54:43] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[23:54:43] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[23:54:43] [Craft Scheduler Thread - 31 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.2.1
[23:54:43] [Craft Scheduler Thread - 25 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[23:54:44] [Server thread/INFO]: -------< LightAPI-fork 3.4.6 >-------
[23:54:44] [Server thread/INFO]: You are running the latest version!
[23:54:44] [Craft Scheduler Thread - 7 - HeadDatabase/INFO]: [HeadDatabase] Succesfully loaded 36230 heads!
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Loading inventories in progress...
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory auction !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory buyconfirm !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory removeconfirm !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory expire !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory buying !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory items !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory categories !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory sell !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory sellshow !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory category !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory adminremove !
[23:54:44] [Craft Scheduler Thread - 7 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Successful loading of the inventory search !
[23:54:44] [Server thread/INFO]: [zAuctionHouseV3 v3.0.1.7] Inventories loading complete.
[23:54:48] [Thread-99/INFO]: [TAB] Expansion uclans is used but not installed. Installing!
[23:54:48] [Server thread/INFO]: Failed to find an expansion named: uclans
[23:54:53] [Server thread/INFO]: Plugins (94): AdvancedEnchantments, AdvancedPortals, AntiRaidFarm, AntiWorldFly, AnyMessageFilter, ArmorStandTools, AureliumSkills, BeastWithdraw, BeeHivesTrees, BetterRTP, BlockParticles, BookShelf, ChatEmoji, ChatManager, Chunky, ChunkyBorder, Citizens, ClearLag, ColoredAnvils*, CombatLogX, ContainerPassthrough, CoreProtect, CraftingStore, CrazyCrates, CustomCrafting, DailyRewards, DeathMessages, DeluxeCoinflip, DeluxeMenus, DeluxeTags*, DropHeads, eGlow, Elevator, Essentials, EssentialsSpawn, FakaHedaMinequery*, FastAsyncWorldEdit (WorldEdit), GPack, GSit, HeadDatabase, HolographicDisplays, HolographicExtension, InteractionVisualizer, InteractiveChat, JetsAntiAFKPro, Jobs, JoinMotd*, LeaderHeadsRevamped, LightAPI, LuckPerms, MobFarmManager, Multiverse-Core, Multiverse-NetherPortals, MyCommand, NoNetherRoof, OnlyNetherWither, PixelEvent, PlaceholderAPI, PlayerWarps, PlugMan, PremiumAds*, PreventItemDestruction*, ProtocolLib, Quests, RotatingHeads*, Shop, ShopGUIPlus, ShulkerPacks, SkinsRestorer, spark, SurvivalInvisiframes, TAB, TempFly, TokenManager, TradePlus, UltimateAutoRestart, UltimateStatistics, UltimateTimber, UltraBar, Vault, ViaVersion, VillagerModifications, VillagerOptimiser, VoidGenerator, Voting*, VotingPlugin, Vouchers, WildStacker, WildTools, WolfyUtilities, WorldGuard, WorldGuardExtraFlags, XLTournaments, zAuctionHouseV3
[23:54:58] [User Authenticator #1/INFO]: UUID of player ZappySK is 8339edb2-67d4-3f41-9318-84645f4ba539
[23:54:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[23:54:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[23:54:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:54:58] [Thread-131/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[23:54:58] [pool-61-thread-10/INFO]: [TAB] Data mismatch in config.yml. Value of per-world-settings is expected to be Map, but is String. This is a misconfiguration issue.
[23:54:58] [Server thread/INFO]: ZappySK[/188.167.250.80:34652] logged in with entity id 405 at ([Spawn]-9.447695751508745, 65.0, -7.667411040316375)
[23:54:58] [Server thread/INFO]: [+] ZappySK
[23:55:06] [Server thread/INFO]: ZappySK lost connection: Disconnected
[23:55:06] [Server thread/INFO]: [-] ZappySK
[23:55:07] [User Authenticator #1/INFO]: UUID of player ZappySK is 8339edb2-67d4-3f41-9318-84645f4ba539
[23:55:07] [Server thread/INFO]: ZappySK[/188.167.250.80:34605] logged in with entity id 406 at ([Spawn]-9.447695751508745, 65.0, -7.667411040316375)
[23:55:07] [Server thread/INFO]: [+] ZappySK
[23:55:17] [Server thread/WARN]: [TradePlus] Loaded class com.earth2me.essentials.Essentials from Essentials v2.19.0-dev+103-195148a which is not a depend, softdepend or loadbefore of this plugin.
[23:55:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[23:55:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[23:55:17] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:55:17] [Server thread/INFO]: ZappySK issued server command: /clan
[23:55:17] [Thread-155/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[23:55:19] [Server thread/INFO]: ZappySK issued server command: /clan
[23:56:49] [Craft Scheduler Thread - 44 - AdvancedEnchantments/WARN]: [AdvancedEnchantments] Failed to connect to remote server, is your firewall configured properly?
[23:56:54] [Server thread/INFO]: ZappySK issued server command: /quests
[23:56:54] [Server thread/INFO]: ZappySK issued server command: /quests
[23:56:55] [Server thread/INFO]: ZappySK issued server command: /quests
[23:56:55] [Server thread/INFO]: ZappySK issued server command: /quests
[23:56:55] [Server thread/INFO]: ZappySK issued server command: /quests
[23:56:57] [Server thread/INFO]: ZappySK issued server command: /quests
[23:58:10] [User Authenticator #2/INFO]: UUID of player Tester is f3d28cb0-7225-3cb1-baeb-2dadd2be89ae
[23:58:10] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7bf9e332[id=f3d28cb0-7225-3cb1-baeb-2dadd2be89ae,name=Tester,properties={},legacy=false] (/188.167.250.80:34724): You are not whitelisted on this server!
[23:58:10] [Server thread/INFO]: com.mojang.authlib.GameProfile@7bf9e332[id=f3d28cb0-7225-3cb1-baeb-2dadd2be89ae,name=Tester,properties={},legacy=false] (/188.167.250.80:34724) lost connection: You are not whitelisted on this server!
[23:58:14] [Server thread/INFO]: ZappySK issued server command: /whitelist list
[23:58:17] [Server thread/INFO]: ZappySK issued server command: /whitelist add Testewr
[23:58:18] [Server thread/INFO]: [ZappySK: Added Testewr to the whitelist]
[23:58:19] [Server thread/INFO]: ZappySK issued server command: /whitelist add Tester
[23:58:19] [Server thread/INFO]: [ZappySK: Added Tester to the whitelist]
[23:58:21] [Server thread/INFO]: ZappySK issued server command: /whitelist reload
[23:58:21] [Server thread/INFO]: [ZappySK: Reloaded the whitelist]
[23:58:23] [User Authenticator #2/INFO]: UUID of player Tester is f3d28cb0-7225-3cb1-baeb-2dadd2be89ae
[23:58:23] [Server thread/INFO]: Tester[/188.167.250.80:34678] logged in with entity id 411 at ([Spawn]-22.672020143882882, 65.5, 7.098785930465276)
[23:58:23] [Server thread/INFO]: [+] Tester
[23:58:24] [Server thread/INFO]: Tester lost connection: Disconnected
[23:58:24] [Server thread/INFO]: [-] Tester
[23:58:25] [User Authenticator #2/INFO]: UUID of player Tester is f3d28cb0-7225-3cb1-baeb-2dadd2be89ae
[23:58:25] [Server thread/INFO]: Tester[/188.167.250.80:34633] logged in with entity id 412 at ([Spawn]-22.672020143882882, 65.5, 7.098785930465276)
[23:58:25] [Server thread/INFO]: [+] Tester
[23:58:39] [Server thread/INFO]: ZappySK issued server command: /tpall