Paste #107748: DenizenMetaBot Auto-Repaste Of log From darkshadow2754

Date: 2023/03/22 17:29:51 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
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766


[01:00:34] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[01:00:35] [Worker-Main-29/INFO]: Loaded 7 recipes
[01:00:35] [Server thread/INFO]: Starting minecraft server version 1.18.2
[01:00:35] [Server thread/INFO]: Loading properties
[01:00:35] [Server thread/INFO]: This server is running Pufferfish version git-Pufferfish-72 (MC: 1.18.2) (Implementing API version 1.18.2-R0.1-SNAPSHOT) (Git: 8f05a00 on HEAD)
[01:00:35] [Server thread/INFO]: Server Ping Player Sample Count: 12
[01:00:35] [Server thread/INFO]: Using 4 threads for Netty based IO
[01:00:35] [Server thread/WARN]: [Pufferfish] To improve performance, timings have been disabled by default
[01:00:35] [Server thread/WARN]: [Pufferfish] You can still use timings by using /timings on, but they will not start on server startup unless you set timings.really-enabled to true in paper.yml
[01:00:35] [Server thread/WARN]: [Pufferfish] If you would like to disable this message, either set timings.really-enabled to true or timings.enabled to false.
[01:00:36] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[01:00:36] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[01:00:36] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[01:00:36] [Server thread/INFO]: Default game type: SURVIVAL
[01:00:36] [Server thread/INFO]: Generating keypair
[01:00:36] [Server thread/INFO]: Starting Minecraft server on *:25660
[01:00:36] [Server thread/INFO]: Using epoll channel type
[01:00:36] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[01:00:36] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[01:00:36] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_18_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[01:00:38] [Server thread/WARN]: Legacy plugin SafeDrop v1.0.1 does not specify an api-version.
[01:00:39] [Server thread/WARN]: Legacy plugin MineStore v1.0.4 does not specify an api-version.
[01:00:39] [Server thread/WARN]: Legacy plugin Playtimes v1.4.7 does not specify an api-version.
[01:00:39] [Server thread/WARN]: Legacy plugin MinecraftITALIA-Votifier v1.0.1 does not specify an api-version.
[01:00:39] [Server thread/INFO]: [NexEngine] Loading 2 libraries... please wait
[01:00:39] [Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[01:00:39] [Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[01:00:39] [Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[01:00:39] [Server thread/INFO]: [SuperiorSkyblock2] Loading 1 libraries... please wait
[01:00:39] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[01:00:39] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[01:00:39] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[01:00:39] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[01:00:39] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[01:00:39] [Server thread/INFO]: [SuperiorSkyblock2] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[01:00:39] [Server thread/INFO]: [PremiumVanish] Loading 1 libraries... please wait
[01:00:39] [Server thread/INFO]: [PremiumVanish] Loaded library /home/container/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[01:00:39] [Server thread/INFO]: [PremiumVanish] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loading 2 libraries... please wait
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/inject/guice/5.1.0/guice-5.1.0.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/javax/inject/javax.inject/1/javax.inject-1.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/guava/30.1-jre/guava-30.1-jre.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[01:00:40] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_18_R2
[01:00:40] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 196 ms to scan 1 urls, producing 1240 keys and 3910 values
[01:00:40] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_18_R2
[01:00:41] [Server thread/INFO]: [InventoryRollbackPlus] Loading InventoryRollbackPlus v1.6.8
[01:00:41] [Server thread/INFO]: [BlockLocker] Loading BlockLocker v1.11
[01:00:41] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[01:00:41] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.1.7
[01:00:41] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.0
[01:00:41] [Server thread/INFO]: [ToolWarnings] Loading ToolWarnings v0.1.6
[01:00:41] [Server thread/INFO]: [ConsoleSpamFix] Loading ConsoleSpamFix v1.9.0
[01:00:41] [Server thread/INFO]: [ChestSort] Loading ChestSort v13.5.1
[01:00:41] [Server thread/INFO]: [ChatReaction] Loading ChatReaction v1.8.0
[01:00:41] [Server thread/INFO]: [SkyblockCore] Loading SkyblockCore v1.0-SNAPSHOT
[01:00:41] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.5.1
[01:00:41] [Server thread/INFO]: [ViaVersion] ViaVersion 4.5.1 is now loaded, injecting!
[01:00:41] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[01:00:41] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[01:00:41] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[01:00:41] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[01:00:41] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[01:00:41] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[01:00:41] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[01:00:41] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[01:00:41] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[01:00:41] [Via-Mappingloader-7/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[01:00:41] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.19 -> 1.19.3 mappings...
[01:00:41] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.5.1
[01:00:41] [Server thread/INFO]: [ViaBackwards] Loading translations...
[01:00:41] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[01:00:41] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[01:00:41] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[01:00:41] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[01:00:41] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[01:00:41] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[01:00:41] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[01:00:41] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[01:00:41] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[01:00:41] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[01:00:41] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[01:00:41] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[01:00:41] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.19.3 -> 1.19 mappings...
[01:00:41] [Server thread/INFO]: [EZColors] Loading EZColors v2.1.7
[01:00:41] [Server thread/INFO]: [SafeDrop] Loading SafeDrop v1.0.1
[01:00:41] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.62
[01:00:41] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
[01:00:41] [Server thread/INFO]: [MineStore] Loading MineStore v1.0.4
[01:00:41] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[01:00:41] [Server thread/INFO]: [SmartSignEditor] Loading SmartSignEditor v2.7.5
[01:00:41] [Server thread/INFO]: [Playtimes] Loading Playtimes v1.4.7
[01:00:41] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b608
[01:00:42] [Server thread/INFO]: [ImageOnMap] Loading ImageOnMap v5.0.1
[01:00:42] [Server thread/INFO]: [NerfPhantoms] Loading NerfPhantoms v1.3.0
[01:00:42] [Server thread/INFO]: [AntiAFK-Farming] Loading AntiAFK-Farming v2.0
[01:00:42] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[01:00:42] [Server thread/INFO]: [McItaVotifier] Loading MinecraftITALIA-Votifier v1.0.1
[01:00:42] [Server thread/INFO]: [TAB-Bridge] Loading TAB-Bridge v2.0.11
[01:00:42] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v14.2.9
[01:00:42] [Server thread/INFO]: [ChatItem] Loading ChatItem v2.4.5
[01:00:42] [Server thread/INFO]: [Pl-Hide-Pro] Loading Pl-Hide-Pro v2.6.3
[01:00:42] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.9 build-23/02/2023
[01:00:42] [Server thread/INFO]: [VoidChest-1.8.8.3] Loading VoidChest v1.8.8.3
[01:00:42] [Server thread/INFO]: [PlayerKits] Loading PlayerKits v2.25.1
[01:00:42] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.7
[01:00:42] [Server thread/INFO]: [MineableSpawners] Loading MineableSpawners v3.1.4
[01:00:42] [Server thread/INFO]: [LPX] Loading LPX v3.2.4
[01:00:42] [Server thread/INFO]: [Elevator] Loading Elevator v3.12.1
[01:00:42] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.17.0
[01:00:42] [Server thread/INFO]: [CommandPanels] Loading CommandPanels v3.18.5.1
[01:00:42] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.5.1-SNAPSHOT-332;f8acaf5
[01:00:42] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@216c29a0]
[01:00:42] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.2.0
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.8
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[01:00:42] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[01:00:42] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.19.7
[01:00:42] [Server thread/INFO]: [SuperbVote] Loading SuperbVote v0.5.5
[01:00:42] [Server thread/INFO]: [TAB] Loading TAB v3.3.0
[01:00:42] [Server thread/INFO]: [ExcellentEnchants] Loading ExcellentEnchants v3.3.1
[01:00:42] [Server thread/INFO]: [Rankup] Loading Rankup v3.13.3
[01:00:42] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[01:00:42] [Server thread/INFO]: [EntityDetection] Loading EntityDetection v1.2.0 (build #23)
[01:00:42] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v3.2.3
[01:00:42] [Server thread/INFO]: [ajParkour] Loading ajParkour v2.12.10
[01:00:42] [Server thread/INFO]: [GSit] Loading GSit v1.3.7
[01:00:43] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.19.7
[01:00:43] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.3
[01:00:43] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.1
[01:00:43] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.0
[01:00:43] [Server thread/INFO]: [Plan] Loading Plan v5.5 build 2172
[01:00:43] [Server thread/INFO]: [AureliumSkills] Loading AureliumSkills vBeta 1.3.12
[01:00:43] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.12.3-SNAPSHOT (build 365)
[01:00:43] [Server thread/INFO]: [ChestShop] BlockLocker version 1.11 loaded.
[01:00:43] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.7+216b061 loaded.
[01:00:43] [Server thread/INFO]: [AntiPiston] Loading AntiPiston v0.1.0
[01:00:43] [Server thread/INFO]: [Drop2Inventory] Loading Drop2Inventory v4.9.5
[01:00:43] [Server thread/INFO]: [SuperiorSkyblock2] Loading SuperiorSkyblock2 v2022.9-b977
[01:00:43] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2661)
[01:00:43] [Server thread/INFO]: [Denizen] Loading Denizen v1.2.5-SNAPSHOT (build 1778-REL)
[01:00:43] [Server thread/INFO]: [PremiumVanish] Loading PremiumVanish v2.8.0
[01:00:43] [Server thread/INFO]: [WildStacker] Loading WildStacker v2022.6-b415
[01:00:43] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[01:00:43] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.16.2
[01:00:43] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (204 ms).
[01:00:43] [Server thread/INFO]: [Shopkeepers] Loading config.
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': ALLAY
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': FROG
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': TADPOLE
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': WARDEN
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[01:00:43] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': ALLAY
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': FROG
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': TADPOLE
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: Invalid living entity type name in 'enabled-living-shops': WARDEN
[01:00:43] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[01:00:43] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[01:00:43] [Server thread/INFO]: [Shopkeepers] Couldn't register WorldGuard flag 'allow-shop': A flag already exists by the name allow-shop
[01:00:43] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[01:00:43] [Server thread/INFO]: [CWR] Loading CyberWorldReset v1.4.5
[01:00:43] [Server thread/INFO]: [PlayerWarps] Loading PlayerWarps v6.18.1
[01:00:43] [Server thread/INFO]: [CrateReloaded] Loading CrateReloaded v2.0.26
[01:00:43] [Server thread/INFO]: [SCore] Loading SCore v3.9.12
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Loading WolfyUtilities v4.16.9.4
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Generate Functional Recipes
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[01:00:43] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[01:00:43] [Server thread/INFO]: [CustomCrafting] Loading CustomCrafting v4.16.3.2
[01:00:43] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.9.4
[01:00:43] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.3.2
[01:00:43] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[01:00:43] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[01:00:43] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[01:00:43] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[01:00:43] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[01:00:43] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[01:00:43] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[01:00:43] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[01:00:43] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[01:00:43] [Server thread/INFO]: [BeautyQuests] Loading BeautyQuests v0.20.1_BUILDinternal
[01:00:43] [Server thread/INFO]: [BeautyQuests Expansion] Loading BeautyQuests-Expansion v1.2.2
[01:00:43] [Server thread/INFO]: [ExecutableItems] Loading ExecutableItems v5.9.12
[01:00:43] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.80.1
[01:00:43] [Server thread/INFO]: [JetsMinions] Loading JetsMinions v7.6.17
[01:00:43] [Server thread/INFO]: [ShopGUIPlusMineableSpawnersBridge] Loading ShopGUIPlusMineableSpawnersBridge v1.1.0
[01:00:43] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[01:00:43] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.11
[01:00:43] [Server thread/WARN]: [BlockLocker] Cannot recognize material mangrove_door, ignoring it
[01:00:43] [Server thread/WARN]: [BlockLocker] Cannot recognize material mangrove_fence_gate, ignoring it
[01:00:43] [Server thread/WARN]: [BlockLocker] Cannot recognize material mangrove_trapdoor, ignoring it
[01:00:43] [Server thread/INFO]: [ConsoleSpamFix] Enabling ConsoleSpamFix v1.9.0
[01:00:43] [Server thread/INFO]: [ConsoleSpamFix] Server version detected: 1.18.2
[01:00:43] [Server thread/INFO]: [ConsoleSpamFix] Loading the config file...
[01:00:43] [Server thread/INFO]: [ConsoleSpamFix] Config file loaded!
[01:00:43] [Server thread/INFO]: [ConsoleSpamFix] ConsoleSpamFix loaded successfully!
[01:00:43] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.62
[01:00:44] [Server thread/INFO]:         __    
[01:00:44] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.62
[01:00:44] [Server thread/INFO]:   |___ |      Running on Bukkit - Pufferfish
[01:00:44] [Server thread/INFO]: 
[01:00:44] [Server thread/INFO]: [LuckPerms] Loading configuration...
[01:00:44] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[01:00:44] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[01:00:44] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[01:00:44] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[01:00:44] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[01:00:45] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[01:00:45] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1542ms)
[01:00:45] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[01:00:45] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[01:00:45] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b608
[01:00:45] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[01:00:45] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[01:00:45] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[01:00:45] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[01:00:45] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[01:00:45] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[01:00:45] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.9 build-23/02/2023
[01:00:45] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_18_R2
[01:00:45] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[01:00:45] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[01:00:45] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[01:00:45] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[01:00:45] [Server thread/INFO]: [NexEngine] Using 'en' language.
[01:00:45] [Server thread/INFO]: [NexEngine] Plugin loaded in 43 ms!
[01:00:45] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.5.1-SNAPSHOT-332;f8acaf5
[01:00:45] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[01:00:45] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[01:00:45] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[01:00:45] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[01:00:45] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_18_R2.PaperweightFaweAdapter as the Bukkit adapter
[01:00:45] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 60 build(s) out of date.
You are running build 332, the latest version is build 392.
Update at https://www.spigotmc.org/resources/13932/
[01:00:45] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v3.3.1
[01:00:45] [Server thread/INFO]: [ExcellentEnchants] Powered by: NexEngine
[01:00:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentenchants [3.3.1]
[01:00:45] [Server thread/INFO]: [ExcellentEnchants] Using 'en' language.
[01:00:45] [Server thread/INFO]: [ExcellentEnchants] Tiers Loaded: 5
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blast_mining
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: divine_touch
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: silk_chest
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: telekinesis
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: treasures
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: tunnel
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: veinminer
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_aspect
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: venom
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exhaust
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: wither
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: paralyze
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cutter
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusion
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blindness
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampire
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: surprise
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: temper
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thrifty
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thunder
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rocket
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: elemental_protection
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: fire_shield
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_shield
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cold_steel
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: self_destruction
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bomber
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusing_arrows
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: dragonfire_arrows
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: electrified_arrows
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ender_bow
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ghast
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hover
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: poisoned_arrows
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: withered_arrows
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: explosive_arrows
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_fragility
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 61
[01:00:46] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 169 ms!
[01:00:46] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.9.4
[01:00:46] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.18.2
[01:00:46] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.9.4
[01:00:46] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[01:00:46] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[01:00:46] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[01:00:46] [Server thread/INFO]: [WolfyUtilities]  - ExecutableItems
[01:00:46] [Server thread/INFO]: [WolfyUtilities]  - Denizen
[01:00:46] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[01:00:46] [Server thread/INFO]: [WolfyUtilities] Register API references
[01:00:46] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[01:00:46] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[01:00:46] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[01:00:46] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[01:00:46] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[01:00:46] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[01:00:46] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[01:00:46] [Server thread/INFO]: Preparing level "previewis"
[01:00:46] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.8
[01:00:46] [Server thread/INFO]: [SkyblockRollback] Inventory backup data is set to save to: YAML
[01:00:46] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[01:00:46] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.5.1 which is not a depend or softdepend of this plugin.
[01:00:46] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[01:00:46] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[01:00:46] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.7
[01:00:46] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.0
[01:00:46] [Server thread/INFO]: [ToolWarnings] Enabling ToolWarnings v0.1.6
[01:00:46] [Server thread/INFO]: [ToolWarnings] ToolWarings successfull loaded!
[01:00:46] [Server thread/INFO]: [ChestSort] Enabling ChestSort v13.5.1
[01:00:46] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.7+216b061
[01:00:46] [Server thread/INFO]: [ChestSort] Use permissions: true
[01:00:46] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[01:00:46] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[01:00:46] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[01:00:46] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[01:00:46] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[01:00:46] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[01:00:46] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[01:00:46] [Server thread/INFO]: [ChestSort] Allow hotkeys: false
[01:00:46] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: false
[01:00:46] [Server thread/INFO]: [ChestSort] Check for updates: true
[01:00:46] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[01:00:46] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[01:00:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chestsort [13.5.1]
[01:00:46] [Server thread/INFO]: [ChatReaction] Enabling ChatReaction v1.8.0
[01:00:46] [Server thread/INFO]: [ChatReaction] You are using Spigot! Tooltips in reaction start messages are enabled!
[01:00:46] [Server thread/INFO]: [ChatReaction] 70 words loaded!
[01:00:46] [Server thread/INFO]: [ChatReaction] Reaction stats are disabled!!
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[01:00:46] [Server thread/WARN]: Nag author(s): '[extended_clip]' of 'ChatReaction' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT] Could not connect to spigotmc.org
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT] to check for updates! 
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT]      ChatReaction Updater
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT] You are running 1.8.0
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT] The latest version
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT] of ChatReaction!
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT]  
[01:00:46] [Server thread/INFO]: [ChatReaction] [STDOUT] ---------------------------
[01:00:46] [Server thread/WARN]: [ChatReaction] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[01:00:46] [Server thread/INFO]: [SkyblockCore] Enabling SkyblockCore v1.0-SNAPSHOT
[01:00:46] [Server thread/WARN]: [SkyblockCore] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[01:00:47] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.5.1
[01:00:47] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.5.1
[01:00:47] [Server thread/INFO]: [EZColors] Enabling EZColors v2.1.7
[01:00:49] [Server thread/INFO]: EZColors »  Successfully downloaded 12 languages from the cloud!
[01:00:49] [Server thread/INFO]: EZColors »  Loading EZColors v2.1.7!
[01:00:49] [Server thread/INFO]: EZColors »  Found a compatible version. Hooking into V1_18_R2!
[01:00:49] [Server thread/INFO]: EZColors »  Found PlaceholderAPI. Loading hook!
[01:00:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ezcolors [1.0.0]
[01:00:49] [Server thread/INFO]: EZColors »  Successfully Loaded EZColors v2.1.7 in 2282ms!
[01:00:49] [Server thread/INFO]: [SafeDrop] Enabling SafeDrop v1.0.1*
[01:00:49] [Server thread/INFO]: =-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[01:00:49] [Server thread/INFO]: You are using an older version of SafeDrop!
[01:00:49] [Server thread/INFO]: Download the newest version here:
[01:00:49] [Server thread/INFO]: https://www.spigotmc.org/resources/safedrop-safely-drop-items.72585/
[01:00:49] [Server thread/INFO]: =-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[01:00:49] [Server thread/INFO]: [MineStore] Enabling MineStore v1.0.4*
[01:00:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Minestore [1.0.0]
[01:00:49] [Server thread/INFO]: [MineStore] [ACF] Enabled Asynchronous Tab Completion Support!
[01:00:49] [Server thread/INFO]: [MineStore] Loaded commands for 8 players.
[01:00:49] [Server thread/INFO]: [MineStore] Starting web listener...
[01:00:49] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[01:00:49] [Server thread/INFO]: [Votifier] Loaded token for website: default
[01:00:49] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[01:00:49] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[01:00:49] [Server thread/INFO]: [SmartSignEditor] Enabling SmartSignEditor v2.7.5
[01:00:49] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8193.
[01:00:49] [Server thread/INFO]: [SmartSignEditor] Registered version adapter with success! Using VersionAdapter_1_18_R2
[01:00:49] [Server thread/INFO]: [SmartSignEditor] [Config] Configuration loaded successfully!
[01:00:49] [Server thread/INFO]: [SmartSignEditor] [Messages] Configuration loaded successfully!
[01:00:49] [Server thread/INFO]: [Playtimes] Enabling Playtimes v1.4.7*
[01:00:49] [Server thread/INFO]: [PlayTimes] Plugin is up to date! - 1.4.7
[01:00:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PlayTimes [1.4.6]
[01:00:50] [Server thread/INFO]: [PlayTimes] PlaceholdersAPI Hooked!
[01:00:50] [Server thread/INFO]: [PlayTimes] Successfully loaded.
[01:00:50] [Server thread/INFO]: [ImageOnMap] Enabling ImageOnMap v5.0.1
[01:00:50] [Server thread/INFO]: [NerfPhantoms] Enabling NerfPhantoms v1.3.0
[01:00:50] [Server thread/INFO]: [AntiAFK-Farming] Enabling AntiAFK-Farming v2.0
[01:00:50] [Server thread/INFO]: Skyblock » loading...
[01:00:50] [Server thread/INFO]: Skyblock » started successfully!
[01:00:50] [Server thread/INFO]: [McItaVotifier] Enabling MinecraftITALIA-Votifier v1.0.1*
[01:00:50] [Server thread/INFO]: [TAB-Bridge] Enabling TAB-Bridge v2.0.11
[01:00:50] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.9
[01:00:50] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_18_R2, using MappingSpigotSkinRefresher.
[01:00:50] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[01:00:50] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[01:00:50] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[01:00:50] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[01:00:50] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[01:00:50] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[01:00:50] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.5
[01:00:50] [Server thread/INFO]: [ChatItem] Detected server version: v1_18
[01:00:50] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[01:00:50] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin ChatItem tried to register listener for unknown packet SYSTEM_CHAT[PLAY, SERVER, 96, classNames: [net.minecraft.network.protocol.game.PacketPlayOutSystemChat, net.minecraft.network.protocol.game.ClientboundSystemChatPacket] (unregistered)] [direction: from SERVER]
[01:00:50] [Server thread/INFO]: [ChatItem] Loaded 5 getter for base components.
[01:00:50] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[01:00:50] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[01:00:50] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.6.3
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] Enabling VoidChest v1.8.8.3
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] Plugin attempting to load now...
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] YML files loaded.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] messages.yml file fully loaded.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] Attempting to load voidchest files in memory.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] VoidChest file: Guerriero successfully loaded in memory.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] VoidChest file: Base successfully loaded in memory.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] VoidChest file: Scudiero successfully loaded in memory.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] Attempting to load voidchest items in memory.
[01:00:50] [Server thread/INFO]: Currently loaded files: 3
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] Loaded voidchest item for: Guerriero
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] Loaded voidchest item for: Scudiero
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] Loaded voidchest item for: Base
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] Attempted registering the following tasks: voidchest-purge, hologram, data-purge, sell-message
[01:00:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:00:50] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.25.1
[01:00:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.25.1]
[01:00:50] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.25.1
[01:00:50] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[01:00:50] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[01:00:50] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[01:00:50] [Server thread/INFO]: [Essentials] No kits found to migrate.
[01:00:50] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[01:00:50] [Server thread/INFO]: [Essentials] Using locale it
[01:00:50] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[01:00:50] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[01:00:50] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[01:00:50] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[01:00:50] [Server thread/INFO]: [MineableSpawners] Enabling MineableSpawners v3.1.4
[01:00:50] [Server thread/INFO]: [LPX] Enabling LPX v3.2.4
[01:00:51] [Server thread/INFO]: [LPX] License successfully verified!
[01:00:51] [Server thread/INFO]: [Elevator] Enabling Elevator v3.12.1
[01:00:51] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[01:00:51] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[01:00:51] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[01:00:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
[01:00:51] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.18.5.1
[01:00:51] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.5.1 Plugin Loading...
[01:00:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: commandpanels [1.0.0]
[01:00:51] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.5.1 Plugin Loaded!
[01:00:51] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.2.0
[01:00:51] [Server thread/INFO]: [TradeSystem] Could not detect server type "Pufferfish".
[01:00:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[01:00:51] [Server thread/INFO]:  
[01:00:51] [Server thread/INFO]: __________________________________________________________
[01:00:51] [Server thread/INFO]:  
[01:00:51] [Server thread/INFO]:                        TradeSystem [2.2.0]
[01:00:51] [Server thread/INFO]:  
[01:00:51] [Server thread/INFO]: Status:
[01:00:51] [Server thread/INFO]:  
[01:00:51] [Server thread/INFO]: MC-Version: 1.18.2 (R0.1-SNAPSHOT, Unknown)
[01:00:51] [Server thread/INFO]:  
[01:00:51] [Server thread/INFO]:   > Loading sounds
[01:00:51] [Server thread/INFO]:   > Loading blacklist
[01:00:51] [Server thread/INFO]:     ...got 3 blocked item(s)
[01:00:51] [Server thread/INFO]:   > Loading layouts
[01:00:51] [Server thread/INFO]:     ...got 5 layout(s)
[01:00:51] [Server thread/INFO]:   > Database logging is disabled
[01:00:51] [Server thread/INFO]:  
[01:00:51] [Server thread/INFO]: Finished (105ms)
[01:00:51] [Server thread/INFO]:  
[01:00:51] [Server thread/INFO]: __________________________________________________________
[01:00:51] [Server thread/INFO]:  
[01:00:51] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.8
[01:00:51] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[01:00:51] [Server thread/INFO]: [ajLeaderboards] The columns already exist for beautyquests-expansion-points_player. Canceling updater and bumping DB version.
[01:00:51] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_deaths. Canceling updater and bumping DB version.
[01:00:51] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mine_block. Canceling updater and bumping DB version.
[01:00:51] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mob_kills. Canceling updater and bumping DB version.
[01:00:51] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[01:00:51] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_traded_with_villager. Canceling updater and bumping DB version.
[01:00:51] [Server thread/INFO]: [ajLeaderboards] The columns already exist for superbvote_votes. Canceling updater and bumping DB version.
[01:00:51] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance. Canceling updater and bumping DB version.
[01:00:51] [Server thread/INFO]: [ajLeaderboards] Loaded 8 boards
[01:00:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.8]
[01:00:51] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[01:00:51] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[01:00:52] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.8 by ajgeiss0702 enabled!
[01:00:52] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.19.7
[01:00:52] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[01:00:52] [Server thread/INFO]: [SuperbVote] Enabling SuperbVote v0.5.5
[01:00:52] [Server thread/WARN]: [SuperbVote] Loaded class com.earth2me.essentials.Essentials from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[01:00:52] [Server thread/INFO]: [SuperbVote] Using clip's PlaceholderAPI to provide extra placeholders.
[01:00:52] [Server thread/INFO]: [TAB] Enabling TAB v3.3.0
[01:00:52] [Server thread/INFO]: [TAB] Server version: 1.18.2 (v1_18_R2)
[01:00:52] [Server thread/INFO]: [TAB] Loaded NMS hook in 26ms
[01:00:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.3.0]
[01:00:52] [Server thread/INFO]: [TAB] Enabled in 40ms
[01:00:52] [Server thread/INFO]: [Rankup] Enabling Rankup v3.13.3
[01:00:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rankup [3.13.3]
[01:00:52] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[01:00:52] [Server thread/INFO]: [WorldGuard] (previewis) TNT ignition is PERMITTED.
[01:00:52] [Server thread/INFO]: [WorldGuard] (previewis) Lighters are PERMITTED.
[01:00:52] [Server thread/INFO]: [WorldGuard] (previewis) Lava fire is PERMITTED.
[01:00:52] [Server thread/INFO]: [WorldGuard] (previewis) Fire spread is UNRESTRICTED.
[01:00:52] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'previewis'
[01:00:52] [Server thread/INFO]: [WorldGuard] (previewis_the_end) TNT ignition is PERMITTED.
[01:00:52] [Server thread/INFO]: [WorldGuard] (previewis_the_end) Lighters are PERMITTED.
[01:00:52] [Server thread/INFO]: [WorldGuard] (previewis_the_end) Lava fire is PERMITTED.
[01:00:52] [Server thread/INFO]: [WorldGuard] (previewis_the_end) Fire spread is UNRESTRICTED.
[01:00:52] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'previewis_the_end'
[01:00:52] [Server thread/INFO]: [WorldGuard] Loading region data...
[01:00:52] [Server thread/INFO]: [EntityDetection] Enabling EntityDetection v1.2.0 (build #23)
[01:00:52] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.2.3
[01:00:52] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[01:00:52] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[01:00:52] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_18_R2
[01:00:52] [Server thread/INFO]: [AuctionHouse] Enabled HeadDatabase support
[01:00:52] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[01:00:52] [Server thread/INFO]: [AuctionHouse] Loaded 3422 listings
[01:00:52] [Server thread/INFO]: [ajParkour] Enabling ajParkour v2.12.10
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'DING_AMETHYST'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'CHISELED_RED_STONE'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'CHISELED_STONE'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'CUT_RED_STONE'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'CUT_STONE'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'RED_STONE'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'RED_STONE_STAIRS'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'SMOOTH_RED_STONE'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'SMOOTH_RED_STONE_STAIRS'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/WARN]: [ajParkour] Could not find material 'SMOOTH_STONE_STAIRS'! Make sure it exists in the server version you are using!
[01:00:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajpk [2.12.10]
[01:00:52] [Server thread/INFO]: ajParkour v2.12.10 by ajgeiss0702 has been enabled!
[01:00:52] [Server thread/INFO]: [GSit] Enabling GSit v1.3.7
[01:00:52] [Server thread/INFO]: [GSit] Il plugin è stato abilitato con successo.
[01:00:52] [Server thread/INFO]: [GSit] Agganciato con successo con WorldGuard !
[01:00:52] [Server thread/INFO]: [GSit] Agganciato con successo con PlaceholderAPI !
[01:00:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.3.7]
[01:00:52] [Server thread/INFO]: [GSit] Nuova versione disponibile: 1.4.1!
[GSit] In questo momento stai usando la versione: 1.3.7!
[GSit] Scarica l'ultima versione su:
[GSit] https://www.spigotmc.org/resources/62325
[01:00:52] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.19.7
[01:00:52] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[01:00:52] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[01:00:52] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[01:00:52] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[01:00:52] [Server thread/INFO]: --------------------
[01:00:52] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[01:00:52] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[01:00:52] [Server thread/INFO]: --------------------
[01:00:52] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[01:00:52] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[01:00:52] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.0
[01:00:52] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[01:00:52] [Server thread/INFO]: [Plan] Enabling Plan v5.5 build 2172
[01:00:53] [Server thread/INFO]: [Plan] 
[01:00:53] [Server thread/INFO]: [Plan]            ██▌
[01:00:53] [Server thread/INFO]: [Plan]      ██▌   ██▌
[01:00:53] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[01:00:53] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.5 build 2172
[01:00:53] [Server thread/INFO]: [Plan] 
[01:00:53] [Server thread/INFO]: [Plan] Locale: 'Italiano' by Malachiel & Mastory_Md5
[01:00:53] [Server thread/INFO]: [Plan] Downloading MySQL Driver, this may take a while...
[01:00:53] [Server thread/WARN]: [Plan] Loaded class us.ajg0702.leaderboards.libs.h2.Driver from ajLeaderboards v2.6.8 which is not a depend or softdepend of this plugin.
[01:00:53] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[01:00:53] [Server thread/INFO]: [Plan] MySQL-Connessione al database stabilita.
[01:00:53] [Server thread/WARN]: [Plan] WebServer non avviato. (WebServer.DisableWebServer: true)
[01:00:53] [Server thread/INFO]: [Plan] Loading server identifying information
[01:00:53] [Server thread/INFO]: [Plan] Server identifier loaded: 251c77b2-823b-4d6f-ab35-0b3eb90104b9
[01:00:53] [Server thread/INFO]: [Plan] Geolocalizazione non attiva. (Data.Geolocations: false)
[01:00:53] [Plan Non critical-pool-4/INFO]: [Plan] Proxy server detected in the database - Proxy Webserver address is 'https://statistiche.minecraftexperience.it'.
[01:00:53] [Server thread/INFO]: [Plan] Registered extension: Essentials
[01:00:53] [Server thread/INFO]: [Plan] Registered extension: EssentialsEco
[01:00:53] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[01:00:53] [Server thread/INFO]: [Plan] Registered extension: nuVotifier
[01:00:53] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[01:00:53] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] Applicando Patch: PlayerTableRowPatch..
[01:00:53] [Server thread/INFO]: [Plan] Registered extension: SuperbVote
[01:00:53] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[01:00:53] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[01:00:53] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[01:00:53] [Server thread/INFO]: [Plan] Analisi Giocatori Abilitata.
[01:00:53] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.12
[01:00:53] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[01:00:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aureliumskills [Beta 1.3.12]
[01:00:53] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[01:00:53] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[01:00:53] [Server thread/INFO]: [AureliumSkills] Loaded 187 config options in 0 ms
[01:00:53] [Server thread/INFO]: [AureliumSkills] Loaded 303 sources and 10 tags in 5ms
[01:00:53] [Server thread/INFO]: [AureliumSkills] HolographicDisplays Support Enabled!
[01:00:53] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[01:00:53] [Server thread/INFO]: [AureliumSkills] Loading languages...
[01:00:53] [Server thread/INFO]: [AureliumSkills] Loaded 1 languages in 50ms
[01:00:53] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[01:00:53] [Server thread/INFO]: [AureliumSkills] Disabled 27 Abilities
[01:00:53] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 1ms
[01:00:53] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[01:00:53] [Server thread/INFO]: [AureliumSkills] Loaded 23 loot entries in 4 pools and 2 tables
[01:00:53] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[01:00:53] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[01:00:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[01:00:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R2' loaded!
[01:00:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[01:00:53] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.3-SNAPSHOT (build 365)
[01:00:53] [Server thread/INFO]: [ChestShop] Found locales ar, it, es, el, hu, fr, pl, cs, pt_br, ja, sv, da, es_mx, sr, tr, nl, zh_tw, af, ko, no, vi, ro, he, ru, ca, zh, de, fi, en, uk
[01:00:53] [Server thread/WARN]: [ChestShop] Loaded class org.slf4j.impl.StaticLoggerBinder from ajParkour v2.12.10 which is not a depend or softdepend of this plugin.
[01:00:54] [Server thread/INFO]: [ChestShop] BlockLocker version 1.11 loaded.
[01:00:54] [Server thread/INFO]: [ChestShop] Using EssentialsX Economy as the Economy provider now.
[01:00:54] [Server thread/INFO]: [ChestShop] Vault loaded!
[01:00:54] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[01:00:54] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[01:00:54] [Server thread/INFO]: [AntiPiston] Enabling AntiPiston v0.1.0
[01:00:54] [Server thread/INFO]: [AntiPiston] Loading configuration values...
[01:00:54] [Server thread/INFO]: [AntiPiston] Adding type: HONEY_BLOCK
[01:00:54] [Server thread/INFO]: [AntiPiston] Adding type: SLIME_BLOCK
[01:00:54] [Server thread/INFO]: [AntiPiston] Complete. Time elapsed: 0.492883ms
[01:00:54] [Server thread/INFO]: [Drop2Inventory] Enabling Drop2Inventory v4.9.5
[01:00:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: drop2inventory [GENERIC]
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Enabling SuperiorSkyblock2 v2022.9-b977
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module nashorn-engine...
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module nashorn-engine (Took 8ms)
[01:00:54] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) TNT ignition is PERMITTED.
[01:00:54] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lighters are PERMITTED.
[01:00:54] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Lava fire is PERMITTED.
[01:00:54] [Server thread/INFO]: [WorldGuard] (SuperiorWorld) Fire spread is UNRESTRICTED.
[01:00:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorWorld'
[01:00:54] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_nether) TNT ignition is PERMITTED.
[01:00:54] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_nether) Lighters are PERMITTED.
[01:00:54] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_nether) Lava fire is PERMITTED.
[01:00:54] [Server thread/INFO]: [WorldGuard] (SuperiorWorld_nether) Fire spread is UNRESTRICTED.
[01:00:54] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorWorld_nether'
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module bank...
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module bank (Took 3ms)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module missions...
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module missions (Took 0ms)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module generators...
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module generators (Took 7ms)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Enabling the module upgrades...
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Finished enabling the module upgrades (Took 6ms)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages started...
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2]  - Found 698 messages in the language files.
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Loading messages done (Took 90ms)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic micelio.schematic (DefaultSchematicParser)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal.schematic (DefaultSchematicParser)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal_the_end.schematic (DefaultSchematicParser)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic deserto.schematic (DefaultSchematicParser)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic micelio_nether.schematic (DefaultSchematicParser)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic normal_nether.schematic (DefaultSchematicParser)
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Successfully loaded schematic deserto_nether.schematic (DefaultSchematicParser)
[01:00:54] [Server thread/INFO]: [com.bgsoftware.superiorskyblock.libs.hikari.HikariDataSource] SuperiorSkyblock Pool - Starting...
[01:00:54] [Server thread/WARN]: [SuperiorSkyblock2] Loaded class us.ajg0702.leaderboards.libs.h2.Driver from ajLeaderboards v2.6.8 which is not a depend or softdepend of this plugin.
[01:00:54] [Server thread/INFO]: [com.bgsoftware.superiorskyblock.libs.hikari.HikariDataSource] SuperiorSkyblock Pool - Start completed.
[01:00:54] [Server thread/INFO]: [com.bgsoftware.superiorskyblock.libs.hikari.HikariDataSource] SuperiorSkyblock Pool - Shutdown initiated...
[01:00:54] [Server thread/INFO]: [com.bgsoftware.superiorskyblock.libs.hikari.HikariDataSource] SuperiorSkyblock Pool - Shutdown completed.
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Trying to connect to remote database (MySQL)...
[01:00:54] [Server thread/INFO]: [com.bgsoftware.superiorskyblock.libs.hikari.HikariDataSource] SuperiorSkyblock Pool - Starting...
[01:00:54] [Server thread/INFO]: [com.bgsoftware.superiorskyblock.libs.hikari.HikariDataSource] SuperiorSkyblock Pool - Start completed.
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Successfully established connection with remote database!
[01:00:54] [Server thread/INFO]: [SuperiorSkyblock2] Creating a backup file...
[01:00:55] [Server thread/INFO]: [SuperiorSkyblock2] Backup done!
[01:00:55] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load players...
[01:00:55] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 3140 players (Took 103ms)
[01:00:55] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load islands...
[01:00:55] [Server thread/WARN]: [SuperiorSkyblock2] Cannot load upgrades with invalid upgrade names for 466d26fd-3af6-4398-a84a-adecd09910f5, skipping...
[01:00:55] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] Tutte le patch sono satte applicate al database.
[01:01:26] [Server thread/INFO]: [SuperiorSkyblock2] Finished loading 1501 islands (Took 31246ms)
[01:01:26] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load grid...
[01:01:26] [Server thread/INFO]: [SuperiorSkyblock2] Finished grid!
[01:01:26] [Server thread/INFO]: [SuperiorSkyblock2] Starting to load stacked blocks...
[01:01:26] [Server thread/INFO]: [SuperiorSkyblock2] Finished stacked blocks!
[01:01:26] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2661)
[01:01:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[01:01:26] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[01:01:26] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.5-SNAPSHOT (build 1778-REL)
[01:01:26] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.90.1-SNAPSHOT (Build 1261), impl for Spigot v1.2.5-SNAPSHOT (build 1778-REL) 
[01:01:26] [Server thread/INFO]: +> [Denizen] Running on java version: 18.0.1 
[01:01:26] [Server thread/INFO]: +> [Denizen] Running on unrecognized (future?) Java version. May or may not work. 
[01:01:26] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[01:01:26] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[01:01:26] [Server thread/INFO]: +> [Denizen]  
[01:01:26] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[01:01:26] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[01:01:26] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[01:01:26] [Server thread/INFO]: +> [Denizen] version: 1.2.5-SNAPSHOT (build 1778-REL) 
[01:01:26] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[01:01:28] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[01:01:28] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[01:01:28] [Server thread/INFO]: +> [Denizen] Loaded 150 core commands and 28 core object types, at 1840ms from start. 
[01:01:28] [Server thread/INFO]: +> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
[01:01:28] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
[01:01:28] [Server thread/INFO]: +> [Denizen] Final full init took 1858ms. 
[01:01:28] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.8.0
[01:01:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.8.0]
[01:01:28] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[01:01:28] [Server thread/INFO]: [PremiumVanish] Hooked into Essentials
[01:01:28] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[01:01:28] [Server thread/INFO]: [WildStacker] Enabling WildStacker v2022.6-b415
[01:01:28] [Server thread/INFO]: [WildStacker] ******** ENABLE START ********
[01:01:28] [Server thread/INFO]: [WildStacker] Loading configuration started...
[01:01:28] [Server thread/INFO]: [WildStacker]  - Stacking drops is enabled
[01:01:28] [Server thread/INFO]: [WildStacker]  - Stacking entities is enabled
[01:01:28] [Server thread/INFO]: [WildStacker]  - Stacking spawners is disabled
[01:01:28] [Server thread/INFO]: [WildStacker]  - Stacking barrels is enabled
[01:01:28] [Server thread/INFO]: [WildStacker] Loading configuration done (Took 24ms)
[01:01:28] [Server thread/INFO]: [WildStacker] Loading loot-tables started...
[01:01:28] [Server thread/INFO]: [WildStacker] [warden.json] Couldn't load item with an invalid material SCULK_CATALYST.
[01:01:28] [Server thread/INFO]: [WildStacker] [magma_cube.json] Couldn't load item with an invalid material PEARLESCENT_FROGLIGHT.
[01:01:28] [Server thread/INFO]: [WildStacker] [magma_cube.json] Couldn't load item with an invalid material VERDANT_FROGLIGHT.
[01:01:28] [Server thread/INFO]: [WildStacker] [magma_cube.json] Couldn't load item with an invalid material OCHRE_FROGLIGHT.
[01:01:28] [Server thread/INFO]: [WildStacker] Loading loot-tables done (Took 18ms)
[01:01:28] [Server thread/INFO]: [WildStacker] Loading messages started...
[01:01:28] [Server thread/INFO]: [WildStacker]  - Found 69 messages in lang.yml.
[01:01:28] [Server thread/INFO]: [WildStacker] Loading messages done (Took 1ms)
[01:01:28] [Server thread/INFO]: [WildStacker] ******** ENABLE DONE ********
[01:01:28] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[01:01:28] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[01:01: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.
[01:01:29] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[01:01:29] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[01:01:29] [Server thread/INFO]: [WorldGuard] (SuperiorSpawn) TNT ignition is PERMITTED.
[01:01:29] [Server thread/INFO]: [WorldGuard] (SuperiorSpawn) Lighters are PERMITTED.
[01:01:29] [Server thread/INFO]: [WorldGuard] (SuperiorSpawn) Lava fire is PERMITTED.
[01:01:29] [Server thread/INFO]: [WorldGuard] (SuperiorSpawn) Fire spread is UNRESTRICTED.
[01:01:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorSpawn'
[01:01:29] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[01:01:29] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[01:01:29] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[01:01:29] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[01:01:29] [Server thread/INFO]: [WorldGuard] (SuperiorEvents) TNT ignition is PERMITTED.
[01:01:29] [Server thread/INFO]: [WorldGuard] (SuperiorEvents) Lighters are PERMITTED.
[01:01:29] [Server thread/INFO]: [WorldGuard] (SuperiorEvents) Lava fire is PERMITTED.
[01:01:29] [Server thread/INFO]: [WorldGuard] (SuperiorEvents) Fire spread is UNRESTRICTED.
[01:01:29] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SuperiorEvents'
[01:01:29] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[01:01:29] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[01:01:29] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[01:01:29] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[01:01:29] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[01:01:29] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[01:01:29] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[01:01:29] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.2
[01:01:29] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[01:01:29] [Server thread/INFO]: [Shopkeepers] Loading the data of 2 shopkeepers ...
[01:01:29] [Server thread/INFO]: [CWR] Enabling CyberWorldReset v1.4.5
[01:01:29] [Server thread/INFO]: [CWR] ―――――――――――――――――――――――――――――――――――――――――――――――
[01:01:29] [Server thread/INFO]: [CWR] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╭╮╭╮╱╱╱╱╭╮╱╱╭┳━━━╮╱╱╱╱╱╱╱╱╭╮
[01:01:29] [Server thread/INFO]: [CWR] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃┃┃┃┃╱╱╱╱┃┃╱╱┃┃╭━╮┃╱╱╱╱╱╱╱╭╯╰╮
[01:01:29] [Server thread/INFO]: [CWR] ┃┃╰╋╮╭┫╰━┳━━┳━┫┃┃┃┃┣━━┳━┫┃╭━╯┃╰━╯┣━━┳━━┳━┻╮╭╯
[01:01:29] [Server thread/INFO]: [CWR] ┃┃╭┫┃┃┃╭╮┃┃━┫╭┫╰╯╰╯┃╭╮┃╭┫┃┃╭╮┃╭╮╭┫┃━┫━━┫┃━┫┃
[01:01:29] [Server thread/INFO]: [CWR] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃╰╮╭╮╭┫╰╯┃┃┃╰┫╰╯┃┃┃╰┫┃━╋━━┃┃━┫╰╮
[01:01:29] [Server thread/INFO]: [CWR] ╰━━━┻━╮╭┻━━┻━━┻╯╰╯╰╯╰━━┻╯╰━┻━━┻╯╰━┻━━┻━━┻━━┻━╯
[01:01:29] [Server thread/INFO]: [CWR] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast, Faln
[01:01:29] [Server thread/INFO]: [CWR] ╱╱╱╱╰━━╯  Version: 1.4.5 [Premium]
[01:01:29] [Server thread/INFO]: [CWR] ―――――――――――――――――――――――――――――――――――――――――――――――
[01:01:29] [Server thread/INFO]: [CWR] 
[01:01:29] [Server thread/INFO]: [CWR] Loading YAML files...
[01:01:29] [Server thread/INFO]: [CWR] Loaded file config.yml.
[01:01:29] [Server thread/INFO]: [CWR] Loaded file lang.yml.
[01:01:29] [Server thread/INFO]: [CWR] Loaded file worlds.yml.
[01:01:29] [Server thread/INFO]: [CWR] Loaded file webhooks.yml.
[01:01:29] [Server thread/INFO]: [CWR] Loaded file plugin-data.yml.
[01:01:29] [Server thread/INFO]: [CWR] Loaded 5 files in 31ms.
[01:01:29] [Server thread/INFO]: [CWR] 
[01:01:29] [Server thread/INFO]: [CWR] Loading world configurations...
[01:01:29] [Server thread/INFO]: [CWR] The world 'default_world_name' is not an existing world! Disabling this world.
[01:01:29] [Server thread/INFO]: [CWR] The world 'example_world_name' is not an existing world! Disabling this world.
[01:01:29] [Server thread/INFO]: [CWR] Loaded world 'previewis_the_end'.
[01:01:29] [Server thread/INFO]: [CWR] Loaded 1 worlds in 8ms.
[01:01:29] [Server thread/INFO]: [CWR] 
[01:01:29] [Server thread/INFO]: [CWR] Loading events...
[01:01:29] [Server thread/INFO]: [CWR] Loaded events in 3ms.
[01:01:29] [Server thread/INFO]: [CWR] 
[01:01:29] [Server thread/INFO]: [CWR] CWR recognizes Multiverse is ENABLED.
[01:01:29] [Server thread/INFO]: [CWR] 
[01:01:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cwr [1.4.5]
[01:01:29] [Server thread/INFO]: [CWR] Loaded CWR v1.4.5 in 76ms.
[01:01:29] [Server thread/INFO]: [CWR] ―――――――――――――――――――――――――――――――――――――――――――――――
[01:01:29] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.18.1
[01:01:29] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[01:01:30] [Server thread/INFO]: [PlayerWarps] Found 20 config files to load!
[01:01:31] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[01:01:31] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[01:01:31] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[01:01:31] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[01:01:31] [Server thread/INFO]: [PlayerWarps] MySQL database is enabling...
[01:01:31] [ForkJoinPool.commonPool-worker-2/INFO]: [PlayerWarps] Found SuperiorSkyBlock Addon integrating support...
[01:01:31] [Server thread/INFO]: [CrateReloaded] Enabling CrateReloaded v2.0.26
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]: java.lang.NoSuchFieldError: warpNameReplacement
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at com.olziedev.playerwarps.superiorskyblock.SuperiorSkyBlockAddon.load(SuperiorSkyBlockAddon.java:60)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at PlayerWarps 6.18.1.jar//com.olziedev.playerwarps.h.h.b(ExpansionManager.java:193)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at PlayerWarps 6.18.1.jar//com.olziedev.playerwarps.h.h.c(ExpansionManager.java:255)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at PlayerWarps 6.18.1.jar//com.olziedev.playerwarps.h.h.b(ExpansionManager.java:253)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.HashMap.forEach(HashMap.java:1421)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at PlayerWarps 6.18.1.jar//com.olziedev.playerwarps.h.h.b(ExpansionManager.java:253)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:863)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:841)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.concurrent.CompletableFuture$Completion.exec(CompletableFuture.java:483)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
[01:01:31] [ForkJoinPool.commonPool-worker-2/WARN]:     at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
[01:01:31] [Server thread/INFO]: [CrateReloaded] Config Version: 2.X
[01:01:31] [Server thread/INFO]: [CrateReloaded] v1_18_R2
[01:01:31] [Server thread/WARN]: [CrateReloaded] Config is missing a key, hologram-plugin (Default Value: HolographicDisplays).
[01:01:31] [Server thread/INFO]: [CrateReloaded] Hologram Provider: HolographicDisplays
[01:01:31] [Server thread/INFO]: [CrateReloaded] Crate Configurations (7): missioni_facili.yml missioni_medie.yml guerriero.yml scudiero.yml missioni_difficili.yml vote.yml supervote.yml 
[01:01:32] [ForkJoinPool.commonPool-worker-2/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[01:01:32] [Server thread/INFO]: [SCore] Enabling SCore v3.9.12
[01:01:32] [Server thread/INFO]: ================ SCore ================
[01:01:32] [Server thread/INFO]: SCore Version of the server git-Pufferfish-72 (MC: 1.18.2) !
[01:01:32] [Server thread/INFO]: SCore ExecutableItems hooked !
[01:01:32] [Server thread/INFO]: SCore PlaceholderAPI hooked !
[01:01:32] [Server thread/INFO]: SCore WorldGuard hooked !
[01:01:32] [Server thread/INFO]: SCore Vault hooked !
[01:01:32] [Server thread/INFO]: SCore SuperiorSkyblock2 hooked !
[01:01:32] [Server thread/INFO]: SCore Multiverse-Core hooked !
[01:01:32] [Server thread/INFO]: SCore CoreProtect hooked !
[01:01:32] [Server thread/INFO]: SCore ProtocolLib hooked !
[01:01:32] [Server thread/INFO]: SCore HeadDatabase hooked !
[01:01:32] [Server thread/INFO]: SCore DecentHolograms hooked !
[01:01:32] [Server thread/INFO]: SCore HolographicDisplays hooked !
[01:01:32] [Server thread/INFO]: SCore AureliumSkills hooked !
[01:01:32] [Server thread/INFO]: SCore ShopGUIPlus hooked !
[01:01:32] [Server thread/INFO]: SCore Locale setup: EN
[01:01:32] [Server thread/INFO]: SCore Language setup on EN
[01:01:32] [Server thread/INFO]: SCore onnection to the db...
[01:01:32] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[01:01:32] [Server thread/INFO]: SCore Creating table Commands if not exists...
[01:01:32] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[01:01:32] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[01:01:32] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[01:01:32] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[01:01:32] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[01:01:32] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[01:01:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore [1.0.0]
[01:01:32] [Server thread/INFO]: ================ SCore ================
[01:01:32] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.3.2
[01:01:32] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[01:01:32] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[01:01:32] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[01:01:32] [Server thread/INFO]: [CustomCrafting]     Version    | v4.16.3.2
[01:01:32] [Server thread/INFO]: [CustomCrafting]     WolfyUtils | v4.16.9.4
[01:01:32] [Server thread/INFO]: [CustomCrafting]     Bukkit     | git-Pufferfish-72 (MC: 1.18.2)(API: 1.18.2-R0.1-SNAPSHOT)
[01:01:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[01:01:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R2' loaded!
[01:01:32] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[01:01:32] [Server thread/INFO]: [CustomCrafting] 
[01:01:32] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[01:01:32] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Apprehentice, Junye Zhou, PwassonDoDouce, Mr_Mint_
[01:01:32] [Server thread/INFO]: [CustomCrafting] Mithran, Isabel Maskrey, Spunkerz, Teddy
[01:01:32] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[01:01:32] [Thread-35/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.wolfyscript.lib.nbt.nbtapi' seems to be outdated!
[01:01:32] [Thread-35/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.2'
[01:01:32] [Thread-35/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[01:01:32] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[01:01:32] [Server thread/INFO]: [CustomCrafting] Loaded active language "it_IT" v6.1.0 translated by WolfyScript
[01:01:32] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[01:01:32] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[01:01:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: customcrafting [4.16.3.2]
[01:01:32] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[01:01:32] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[01:01:32] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[01:01:33] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[01:01:33] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20.1_BUILDinternal
[01:01:33] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[01:01:33] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_18_R2.
[01:01:33] [CC-update-check/WARN]: [CustomCrafting] Your version is outdated! There is a new version available! Download it here: https://www.spigotmc.org/resources/55883/
[01:01:33] [Server thread/INFO]: [BeautyQuests] Loaded language it_IT (0.012s)!
[01:01:33] [Server thread/INFO]: [BeautyQuests] Loaded vanilla translation file for language: Italiano. Sorting values.
[01:01:33] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0
[01:01:33] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR
[01:01:33] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT
[01:01:33] [Server thread/INFO]: [fr.skytasul.quests.utils.hikari.HikariDataSource] BeautyQuests-SQL-pool - Starting...
[01:01:33] [Server thread/INFO]: [fr.skytasul.quests.utils.hikari.HikariDataSource] BeautyQuests-SQL-pool - Start completed.
[01:01:33] [Server thread/INFO]: [BeautyQuests] Connection to database etablished.
[01:01:33] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler
[01:01:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20.1_BUILDinternal]
[01:01:33] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[01:01:33] [Server thread/WARN]: [BeautyQuests] BQDecentHolograms will replace BQHolographicDisplays3 as the new holograms manager.
[01:01:33] [Server thread/WARN]: [BeautyQuests] Unknown plugin version, cannot check for updates.
[01:01:33] [Server thread/INFO]: [BeautyQuests Expansion] Enabling BeautyQuests-Expansion v1.2.2
[01:01:33] [Server thread/INFO]: [BeautyQuests Expansion] ------- BeautyQuests Expansion -------
[01:01:33] [Server thread/INFO]: [BeautyQuests Expansion] Thank you for purchasing the expansion!
[01:01:33] [Server thread/WARN]: [BeautyQuests Expansion] Cannot parse BeautyQuests version.
[01:01:33] [Server thread/INFO]: [BeautyQuests Expansion] Loaded language en_US (0.003s)!
[01:01:33] [Server thread/INFO]: [BeautyQuests Expansion] Registered Rankup quest points requirements.
[01:01:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests-expansion-points [1.2.2]
[01:01:33] [Server thread/INFO]: [BeautyQuests Expansion] 4 expanded features have been loaded.
[01:01:33] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v5.9.12
[01:01:33] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[01:01:33] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
[01:01:33] [Server thread/INFO]: ExecutableItems HeadDatabase hooked !
[01:01:33] [Server thread/INFO]: ExecutableItems WildStacker hooked !
[01:01:33] [Server thread/INFO]: ExecutableItems CustomCrafting hooked !
[01:01:34] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[01:01:34] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.80.1
[01:01:35] [Server thread/INFO]: [JetsMinions] Enabling JetsMinions v7.6.17
[01:01:35] [Server thread/INFO]: [JetsMinions] Initialising Plugin v7.6.17...
[01:01:35] [Server thread/INFO]: [JetsMinions] hooks.yml found, loading!
[01:01:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jetsminions [1.0.0]
[01:01:35] [Server thread/INFO]: [JetsMinions] skins.yml found, loading!
[01:01:35] [Server thread/INFO]: [JetsMinions] config.yml found, loading!
[01:01:35] [Server thread/INFO]: [JetsMinions] messages.yml found, loading!
[01:01:35] [Server thread/INFO]: [JetsMinions] controlpanel.yml found, loading!
[01:01:35] [Server thread/INFO]: [JetsMinions] players.yml found, loading!
[01:01:35] [Server thread/INFO]: [JetsMinions] store.yml found, loading!
[01:01:35] [Server thread/INFO]: [JetsMinions] Loaded Minion: Miner Made by Jet315
[01:01:35] [Server thread/INFO]: [JetsMinions] Loaded Minion: Slayer Made by Jet315
[01:01:35] [Server thread/INFO]: [JetsMinions] Loaded Minion: Collector Made by Jet315
[01:01:35] [Server thread/INFO]: [JetsMinions] Loaded Minion: Feeder Made by Jet315
[01:01:35] [Server thread/INFO]: [JetsMinions] Loaded Minion: Lumberjack Made by Jet315
[01:01:35] [Server thread/INFO]: [JetsMinions] Loaded Minion: Farmer Made by Jet315
[01:01:35] [Server thread/INFO]: [JetsMinions] Loaded Minion: Fisher Made by Jet315
[01:01:35] [Server thread/INFO]: [JetsMinions] Loaded Minion: Seller Made by Jet315
[01:01:35] [Server thread/INFO]: [JetsMinions] [STDOUT] [JetsMinions] Loaded 10/10 Minions
[01:01:35] [Server thread/WARN]: Nag author(s): '[Jet315]' of 'JetsMinions' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[01:01:35] [Server thread/INFO]: [JetsMinions] Initialising Complete in 163ms
[01:01:35] [Server thread/INFO]: [ShopGUIPlusMineableSpawnersBridge] Enabling ShopGUIPlusMineableSpawnersBridge v1.1.0
[01:01:35] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for MineableSpawners.
[01:01:36] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[01:01:36] [Server thread/INFO]: Running delayed init tasks
[01:01:36] [Craft Scheduler Thread - 5 - InventoryRollbackPlus/INFO]: [SkyblockRollback] Checking for updates...
[01:01:36] [Craft Scheduler Thread - 21 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[01:01:36] [Craft Scheduler Thread - 11 - Essentials/INFO]: [Essentials] Caricamento delle informazione sulla versione...
[01:01:36] [Craft Scheduler Thread - 16 - Plan/INFO]: [Plan] Storing sessions that were preserved before previous shutdown.
[01:01:36] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[01:01:36] [Craft Scheduler Thread - 32 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[01:01:36] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[01:01:36] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[01:01:36] [Craft Scheduler Thread - 5 - InventoryRollbackPlus/INFO]: 
===============================================================================
A minor update to InventoryRollbackPlus is available!
Download at https://www.spigotmc.org/resources/inventoryrollbackplus-1-8-1-16-x.85811/
(current: 1.6.8, latest: 1.6.9)
===============================================================================

[01:01:36] [Craft Scheduler Thread - 13 - Pl-Hide-Pro/INFO]: Pl-Hide-Pro Update available: 2.6.9! You are on 2.6.3!
[01:01:36] [Craft Scheduler Thread - 12 - ChatItem/INFO]: [ChatItem] Nuova versione di ChatItem disponibile. Clicca per scaricarla.
[01:01:36] [Craft Scheduler Thread - 27 - AureliumSkills/INFO]: [AureliumSkills] New update available! You are on version Beta 1.3.12, latest version is Beta 1.3.17
[01:01:36] [Craft Scheduler Thread - 27 - AureliumSkills/INFO]: [AureliumSkills] Download it on Spigot:
[01:01:36] [Craft Scheduler Thread - 27 - AureliumSkills/INFO]: [AureliumSkills] https://spigotmc.org/resources/81069
[01:01:36] [Craft Scheduler Thread - 40 - Vault/INFO]: [Vault] Checking for Updates ... 
[01:01:36] [Craft Scheduler Thread - 40 - Vault/INFO]: [Vault] No new version available
[01:01:36] [Craft Scheduler Thread - 22 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[01:01:36] [Craft Scheduler Thread - 21 - DecentHolograms/INFO]: [DecentHolograms] Loaded 5 holograms!
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 14.2.9
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[01:01:36] [Craft Scheduler Thread - 10 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[01:01:36] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.18.2 (758)
[01:01:36] [Craft Scheduler Thread - 4 - Plan/INFO]: [Plan] ----------------------------------------
[01:01:36] [Craft Scheduler Thread - 4 - Plan/INFO]: [Plan] Nuova versione (5.5.2272) è disponibile https://github.com/plan-player-analytics/Plan/releases
[01:01:36] [Craft Scheduler Thread - 4 - Plan/INFO]: [Plan] ----------------------------------------
[01:01:36] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[01:01:36] [User Authenticator #1/INFO]: UUID of player Mastini is 29aa29c1-815d-44f0-8d4f-8688e6ae184a
[01:01:36] [User Authenticator #2/INFO]: UUID of player _Gammah is 1f5a0dd7-72fc-47bc-b5d7-4638bc255211
[01:01:36] [User Authenticator #3/INFO]: UUID of player MrWild_ is 90293c66-1dba-42df-8f83-0aeae0bc52cd
[01:01:36] [Craft Scheduler Thread - 18 - ajParkour/INFO]: [ajParkour] You are up to date! (2.12.10)
[01:01:36] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Essentials for Vault's Economy API
[01:01:36] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LuckPerms for Vault's Chat API
[01:01:36] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[01:01:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plan [5.5 build 2172]
[01:01:36] [Server thread/INFO]: [SuperiorSkyblock2] Using WildStacker as a stacked-blocks provider.
[01:01:36] [Server thread/INFO]: [SuperiorSkyblock2] Using LuckPerms as a permissions provider.
[01:01:36] [Server thread/INFO]: [SuperiorSkyblock2] Using ShopGUIPlus as a prices provider.
[01:01:36] [Server thread/WARN]: [SuperiorSkyblock2] Loaded class de.myzelyam.api.vanish.PlayerVanishStateChangeEvent from PremiumVanish v2.8.0 which is not a depend or softdepend of this plugin.
[01:01:36] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into SuperVanish for support of vanish status of players.
[01:01:36] [Craft Scheduler Thread - 17 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 51600 heads!
[01:01:36] [Server thread/INFO]: [SuperiorSkyblock2] Hooked into Essentials for support of afk status of players.
[01:01:36] [Server thread/INFO]: [SuperiorSkyblock2] Using Vault as an economy provider.
[01:01:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superior [2022.9-b977]
[01:01:36] [Server thread/INFO]: [SuperiorSkyblock2] Using PlaceholderAPI for placeholders support.
[01:01:36] [Server thread/INFO]: [SuperiorSkyblock2] Detected PaperSpigot - Using async chunk-loading support with PaperMC.
[01:01:36] [Server thread/INFO]: [WildStacker] Loading providers started...
[01:01:36] [Server thread/INFO]: [WildStacker]  - Using MineableSpawners as SpawnersProvider.
[01:01:36] [Server thread/INFO]: [WildStacker] Using Vault as an economy provider.
[01:01:36] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for WildStacker.
[01:01:36] [Server thread/INFO]: [WildStacker] Found ShopGUIPlus - Hooked as SpawnerProvider!
[01:01:36] [Server thread/INFO]: [WildStacker] 
[01:01:36] [Server thread/INFO]: [WildStacker] Detected FastAsyncWorldEdit - Disabling ticks limiter for items...
[01:01:36] [Server thread/INFO]: [WildStacker] Loading providers done (Took 85ms)
[01:01:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[01:01:36] [Craft Scheduler Thread - 17 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[01:01:37] [Craft Scheduler Thread - 36 - PlayerWarps/INFO]: [PlayerWarps] Warp» PlayerWarps v6.20.0 is out! You are still running v6.18.1!
[01:01:37] [Server thread/INFO]: [Citizens] Loaded 34 NPCs.
[01:01:37] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[01:01:37] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[01:01:37] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2023/03/23 01:01:26 
[01:01:37] [Server thread/INFO]: [WildStacker] Starting to load entities...
[01:01:37] [Server thread/INFO]: [WildStacker] Loading entities done! Took 1 ms.
[01:01:37] [Server thread/INFO]: [WildStacker] Starting to load items...
[01:01:37] [Server thread/INFO]: [WildStacker] Loading items done! Took 0 ms.
[01:01:37] [Server thread/INFO]: [WildStacker] Starting to load spawners...
[01:01:37] [Server thread/INFO]: [WildStacker] Loading spawners done! Took 1 ms.
[01:01:37] [Server thread/INFO]: [WildStacker] Starting to load barrels...
[01:01:37] [Server thread/INFO]: [WildStacker] Loading barrels done! Took 7 ms.
[01:01:37] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 4.6.1, you're on: 4.5.1
[01:01:37] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.3) is available at:
[01:01:37] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[01:01:37] [Server thread/INFO]: [HolographicDisplays] Found a new version available: v3.0.1
[01:01:37] [Server thread/INFO]: [HolographicDisplays] Download it on Bukkit Dev:
[01:01:37] [Server thread/INFO]: [HolographicDisplays] https://dev.bukkit.org/projects/holographic-displays
[01:01:37] [Server thread/INFO]: [PremiumVanish] Your current version of PremiumVanish is outdated - New version: '2.8.4'; Currently: '2.8.0'
[01:01:37] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[01:01:37] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[01:01:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse [3.2.3]
[01:01:37] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[01:01:37] [Server thread/INFO]: [JetsMinions] skins.yml found, loading!
[01:01:37] [Server thread/INFO]: [JetsMinions] config.yml found, loading!
[01:01:37] [Server thread/INFO]: [JetsMinions] messages.yml found, loading!
[01:01:37] [Server thread/INFO]: [JetsMinions] hooks.yml found, loading!
[01:01:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jetsminions [1.0.0]
[01:01:37] [Server thread/INFO]: [JetsMinions] controlpanel.yml found, loading!
[01:01:37] [Server thread/INFO]: [JetsMinions] store.yml found, loading!
[01:01:37] [Server thread/INFO]: Done (61.431s)! For help, type "help"
[01:01:37] [Server thread/INFO]: Timings Reset
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Attempt on registering the hologram type.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Hologram type hooked as: HolographicDisplays
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Attempt on registering the bank type.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Path was set correctly and bank type selected is: SuperiorSkyblock2 attempting to hook now.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Attempt on registering the tnt bank type.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] TNT Bank type is invalid, no bank will be used at this point and all bank features will be disabled.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Attempting to load player datas.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Emptied storages and loaded to stats a size of: 0 player data
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: Kiri have been removed.
[01:01:37] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:37] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: _Gammah have been removed.
[01:01:37] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:37] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: Saretta19 have been removed.
[01:01:37] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:37] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:37] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: Ex56kb1 have been removed.
[01:01:38] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:38] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: _MoSt3r_ have been removed.
[01:01:38] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:38] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: MrWild_ have been removed.
[01:01:38] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:38] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: oivalf09 have been removed.
[01:01:38] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:38] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: OhNatrium_ have been removed.
[01:01:38] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:38] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: Shouzed have been removed.
[01:01:38] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:38] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:38] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: meryytel have been removed.
[01:01:39] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:39] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: InSpring have been removed.
[01:01:39] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:39] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: BisligLebronsky have been removed.
[01:01:39] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:39] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: blackdevil_202_ have been removed.
[01:01:39] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:39] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] Load Data: Data for: 32edoardo have been removed.
[01:01:39] [Server thread/INFO]: Player owned: 0 voidchests.
[01:01:39] [Server thread/INFO]: Booster: 1.0, No active booster
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] Starting a hook attempt for economy...
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] Path was set correctly and economy selected is: Vault, VaultEconomy{name=Vault, version=?} attempting to hook now.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] Starting a hook attempt for sell mode...
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/WARN]: [VoidChest-1.8.8.3] Loaded class net.brcdev.shopgui.ShopGuiPlugin from ShopGUIPlus v1.80.1 which is not a depend or softdepend of this plugin.
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] Event details: VoidChestShopGUIPlusEconomy{name=ShopGUIPlus, version=1.80.1}
[01:01:39] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:39] [Server thread/INFO]: [BeautyQuests] 64 quests loaded (0.15s)!
[01:01:39] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 3971
[01:01:39] [Server thread/INFO]: [WolfyUtilities] Dependencies Loaded. Calling DependenciesLoadedEvent!
[01:01:39] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[01:01:39] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[01:01:39] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[01:01:39] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[01:01:39] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[01:01:39] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[01:01:40] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 68 recipes; Skipped: 0 error/s, 0 already existing
[01:01:40] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[01:01:40] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 13 recipes; Skipped: 0 error/s, 25 already existing
[01:01:40] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 81 recipes
[01:01:40] [Server thread/INFO]: [CustomCrafting] 
[01:01:40] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[01:01:40] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[01:01:40] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[01:01:40] [Server thread/INFO]: [Drop2Inventory] You are using the latest version of Drop2Inventory.
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[01:01:40] [Server thread/WARN]: [PlaceholderAPI] Loaded class io.minimum.minecraft.superbvote.SuperbVote from SuperbVote v0.5.5 which is not a depend or softdepend of this plugin.
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superbvote [1.3.1]
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ascii [1.0.0]
[01:01:40] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.62 which is not a depend or softdepend of this plugin.
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: servertime [1.0]
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: healthbar [0.6]
[01:01:40] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[01:01:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[01:01:40] [Server thread/INFO]: 10 placeholder hook(s) registered! 4 placeholder hook(s) have an update available.
[01:01:40] [Server thread/INFO]: com.mojang.authlib.GameProfile@7d863449[id=29aa29c1-815d-44f0-8d4f-8688e6ae184a,name=Mastini,properties={textures=[com.mojang.authlib.properties.Property@1fd7adb7]},legacy=false] (/2.224.169.216:54556) lost connection: Disconnected
[01:01:40] [Server thread/INFO]: com.mojang.authlib.GameProfile@75418ebf[id=1f5a0dd7-72fc-47bc-b5d7-4638bc255211,name=_Gammah,properties={textures=[com.mojang.authlib.properties.Property@65bc14fd]},legacy=false] (/37.179.239.157:36068) lost connection: Disconnected
[01:01:40] [Server thread/INFO]: com.mojang.authlib.GameProfile@4c60b699[id=90293c66-1dba-42df-8f83-0aeae0bc52cd,name=MrWild_,properties={textures=[com.mojang.authlib.properties.Property@5c58d021]},legacy=false] (/151.81.102.162:36468) lost connection: Disconnected
[01:01:40] [Server thread/WARN]: [Shopkeepers] Shopkeeper 2: There is no Citizens NPC with unique id c2fdbe8b-b9e3-44ad-902e-088392ac948a
[01:01:40] [Server thread/WARN]: [Shopkeepers] Found 1 invalid Citizen shopkeepers! Either enable the setting 'delete-invalid-citizen-shopkeepers' inside the config, or use the command '/shopkeepers cleanupCitizenShopkeepers' to automatically delete these shopkeepers and get rid of these warnings.
[01:01:42] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5850ms or 117 ticks behind
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.80.1 ]================================
[01:01:43] [Server thread/INFO]: [ShopGUIPlus]  
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Exp economy registered.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Exp economy enabled.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for HeadDatabase.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ExecutableItems.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Using MineableSpawners for spawners support.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded 26 main menu items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 33 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 60 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decoration' with 102 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 27 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 102 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 58 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'voidchest' with 19 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'xpbottles' with 17 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'heads' with 305 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'banners' with 143 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 59 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mobegg' with 33 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded 12 shops with total of 958 items.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[01:01:43] [Server thread/INFO]: [ShopGUIPlus]  
[01:01:43] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[01:01:46] [Server thread/INFO]: [VoidChest-1.8.8.3] Plugin loaded in 49.111 seconds
[01:01:46] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:51] [ForkJoinPool.commonPool-worker-18/INFO]:  
[01:01:51] [ForkJoinPool.commonPool-worker-18/INFO]:  
[01:01:51] [ForkJoinPool.commonPool-worker-18/INFO]:      Debugging... [VoidChest-1.8.8.3]
[01:01:51] [ForkJoinPool.commonPool-worker-18/INFO]: An update is available! VoidChest 1.10.2 may be downloaded on SpigotMC or MC-Market (depending where you've bought it from)
[01:01:51] [ForkJoinPool.commonPool-worker-18/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:01:51] [ForkJoinPool.commonPool-worker-18/INFO]:  
[01:01:51] [ForkJoinPool.commonPool-worker-18/INFO]:  
[01:02:00] [User Authenticator #3/INFO]: UUID of player SpadaccinoNero7 is dd4ca3ca-34cf-4435-9cf5-995267257479
[01:02:00] [User Authenticator #3/INFO]: UUID of player Cassiele0705 is 3b5e51e9-875e-415a-9fd6-a5197d7661c8
[01:02:00] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: SpadaccinoNero7 have been removed.
[01:02:00] [Server thread/INFO]: Player owned: 0 voidchests.
[01:02:00] [Server thread/INFO]: Booster: 1.0, No active booster
[01:02:00] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:02:00] [Server thread/INFO]: SpadaccinoNero7[/82.62.225.40:50890] logged in with entity id 3456 at ([SuperiorSpawn]259.41351424408685, 101.9867547589893, -419.3498859257559)
[01:02:00] [Server thread/INFO]: [+] SpadaccinoNero7
[01:02:00] [Server thread/INFO]: Cassiele0705[/93.43.226.170:50896] logged in with entity id 3457 at ([SuperiorWorld]12025.421030833175, -57.0, 11955.591725120925)
[01:02:01] [Server thread/INFO]: [+] Cassiele0705
[01:02:01] [Server thread/WARN]: [VoidChest-1.8.8.3] Loaded class com.bgsoftware.wildstacker.api.WildStackerAPI from WildStacker v2022.6-b415 which is not a depend or softdepend of this plugin.
[01:02:02] [Server thread/WARN]: [VoidChest-1.8.8.3] Loaded class com.bgsoftware.superiorskyblock.api.SuperiorSkyblockAPI from SuperiorSkyblock2 v2022.9-b977 which is not a depend or softdepend of this plugin.
[01:02:08] [Server thread/INFO]: SpadaccinoNero7 issued server command: /gamemode creative
[01:02:16] [User Authenticator #3/INFO]: UUID of player kapp4801 is f357a5b5-7fdc-4f47-bbff-a6708794ea4e
[01:02:16] [Server thread/INFO]: kapp4801[/2.39.15.58:46322] logged in with entity id 3693 at ([SuperiorWorld]-10869.135113556335, 105.0, 8332.798992025853)
[01:02:16] [Server thread/INFO]: [+] kapp4801
[01:02:16] [AJLBFETCH-2-981/WARN]: [ajLeaderboards] Placeholder %beautyquests-expansion-points_player% for player kapp4801 threw an error:
java.lang.NullPointerException: Cannot invoke "fr.skytasul.quests.players.PlayerAccount.getData(fr.skytasul.quests.api.data.SavableData)" because "<parameter1>" is null
    at fr.skytasul.quests.expansion.points.QuestPointsManager.getPoints(QuestPointsManager.java:83) ~[beautyquests-expansion-1.2.2.jar:?]
    at fr.skytasul.quests.expansion.points.QuestPointsPlaceholders.onRequest(QuestPointsPlaceholders.java:63) ~[beautyquests-expansion-1.2.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updateStat(Cache.java:418) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updatePlayerStats(Cache.java:382) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.LeaderboardPlugin.lambda$reloadInterval$8(LeaderboardPlugin.java:355) ~[ajLeaderboards-2.6.8.jar:?]
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) ~[?:?]
    at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[netty-all-4.1.68.Final.jar:4.1.68.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[01:02:26] [Async Chat Thread - #0/INFO]: [Lv.13] kapp4801 » bellah
[01:02:34] [User Authenticator #3/INFO]: UUID of player Saretta19 is 1e72b0c5-e645-4837-ade4-9957f52b56b2
[01:02:34] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: Saretta19 have been removed.
[01:02:34] [Server thread/INFO]: Player owned: 0 voidchests.
[01:02:34] [Server thread/INFO]: Booster: 1.0, No active booster
[01:02:34] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:02:34] [Server thread/INFO]: Saretta19[/151.77.187.92:51776] logged in with entity id 3943 at ([SuperiorWorld]12029.747178711896, -56.125, 11965.768137314375)
[01:02:34] [Server thread/INFO]: [+] Saretta19
[01:02:36] [User Authenticator #3/INFO]: UUID of player OhNatrium_ is 847ab9e3-95b3-395b-a705-65c0c4ba96a0
[01:02:36] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: OhNatrium_ have been removed.
[01:02:36] [Server thread/INFO]: Player owned: 0 voidchests.
[01:02:36] [Server thread/INFO]: Booster: 1.0, No active booster
[01:02:36] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:02:36] [Server thread/INFO]: OhNatrium_[/151.32.58.96:51778] logged in with entity id 3955 at ([SuperiorSpawn]97.56633436454631, 100.0, -497.03651244043334)
[01:02:36] [Server thread/INFO]: [+] OhNatrium_
[01:02:37] [Async Chat Thread - #0/INFO]: [Lv.13] kapp4801 » che è successo?
[01:02:40] [User Authenticator #3/INFO]: UUID of player _Gammah is 1f5a0dd7-72fc-47bc-b5d7-4638bc255211
[01:02:40] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: _Gammah have been removed.
[01:02:40] [Server thread/INFO]: Player owned: 0 voidchests.
[01:02:40] [Server thread/INFO]: Booster: 1.0, No active booster
[01:02:40] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:02:40] [Server thread/INFO]: _Gammah[/37.179.239.157:51784] logged in with entity id 4007 at ([SuperiorWorld]12027.992753859076, -51.88188050963166, 11970.81223407874)
[01:02:40] [Server thread/INFO]: [+] _Gammah
[01:02:53] [Server thread/INFO]: _Gammah issued server command: /vote
[01:03:00] [Server thread/INFO]: SpadaccinoNero7 issued server command: /npc create &6#1 &3%superior_island_top_worth_1_name_leader%&8 - &f%superior_island_top_worth_value_format_1%
[01:03:07] [User Authenticator #6/INFO]: UUID of player UomoNutria is 0533d912-5f0c-4016-9a5b-f58a4a1e377d
[01:03:07] [User Authenticator #3/INFO]: UUID of player Shouzed is b0ff5abd-6e6d-46d6-83cf-575e12c4aa57
[01:03:07] [User Authenticator #4/INFO]: UUID of player oivalf09 is 36310f5c-5c3a-3e97-b285-49f3c4ef2f67
[01:03:07] [User Authenticator #5/INFO]: UUID of player BisligLebronsky is 81ae8e8a-f186-49af-84ea-ce4786dae872
[01:03:07] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: Shouzed have been removed.
[01:03:07] [Server thread/INFO]: Player owned: 0 voidchests.
[01:03:07] [Server thread/INFO]: Booster: 1.0, No active booster
[01:03:07] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:03:07] [Server thread/INFO]: Shouzed[/93.44.193.216:55408] logged in with entity id 4275 at ([SuperiorWorld]12031.546921926742, -56.125, 11965.206221228373)
[01:03:07] [Server thread/INFO]: [+] Shouzed
[01:03:07] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: oivalf09 have been removed.
[01:03:07] [Server thread/INFO]: Player owned: 0 voidchests.
[01:03:07] [Server thread/INFO]: Booster: 1.0, No active booster
[01:03:07] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:03:07] [Server thread/INFO]: oivalf09[/101.56.98.52:55424] logged in with entity id 4278 at ([SuperiorWorld]-2993.699999988079, -32.0, -4230.300000011921)
[01:03:07] [Server thread/INFO]: [+] oivalf09
[01:03:07] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: BisligLebronsky have been removed.
[01:03:07] [Server thread/INFO]: Player owned: 0 voidchests.
[01:03:07] [Server thread/INFO]: Booster: 1.0, No active booster
[01:03:07] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:03:07] [Server thread/INFO]: BisligLebronsky[/95.246.16.87:55438] logged in with entity id 4285 at ([SuperiorWorld]-10203.312363150511, 105.0, 6605.699999988079)
[01:03:07] [Server thread/INFO]: UomoNutria[/213.45.114.136:55454] logged in with entity id 4380 at ([SuperiorWorld]8376.5, 6.5, 5400.5)
[01:03:07] [Server thread/INFO]: [+] BisligLebronsky
[01:03:07] [Server thread/INFO]: [+] UomoNutria
[01:03:16] [User Authenticator #5/INFO]: UUID of player Graffio80 is 412df539-af1e-3b79-bca8-c8da978d1158
[01:03:16] [User Authenticator #6/INFO]: UUID of player Feffede_ is c65e0e9d-71b4-4a0b-b15e-c23f8d06c8bd
[01:03:16] [User Authenticator #7/INFO]: UUID of player _MoSt3r_ is c4581cf4-5dd7-4c58-8d11-2dcc7fe0d825
[01:03:16] [User Authenticator #8/INFO]: UUID of player Dif4nello is 748f0526-50d7-4677-b397-47b5214c4b8c
[01:03:16] [User Authenticator #4/INFO]: UUID of player Ex56kb1 is 6db1a611-dae3-4c3b-9905-b5c850848bbc
[01:03:16] [User Authenticator #3/INFO]: UUID of player blackdevil_202_ is 7758d448-d9b3-310f-b960-d743f1240c89
[01:03:17] [Server thread/INFO]: Graffio80[/148.0.209.63:36766] logged in with entity id 5580 at ([SuperiorWorld]-3008.7032412163617, 112.10756721651971, -3006.8275991128235)
[01:03:17] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: Ex56kb1 have been removed.
[01:03:17] [Server thread/INFO]: Player owned: 0 voidchests.
[01:03:17] [Server thread/INFO]: Booster: 1.0, No active booster
[01:03:17] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:03:17] [Server thread/INFO]: Ex56kb1[/5.157.109.186:36772] logged in with entity id 5583 at ([SuperiorWorld]10184.300000011921, 99.875, -2398.4461175810097)
[01:03:17] [Server thread/INFO]: [+] Ex56kb1
[01:03:17] [Server thread/INFO]: [+] Graffio80
[01:03:17] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: blackdevil_202_ have been removed.
[01:03:17] [Server thread/INFO]: Player owned: 0 voidchests.
[01:03:17] [Server thread/INFO]: Booster: 1.0, No active booster
[01:03:17] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:03:17] [Server thread/INFO]: blackdevil_202_[/151.9.154.58:36774] logged in with entity id 5693 at ([SuperiorWorld]6586.357926557147, 99.0, -12008.300000011921)
[01:03:17] [Server thread/INFO]: [+] blackdevil_202_
[01:03:17] [Async Chat Thread - #0/INFO]: Guerriero Shouzed » GG
[01:03:17] [Server thread/INFO]: Feffede_[/80.183.7.60:36782] logged in with entity id 5774 at ([SuperiorWorld]7199.453244367833, 103.0, 11996.502973662891)
[01:03:17] [Server thread/INFO]: [+] Feffede_
[01:03:17] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: _MoSt3r_ have been removed.
[01:03:17] [Server thread/INFO]: Player owned: 0 voidchests.
[01:03:17] [Server thread/INFO]: Booster: 1.0, No active booster
[01:03:17] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:03:17] [Server thread/INFO]: _MoSt3r_[/79.53.21.211:36784] logged in with entity id 5904 at ([SuperiorWorld]-1803.5, -18.0, -603.5)
[01:03:17] [Server thread/INFO]: [+] _MoSt3r_
[01:03:18] [Server thread/INFO]: Dif4nello[/79.21.160.18:36792] logged in with entity id 5912 at ([SuperiorWorld]-2430.3459456602573, 65.0, 10791.544131363997)
[01:03:18] [Server thread/INFO]: [+] Dif4nello
[01:03:18] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v2 vote record from /5.9.154.181:57242 -> Vote (from:MineAlpha username:_Gammah address:127.0.0.1 timeStamp:1679526184 additionalData:null)
[01:03:19] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give _Gammah 500
[01:03:19] [Server thread/INFO]: 500,00 sono stati aggiunti all'account di _Gammah. Nuovo bilancio: 16.475,01
[01:03:19] [Server thread/INFO]: ★ You have given a Super-Vote to _Gammah. STATUS: SUCCESS.
[01:03:21] [User Authenticator #3/INFO]: UUID of player Menoi_ is b651f9b5-4dab-4364-8d9c-2cb48455ed23
[01:03:21] [Server thread/INFO]: Menoi_[/151.95.26.116:36794] logged in with entity id 6798 at ([SuperiorWorld_nether]1.1244534476400214, 16.5, -1209.6964266122175)
[01:03:21] [Server thread/INFO]: [+] Menoi_
[01:03:21] [AJLBFETCH-2-4944/WARN]: [ajLeaderboards] Placeholder %beautyquests-expansion-points_player% for player Menoi_ threw an error:
java.lang.NullPointerException: Cannot invoke "fr.skytasul.quests.players.PlayerAccount.getData(fr.skytasul.quests.api.data.SavableData)" because "<parameter1>" is null
    at fr.skytasul.quests.expansion.points.QuestPointsManager.getPoints(QuestPointsManager.java:83) ~[beautyquests-expansion-1.2.2.jar:?]
    at fr.skytasul.quests.expansion.points.QuestPointsPlaceholders.onRequest(QuestPointsPlaceholders.java:63) ~[beautyquests-expansion-1.2.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updateStat(Cache.java:418) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updatePlayerStats(Cache.java:382) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.LeaderboardPlugin.lambda$reloadInterval$8(LeaderboardPlugin.java:355) ~[ajLeaderboards-2.6.8.jar:?]
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) ~[?:?]
    at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[netty-all-4.1.68.Final.jar:4.1.68.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[01:03:23] [Server thread/WARN]: [CrateReloaded] Config is missing a key, crate.item-frame (Default Value: false).
[01:03:25] [Async Chat Thread - #0/INFO]: Guerriero _Gammah » calmi
[01:03:26] [Server thread/INFO]: Menoi_ issued server command: /ec
[01:03:28] [Server thread/INFO]: Menoi_ lost connection: Disconnected
[01:03:28] [Server thread/INFO]: [-] Menoi_
[01:03:31] [Server thread/INFO]: OhNatrium_ issued server command: /tp Fra
[01:03:34] [Server thread/INFO]: OhNatrium_ issued server command: /tp SpadaccinoNero7
[01:03:41] [Craft Scheduler Thread - 74 - TradeSystem/INFO]: -----< TradeSystem >-----
[01:03:41] [Craft Scheduler Thread - 74 - TradeSystem/INFO]: New update available [Squashing Trade Glitches and Introducing New Features!].
[01:03:41] [Craft Scheduler Thread - 74 - TradeSystem/INFO]: Download it on

https://www.spigotmc.org/resources/58434/update?update=492941

[01:03:41] [Craft Scheduler Thread - 74 - TradeSystem/INFO]: ------------------------
[01:03:47] [Server thread/INFO]: OhNatrium_ issued server command: /gamemode creative
[01:03:49] [User Authenticator #3/INFO]: UUID of player Menoi_ is b651f9b5-4dab-4364-8d9c-2cb48455ed23
[01:03:49] [Server thread/INFO]: Menoi_[/151.95.26.116:46550] logged in with entity id 7888 at ([SuperiorWorld_nether]0.28414812646923415, 16.5, -1208.8900996490927)
[01:03:49] [Server thread/INFO]: [+] Menoi_
[01:03:49] [Async Chat Thread - #0/INFO]: Guerriero _Gammah » ancora qua sei
[01:03:49] [AJLBFETCH-2-6349/WARN]: [ajLeaderboards] Placeholder %beautyquests-expansion-points_player% for player Menoi_ threw an error:
java.lang.NullPointerException: Cannot invoke "fr.skytasul.quests.players.PlayerAccount.getData(fr.skytasul.quests.api.data.SavableData)" because "<parameter1>" is null
    at fr.skytasul.quests.expansion.points.QuestPointsManager.getPoints(QuestPointsManager.java:83) ~[beautyquests-expansion-1.2.2.jar:?]
    at fr.skytasul.quests.expansion.points.QuestPointsPlaceholders.onRequest(QuestPointsPlaceholders.java:63) ~[beautyquests-expansion-1.2.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updateStat(Cache.java:418) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updatePlayerStats(Cache.java:382) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.LeaderboardPlugin.lambda$reloadInterval$8(LeaderboardPlugin.java:355) ~[ajLeaderboards-2.6.8.jar:?]
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) ~[?:?]
    at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[netty-all-4.1.68.Final.jar:4.1.68.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[01:03:52] [User Authenticator #3/INFO]: UUID of player meryytel is f6419c75-cdfb-4e95-aa84-9e4f523d9f95
[01:03:52] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: meryytel have been removed.
[01:03:52] [Server thread/INFO]: Player owned: 0 voidchests.
[01:03:52] [Server thread/INFO]: Booster: 1.0, No active booster
[01:03:52] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:03:52] [Server thread/INFO]: meryytel[/87.21.41.55:46562] logged in with entity id 8037 at ([SuperiorWorld]7214.699999988079, 100.0, 12007.699999988079)
[01:03:52] [Server thread/INFO]: [+] meryytel
[01:03:53] [Server thread/INFO]: Menoi_ issued server command: /ec
[01:04:00] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:04:00] [Async Chat Thread - #0/INFO]: [New] Saretta19 » sempre fino alla fine dei tempi
[01:04:01] [Server thread/INFO]: OhNatrium_ issued server command: /npc text
[01:04:02] [Server thread/WARN]: blackdevil_202_ was kicked due to keepalive timeout!
[01:04:02] [Server thread/INFO]: blackdevil_202_ lost connection: Timed out
[01:04:02] [Server thread/INFO]: [-] blackdevil_202_
[01:04:02] [Server thread/INFO]: [VoidChest-1.8.8.3] Quit listener: Data for: blackdevil_202_ have been removed.
[01:04:02] [Server thread/INFO]: Player owned: 0 voidchests.
[01:04:02] [Server thread/INFO]: Booster: 1.0, No active booster
[01:04:02] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:04:02] [Server thread/INFO]: Menoi_ issued server command: /cestino
[01:04:04] [Server thread/INFO]: OhNatrium_ issued server command: /npc text
[01:04:04] [Server thread/INFO]: Menoi_ issued server command: /ec
[01:04:05] [Server thread/INFO]: Menoi_ issued server command: /pw mob
[01:04:06] [Async Chat Thread - #0/INFO]: [New] Saretta19 » hahaha
[01:04:19] [Async Chat Thread - #0/INFO]: Guerriero Shouzed » gamma facciamo sopra la piatatforma?
[01:04:20] [User Authenticator #9/INFO]: UUID of player InSpring is ac7c13ba-b7b7-4caa-8159-dad591a4a016
[01:04:20] [User Authenticator #3/INFO]: UUID of player Kiri is 3cfb6286-8775-46fe-8a86-96eed50e56d8
[01:04:20] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: Kiri have been removed.
[01:04:20] [Server thread/INFO]: Player owned: 0 voidchests.
[01:04:20] [Server thread/INFO]: Booster: 1.0, No active booster
[01:04:20] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:04:20] [Server thread/INFO]: Kiri[/79.37.148.229:43232] logged in with entity id 10045 at ([SuperiorWorld]12592.136432900723, 98.9375, -6612.365648148333)
[01:04:20] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: InSpring have been removed.
[01:04:20] [Server thread/INFO]: Player owned: 0 voidchests.
[01:04:20] [Server thread/INFO]: Booster: 1.0, No active booster
[01:04:20] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:04:20] [Server thread/INFO]: InSpring[/93.55.13.53:43248] logged in with entity id 10049 at ([SuperiorWorld]2.4472852083304546, 50.0, -1214.699999988079)
[01:04:20] [Server thread/INFO]: [+] Kiri
[01:04:20] [Server thread/INFO]: [+] InSpring
[01:04:20] [AJLBFETCH-2-7804/WARN]: [ajLeaderboards] Placeholder %beautyquests-expansion-points_player% for player InSpring threw an error:
java.lang.NullPointerException: Cannot invoke "fr.skytasul.quests.players.PlayerAccount.getData(fr.skytasul.quests.api.data.SavableData)" because "<parameter1>" is null
    at fr.skytasul.quests.expansion.points.QuestPointsManager.getPoints(QuestPointsManager.java:83) ~[beautyquests-expansion-1.2.2.jar:?]
    at fr.skytasul.quests.expansion.points.QuestPointsPlaceholders.onRequest(QuestPointsPlaceholders.java:63) ~[beautyquests-expansion-1.2.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updateStat(Cache.java:418) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updatePlayerStats(Cache.java:382) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.LeaderboardPlugin.lambda$reloadInterval$8(LeaderboardPlugin.java:355) ~[ajLeaderboards-2.6.8.jar:?]
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) ~[?:?]
    at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[netty-all-4.1.68.Final.jar:4.1.68.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[01:04:20] [AJLBFETCH-2-7871/WARN]: [ajLeaderboards] Placeholder %beautyquests-expansion-points_player% for player Kiri threw an error:
java.lang.NullPointerException: Cannot invoke "fr.skytasul.quests.players.PlayerAccount.getData(fr.skytasul.quests.api.data.SavableData)" because "<parameter1>" is null
    at fr.skytasul.quests.expansion.points.QuestPointsManager.getPoints(QuestPointsManager.java:83) ~[beautyquests-expansion-1.2.2.jar:?]
    at fr.skytasul.quests.expansion.points.QuestPointsPlaceholders.onRequest(QuestPointsPlaceholders.java:63) ~[beautyquests-expansion-1.2.2.jar:?]
    at me.clip.placeholderapi.replacer.CharsReplacer.apply(CharsReplacer.java:119) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(PlaceholderAPI.java:71) ~[PlaceholderAPI-2.11.2 (1).jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updateStat(Cache.java:418) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.cache.Cache.updatePlayerStats(Cache.java:382) ~[ajLeaderboards-2.6.8.jar:?]
    at us.ajg0702.leaderboards.LeaderboardPlugin.lambda$reloadInterval$8(LeaderboardPlugin.java:355) ~[ajLeaderboards-2.6.8.jar:?]
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) ~[?:?]
    at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) ~[netty-all-4.1.68.Final.jar:4.1.68.Final]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[01:04:26] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=SuperiorWorld},x=-60.0,y=-22.0,z=-1190.0,pitch=0.0,yaw=0.0}
[01:04:37] [Server thread/INFO]: [McItaVotifier] Received a vote from _Gammah
[01:04:37] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give _Gammah 500
[01:04:37] [Server thread/INFO]: 500,00 sono stati aggiunti all'account di _Gammah. Nuovo bilancio: 16.975,01
[01:04:37] [Server thread/INFO]: ★ You have given a Super-Vote to _Gammah. STATUS: SUCCESS.
[01:04:44] [Server thread/INFO]: _Gammah issued server command: /warp crate
[01:05:21] [Server thread/INFO]: Feffede_ issued server command: /vote
[01:05:25] [Server thread/INFO]: _Gammah issued server command: /ec
[01:05:30] [Server thread/INFO]: _Gammah issued server command: /is
[01:05:48] [Votifier epoll worker/INFO]: [Votifier] Got a protocol v2 vote record from /5.9.154.181:57764 -> Vote (from:MineAlpha username:Feffede_ address:127.0.0.1 timeStamp:1679526337 additionalData:null)
[01:05:49] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Feffede_ 500
[01:05:49] [Server thread/INFO]: 500,00 sono stati aggiunti all'account di Feffede_. Nuovo bilancio: 664.649,36
[01:05:49] [Server thread/INFO]: ★ You have given a Super-Vote to Feffede_. STATUS: SUCCESS.
[01:06:03] [Async Chat Thread - #1/INFO]: Guerriero Cassiele0705 » ok si può fare
[01:06:08] [Server thread/INFO]: OhNatrium_ issued server command: /papi parse OhNatrium_ %aureliumskills_lb_power_3_name%
[01:06:13] [Server thread/INFO]: Cassiele0705 issued server command: /shop
[01:06:14] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:06:15] [Server thread/INFO]: OhNatrium_ issued server command: /npc respawn
[01:06:17] [Server thread/INFO]: OhNatrium_ issued server command: /npc respawn 1
[01:06:19] [Server thread/INFO]: OhNatrium_ issued server command: /npc respawn 0
[01:06:20] [Server thread/INFO]: OhNatrium_ issued server command: /npc respawn -1
[01:06:23] [Server thread/INFO]: OhNatrium_ issued server command: /npc despawn
[01:06:23] [Server thread/INFO]: Cassiele0705 issued server command: /is go
[01:06:24] [Server thread/INFO]: OhNatrium_ issued server command: /npc spawn
[01:06:27] [Server thread/INFO]: OhNatrium_ issued server command: /npc cload
[01:06:29] [Async Chat Thread - #1/INFO]: Guerriero Cassiele0705 » la faccio?
[01:06:29] [Server thread/INFO]: OhNatrium_ issued server command: /npc cload
[01:06:36] [Async Chat Thread - #1/INFO]: Guerriero _Gammah » cosa
[01:06:37] [Server thread/INFO]: [McItaVotifier] Received a vote from Feffede_
[01:06:37] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Feffede_ 500
[01:06:37] [Server thread/INFO]: 500,00 sono stati aggiunti all'account di Feffede_. Nuovo bilancio: 665.149,36
[01:06:37] [Server thread/INFO]: ★ You have given a Super-Vote to Feffede_. STATUS: SUCCESS.
[01:06:37] [Server thread/INFO]: OhNatrium_ issued server command: /npc copy
[01:06:49] [Async Chat Thread - #1/INFO]: Guerriero Cassiele0705 » fornace automatica che si refilla di kelp
[01:06:51] [Async Chat Thread - #1/INFO]: Guerriero Shouzed » io amplio sopra tutta la base che dite?
[01:06:53] [Async Chat Thread - #1/INFO]: Guerriero Cassiele0705 » come combustibile
[01:06:55] [Async Chat Thread - #1/INFO]: Guerriero Shouzed » ci starebbe
[01:06:56] [Async Chat Thread - #1/INFO]: Guerriero _Gammah » non abbiamo kelp
[01:07:00] [Async Chat Thread - #1/INFO]: Guerriero _Gammah » prima servirebbe la farm di kelp
[01:07:08] [Async Chat Thread - #1/INFO]: Guerriero Cassiele0705 » sisi tutto unito
[01:07:09] [Async Chat Thread - #1/INFO]: Guerriero _Gammah » vabene Shouzed
[01:07:11] [Async Chat Thread - #1/INFO]: Guerriero _Gammah » servono solo 2 lati
[01:07:33] [Async Chat Thread - #1/INFO]: Guerriero Shouzed » saliamo la lana
[01:07:35] [Server thread/INFO]: Shouzed issued server command: /is
[01:07:40] [Async Chat Thread - #1/INFO]: [Lv.13] kapp4801 » qualcuno ha spawner di conigli piazzati?
[01:07:42] [Async Chat Thread - #1/INFO]: Guerriero Shouzed » come si colora viola?
[01:07:49] [Async Chat Thread - #1/INFO]: [New] Saretta19 » ma
[01:07:51] [Async Chat Thread - #1/INFO]: Guerriero _Gammah » col colorante
[01:07:56] [Async Chat Thread - #1/INFO]: Guerriero Shouzed » gg
[01:08:03] [Server thread/INFO]: Saretta19 issued server command: /tpa Shouzed
[01:08:07] [Server thread/INFO]: Shouzed issued server command: /Tpaccept
[01:08:15] [Server thread/INFO]: SpadaccinoNero7 issued server command: /npc create &6#1 &3%ajlb_lb_vault_eco_balance_1_alltime_name% &7- &f%ajlb_lb_vault_eco_balance_1_alltime_value_formatted%
[01:08:30] [Server thread/INFO]: Cassiele0705 issued server command: /kit claim Guerriero
[01:08:42] [Server thread/INFO]: Shouzed issued server command: /shop
[01:08:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[01:08:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R2' loaded!
[01:08:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[01:08:56] [Thread-55/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package shaded.de.tr7zw.changeme.nbtapi' seems to be outdated!
[01:08:56] [Thread-55/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.2'
[01:08:56] [Thread-55/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[01:09:00] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:09:30] [Async Chat Thread - #2/INFO]: Guerriero Cassiele0705 » abbiamo observer e pistoni?
[01:09:32] [Server thread/INFO]: Shouzed issued server command: /shop
[01:09:36] [Server thread/INFO]: kapp4801 issued server command: /is
[01:09:40] [Async Chat Thread - #2/INFO]: Guerriero Shouzed » si io li avevo fatti
[01:09:45] [Async Chat Thread - #2/INFO]: Guerriero Shouzed » nella cassa redston
[01:09:51] [Server thread/INFO]: OhNatrium_ issued server command: /npc create %aureliumskills_power%
[01:09:51] [Async Chat Thread - #2/INFO]: Guerriero Shouzed » abbondanti
[01:09:56] [Async Chat Thread - #2/INFO]: Guerriero Shouzed » o davanti la farm di pecore
[01:10:06] [Server thread/INFO]: Shouzed issued server command: /shop
[01:10:09] [Server thread/INFO]: OhNatrium_ issued server command: /npc remove
[01:10:18] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:10:24] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:10:26] [Server thread/INFO]: OhNatrium_ issued server command: /npc create %aureliumskills_enchanting%
[01:10:27] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:10:28] [Async Chat Thread - #2/INFO]: [Lv.13] kapp4801 » chi voleva magma block?
[01:10:29] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:10:33] [Server thread/INFO]: OhNatrium_ issued server command: /npc remove
[01:10:43] [Server thread/INFO]: OhNatrium_ issued server command: /papi parse OhNatrium_ %aureliumskills_lb_power_3_name%
[01:10:46] [Server thread/INFO]: OhNatrium_ issued server command: /papi parse OhNatrium_ %aureliumskills_lb_power_1_name%
[01:10:48] [Server thread/INFO]: OhNatrium_ issued server command: /papi parse OhNatrium_ %aureliumskills_lb_power_2_name%
[01:11:10] [Async Chat Thread - #2/INFO]: Guerriero Shouzed » che lati hamma
[01:11:32] [Server thread/INFO]: SpadaccinoNero7 issued server command: /npc create %aureliumskills_rank%
[01:12:04] [Server thread/INFO]: SpadaccinoNero7 issued server command: /npc rem
[01:12:07] [Server thread/INFO]: SpadaccinoNero7 issued server command: /npc undo
[01:12:09] [Server thread/INFO]: SpadaccinoNero7 issued server command: /npc rem
[01:12:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_18_R2! Trying to find NMS support
[01:12:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_18_R2' loaded!
[01:12:55] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[01:12:55] [Thread-59/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package me.shin1gamix.voidchest.nbtapi' seems to be outdated!
[01:12:55] [Thread-59/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.2'
[01:12:55] [Thread-59/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[01:13:22] [Server thread/INFO]: OhNatrium_ issued server command: /papi parse --null %aureliumskills_lb_power_3_name%
[01:13:38] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:13:39] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:13:40] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:13:42] [Server thread/INFO]: OhNatrium_ issued server command: /npc rem
[01:13:48] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:13:49] [Server thread/INFO]: Kiri lost connection: Disconnected
[01:13:49] [Server thread/INFO]: [-] Kiri
[01:13:49] [Server thread/INFO]: [VoidChest-1.8.8.3] Quit listener: Data for: Kiri have been removed.
[01:13:49] [Server thread/INFO]: Player owned: 0 voidchests.
[01:13:49] [Server thread/INFO]: Booster: 1.0, No active booster
[01:13:49] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:13:56] [Server thread/INFO]: Shouzed issued server command: /shop
[01:14:02] [Server thread/INFO]: OhNatrium_ issued server command: /npc copy
[01:14:03] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:14:05] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:14:07] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:14:30] [Server thread/INFO]: Menoi_ issued server command: /afk
[01:14:43] [Server thread/INFO]: OhNatrium_ issued server command: /npc hologram
[01:14:59] [Server thread/INFO]: OhNatrium_ issued server command: /npc name
[01:15:01] [Server thread/INFO]: OhNatrium_ issued server command: /npc name
[01:15:13] [Async Chat Thread - #3/INFO]: Guerriero Cassiele0705 » raga la blast furnace però non cuoce cibo
[01:15:15] [Async Chat Thread - #3/INFO]: Guerriero Cassiele0705 » o si?
[01:15:18] [Server thread/INFO]: Cassiele0705 issued server command: /is go
[01:15:21] [Async Chat Thread - #3/INFO]: Guerriero _Gammah » no
[01:15:25] [Async Chat Thread - #3/INFO]: Guerriero Shouzed » affumicatore
[01:15:31] [Async Chat Thread - #3/INFO]: Guerriero Cassiele0705 » come si fanno?
[01:16:07] [Server thread/INFO]: Shouzed issued server command: /shop
[01:16:18] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:16:19] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=SuperiorWorld},x=-57.0,y=-3.0,z=-1174.0,pitch=0.0,yaw=0.0}
[01:16:20] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:16:23] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:16:26] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:16:29] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:16:32] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:16:41] [Craft Scheduler Thread - 107 - BeautyQuests/INFO]: [BeautyQuests] Datas saved ~ periodic save
[01:16:47] [Server thread/INFO]: OhNatrium_ issued server command: /citizens2 help
[01:17:27] [Server thread/INFO]: OhNatrium_ issued server command: /papi ecloud download Vault
[01:17:27] [placeholderapi-io-#1/INFO]: [PlaceholderAPI] Fetching available expansion information...
[01:17:31] [Server thread/INFO]: OhNatrium_ issued server command: /papi reload
[01:17:31] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[01:17:31] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superbvote [1.3.1]
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ascii [1.0.0]
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: servertime [1.0]
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: healthbar [0.6]
[01:17:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[01:17:45] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:17:46] [Server thread/INFO]: OhNatrium_ issued server command: /npc remove
[01:17:51] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:17:52] [Server thread/INFO]: OhNatrium_ issued server command: /npc copy
[01:17:55] [Server thread/INFO]: OhNatrium_ issued server command: /npc remove
[01:18:00] [Async Chat Thread - #4/INFO]: Guerriero _Gammah » 1 fornace al centro, 5 di ferro attorno sopra e di base 3 di pietra levigata
[01:18:23] [Async Chat Thread - #4/INFO]: Guerriero _Gammah » però con quelle ci cucini solo i minerali quindi non so quanto convenga
[01:18:35] [Server thread/INFO]: SpadaccinoNero7 issued server command: /npc create %player_name%
[01:18:41] [Server thread/INFO]: SpadaccinoNero7 issued server command: /npc rem
[01:18:49] [Server thread/INFO]: SpadaccinoNero7 issued server command: /npc create %player%
[01:19:23] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=SuperiorWorld},x=-60.0,y=-6.0,z=-1193.0,pitch=0.0,yaw=0.0}
[01:19:26] [Server thread/INFO]: Cassiele0705 issued server command: /is go
[01:19:31] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:19:41] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename %server_name%
[01:19:43] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename %server_tps_
[01:19:45] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename %server_tps%
[01:20:03] [Server thread/INFO]: OhNatrium_ issued server command: /papi parse OhNatrium_ %server_online_Superiorworld%
[01:20:05] [Async Chat Thread - #5/INFO]: [New] Saretta19 » ti do una mano sho?
[01:20:06] [Server thread/INFO]: OhNatrium_ issued server command: /papi parse OhNatrium_ %server_online_SuperiorWorld%
[01:20:10] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename %server_online_SuperiorWorld%
[01:20:17] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename %server_online%
[01:20:17] [Async Chat Thread - #5/INFO]: Guerriero Shouzed » se ti va
[01:20:19] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename A %server_online%
[01:20:22] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename B %server_online%
[01:20:25] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename B %player_name%
[01:20:29] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename %player_name%
[01:20:30] [Async Chat Thread - #5/INFO]: [New] Saretta19 » si :3
[01:20:31] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=SuperiorWorld},x=-3015.0,y=104.0,z=-3023.0,pitch=0.0,yaw=0.0}
[01:20:37] [Server thread/INFO]: OhNatrium_ issued server command: /citizens
[01:20:49] [Async Chat Thread - #5/INFO]: Guerriero Shouzed » ti traccio qui e ti crafto la lana vila asp
[01:20:56] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=SuperiorWorld},x=-45.0,y=-15.0,z=-1188.0,pitch=0.0,yaw=0.0}
[01:21:40] [Async Chat Thread - #5/INFO]: Guerriero Shouzed » gamma c è?
[01:21:46] [Server thread/INFO]: OhNatrium_ issued server command: /citizens save
[01:21:56] [Server thread/INFO]: Shouzed issued server command: /shop
[01:22:00] [Server thread/INFO]: Shouzed issued server command: /shop
[01:22:02] [Server thread/INFO]: SpadaccinoNero7 lost connection: Disconnected
[01:22:02] [Server thread/INFO]: [-] SpadaccinoNero7
[01:22:02] [Server thread/INFO]: [VoidChest-1.8.8.3] Quit listener: Data for: SpadaccinoNero7 have been removed.
[01:22:02] [Server thread/INFO]: Player owned: 0 voidchests.
[01:22:02] [Server thread/INFO]: Booster: 1.0, No active booster
[01:22:02] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:22:05] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:22:08] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:22:10] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:22:13] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:22:15] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:22:18] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:22:23] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:22:26] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:22:30] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:22:57] [Server thread/INFO]: Shouzed issued server command: /trade Saretta19
[01:23:00] [Async Chat Thread - #6/INFO]: [New] Saretta19 » sho ci sono mostri
[01:23:03] [Server thread/INFO]: Saretta19 issued server command: /trade accept Shouzed
[01:23:05] [Server thread/INFO]: Saretta19 issued server command: /trade accept Shouzed
[01:23:28] [Server thread/INFO]: Saretta19 issued server command: /trade accept Shouzed
[01:23:44] [Async Chat Thread - #6/INFO]: [New] Saretta19 » non posso piazzare
[01:23:51] [Server thread/INFO]: Shouzed issued server command: /is trust Saretta19
[01:23:51] [Server thread/INFO]: OhNatrium_ issued server command: /npc sel
[01:23:59] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename %server_online%
[01:24:04] [Async Chat Thread - #6/INFO]: Guerriero Shouzed » vai qui
[01:24:07] [Server thread/INFO]: OhNatrium_ issued server command: /npc rename %server_tps%
[01:24:10] [Server thread/INFO]: _Gammah issued server command: /is
[01:24:31] [Async Chat Thread - #6/INFO]: Guerriero _Gammah » un po' troppo lenta
[01:24:55] [Async Chat Thread - #6/INFO]: [New] Saretta19 » almeno faccio qualcosa io >.>
[01:25:01] [Async Chat Thread - #6/INFO]: Guerriero Shouzed » +
[01:25:15] [Async Chat Thread - #6/INFO]: Admin OhNatrium_ » oh no
[01:25:21] [Async Chat Thread - #6/INFO]: Admin OhNatrium_ » c'è _Gammah
[01:25:22] [Async Chat Thread - #6/INFO]: Admin OhNatrium_ » sus
[01:25:26] [Async Chat Thread - #6/INFO]: Guerriero _Gammah » ciao nat
[01:25:28] [Async Chat Thread - #6/INFO]: [Lv.13] kapp4801 » SuuSù
[01:25:30] [Async Chat Thread - #6/INFO]: Guerriero Shouzed » sfrutta le persone
[01:25:30] [Async Chat Thread - #6/INFO]: Admin OhNatrium_ » salve
[01:25:31] [luckperms-worker-10/WARN]: [me.lucko.luckperms.lib.hikari.pool.PoolBase] luckperms-hikari - Failed to validate connection me.lucko.luckperms.lib.mariadb.MariaDbConnection@462cd857 ((conn=71464) Connection.setNetworkTimeout cannot be called on a closed connection). Possibly consider using a shorter maxLifetime value.
[01:25:31] [luckperms-worker-10/WARN]: [me.lucko.luckperms.lib.hikari.pool.PoolBase] luckperms-hikari - Failed to validate connection me.lucko.luckperms.lib.mariadb.MariaDbConnection@3b0a62fd ((conn=71472) Connection.setNetworkTimeout cannot be called on a closed connection). Possibly consider using a shorter maxLifetime value.
[01:25:42] [Async Chat Thread - #6/INFO]: [New] Saretta19 » e si lamenta pure
[01:25:45] [Server thread/INFO]: Cassiele0705 issued server command: /is go
[01:25:47] [Async Chat Thread - #6/INFO]: Guerriero _Gammah » si, sei lenta
[01:25:53] [Async Chat Thread - #6/INFO]: [New] Saretta19 » ti picchio
[01:25:58] [Async Chat Thread - #6/INFO]: Guerriero Shouzed » ban
[01:26:14] [Async Chat Thread - #6/INFO]: Guerriero _Gammah » per Saretta19 ? sì
[01:26:31] [Server thread/INFO]: Shouzed issued server command: /shop
[01:26:38] [Async Chat Thread - #6/INFO]: [Lv.13] kapp4801 » D.
[01:26:50] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:26:53] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:26:55] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:26:57] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:26:59] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:27:01] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:27:04] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:27:05] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.listener.ChunkListener] [FAWE Tick Limiter] Detected and cancelled physics lag source at Location{world=CraftWorld{name=SuperiorWorld},x=-43.0,y=-18.0,z=-1190.0,pitch=0.0,yaw=0.0}
[01:27:06] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:27:08] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:27:10] [Async Chat Thread - #6/INFO]: [Lv.13] kapp4801 » lel
[01:27:11] [Server thread/INFO]: [ShopGUIPlus] Shouzed ha comprato 64 x Purple Dye per 800€ dallo shop decoration
[01:27:21] [Async Chat Thread - #6/INFO]: Guerriero Shouzed » motivo sissidai
[01:27:29] [Server thread/INFO]: Cassiele0705 issued server command: /is go
[01:27:29] [Server thread/WARN]: Cassiele0705 moved too quickly! -11.655727249635675,158.5,43.80000001192093
[01:27:29] [User Authenticator #10/INFO]: UUID of player Dwbrovnik is 11c5b391-1564-40ea-998a-6ce939739504
[01:27:29] [Server thread/INFO]: [VoidChest-1.8.8.3] Join listener: Data for: Dwbrovnik have been removed.
[01:27:29] [Server thread/INFO]: Player owned: 0 voidchests.
[01:27:29] [Server thread/INFO]: Booster: 1.0, No active booster
[01:27:29] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:27:29] [Server thread/INFO]: Dwbrovnik[/79.16.81.252:44284] logged in with entity id 74271 at ([SuperiorSpawn]164.06749726055676, 96.0, -537.8405893479903)
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5e55c94 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@743ccdaf (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5b923e40 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5d4a71d (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@4c00bc71 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5ec341eb (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@14e9144d (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@34a5b582 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@7d8f7453 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Craft Scheduler Thread - 133 - BeautyQuests/WARN]: [fr.skytasul.quests.utils.hikari.pool.PoolBase] BeautyQuests-SQL-pool - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@3907ae10 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
[01:27:29] [Server thread/INFO]: [+] Dwbrovnik
[01:27:29] [AJLBFETCH-2-88029/WARN]: [ajLeaderboards] Placeholder %beautyquests-expansion-points_player% for player Dwbrovnik threw an error:
java.lang.NullPointerException: null
[01:27:37] [User Authenticator #10/INFO]: UUID of player Mastini is 29aa29c1-815d-44f0-8d4f-8688e6ae184a
[01:27:37] [Server thread/INFO]: Mastini[/2.224.169.216:44394] logged in with entity id 74692 at ([SuperiorWorld]8395.206165517266, 100.0, 11442.270095125152)
[01:27:37] [Server thread/INFO]: [+] Mastini
[01:27:37] [AJLBFETCH-2-88449/WARN]: [ajLeaderboards] Placeholder %beautyquests-expansion-points_player% for player Mastini threw an error:
java.lang.NullPointerException: null
[01:27:38] [Async Chat Thread - #6/INFO]: [Lv.13] kapp4801 » cos
[01:27:50] [Server thread/INFO]: Dwbrovnik lost connection: Disconnected
[01:27:50] [Server thread/INFO]: [-] Dwbrovnik
[01:27:50] [Server thread/INFO]: [VoidChest-1.8.8.3] Quit listener: Data for: Dwbrovnik have been removed.
[01:27:50] [Server thread/INFO]: Player owned: 0 voidchests.
[01:27:50] [Server thread/INFO]: Booster: 1.0, No active booster
[01:27:50] [Server thread/INFO]: [VoidChest-1.8.8.3] End of debugging.
[01:27:54] [Async Chat Thread - #6/INFO]: [New] Saretta19 » sho ho finito la lana