Paste #132491: DenizenMetaBot Auto-Repaste Of log From derpyoshi

Date: 2025/04/08 11:03:58 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


[13:58:14] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.6+7-LTS; Eclipse Adoptium Temurin-21.0.6+7) on Linux 5.15.0-125-generic (amd64)
[13:58:14] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-211-main@6ea4202 (2025-03-13T11:49:31Z) for Minecraft 1.21.4
[13:58:14] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[13:58:14] [ServerMain/ERROR]: [DirectoryProviderSource] Error preparing plugin context: Directory 'plugins/citizensapi-2.0.38-SNAPSHOT.jar' failed to update!
java.lang.RuntimeException: Directory 'plugins/citizensapi-2.0.38-SNAPSHOT.jar' failed to update!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:61) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.lambda$prepareContext$1(DirectoryProviderSource.java:33) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.Iterator.forEachRemaining(Iterator.java:133) ~[?:?]
    at java.base/java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1939) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.walkFiles(DirectoryProviderSource.java:64) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:31) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.prepareContext(DirectoryProviderSource.java:17) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:14) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.Main.main(Main.java:111) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.bukkit.plugin.InvalidPluginException: java.lang.IllegalArgumentException: plugins/citizensapi-2.0.38-SNAPSHOT.jar does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:141) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:59) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    ... 22 more
Caused by: java.lang.IllegalArgumentException: plugins/citizensapi-2.0.38-SNAPSHOT.jar does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    at io.papermc.paper.plugin.provider.source.FileProviderSource.getPluginName(FileProviderSource.java:150) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.checkUpdate(FileProviderSource.java:111) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.prepareContext(FileProviderSource.java:59) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    ... 22 more
[13:58:14] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens-2.0.38-b3777.jar'...
[13:58:16] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens-2.0.38-b3777.jar' in 1252ms.
[13:58:16] [ServerMain/INFO]: [PluginInitializerManager] Initialized 73 plugins
[13:58:16] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (3):
 - MarriageMaster (2.7.8), TempFly (1.4.1), nightcore (2.7.4)
[13:58:16] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (70):
 - AdvancedJobs (1.7.6), AdvancedPortals (2.3.3), ArmoredElytra (3.6), BlockLocker (1.13), ChestSort (14.2.0), Chunky (1.4.28), ChunkyBorder (1.2.23), Citizens (2.0.38-SNAPSHOT (build 3777)), ClearChat (2.0), CommandItems (1.18.2), CommandWhitelist (2.11.0), CoreProtect (23.0-RC1), CustomAnvil (1.9.0), DecentHolograms (2.8.15), DiscordSRV (1.29.0), EcoPets (2.74.0), EpicRename (3.12), Essentials (2.21.0-dev+189-eab2201), EssentialsProtect (2.21.0-dev+189-eab2201), EssentialsSpawn (2.21.0-dev+189-eab2201), ExcellentCrates (6.1.0), ExcellentEnchants (4.3.3), FarmLimiter (1.6.0), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1063;7fa7c6f), GSit (2.2.0), GravesX (4.9.7.3), HMCWraps (1.6.1), HexNicks (2.2.2), InteractiveChat (4.2.16.0), InventoryRollbackPlus (1.6.21), LPC (3.6.1), LiteBans (2.16.1), LuckPerms (5.4.131), LushRewards (3.3.0), ModelEngine (R4.0.8), NBTAPI (2.14.1), Nexo (1.1), NightUtils (1.0), OpenInv (5.1.9), OtherAnimalTeleport (2.4-b98), PlaceholderAPI (2.11.6), PlayerKits2 (1.17.1), PlayerVaults (4.4.3), PlayerWarps (7.7.1), ProtocolLib (5.3.0), PvPManager (3.18.44), Quests (3.15.2-b216e2b), QuickShop-Hikari (6.2.0.8), Sellwand (1.7.4), SilkSpawners_v2 (2.3.2), SimpleRTP (5.4), SuperVanish (6.2.20), SupremeTags (2.1.3), TAB (5.0.7), TreeFeller (1.25.1), UltimateAutoRestart (2025.02), Vault (1.7.3-b131), VeinMiner (2.2.6), ViaBackwards (5.2.2-SNAPSHOT), ViaVersion (5.3.1), Votifier (2.7.3), VotingPlugin (6.18.3), Vulcan (2.9.1), WorldGuard (7.0.13+82fdc65), ZelTeams (3.0.1), ajLeaderboards (2.9.0), eGlow (2.2), eco (6.75.2), floodgate (2.2.3-SNAPSHOT (b112-0360721)), teamtag (1.0-SNAPSHOT)
[13:58:19] [ServerMain/WARN]: resource-pack-id missing, using default of bed405eb-c25f-3cb6-8a5b-2ce07d425717
[13:58:19] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:58:21] [ServerMain/INFO]: Loaded 1376 recipes
[13:58:21] [ServerMain/INFO]: Loaded 1482 advancements
[13:58:21] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[13:58:21] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 141.5ms
[13:58:21] [Server thread/INFO]: Starting minecraft server version 1.21.4
[13:58:21] [Server thread/INFO]: Loading properties
[13:58:21] [Server thread/INFO]: This server is running Paper version 1.21.4-211-main@6ea4202 (2025-03-13T11:49:31Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[13:58:21] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[13:58:21] [Server thread/INFO]: Server Ping Player Sample Count: 12
[13:58:21] [Server thread/INFO]: Using 4 threads for Netty based IO
[13:58:21] [Server thread/INFO]: [MoonriseCommon] Paper is using 3 worker threads, 1 I/O threads
[13:58:21] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[13:58:22] [Server thread/INFO]: Default game type: SURVIVAL
[13:58:22] [Server thread/INFO]: Generating keypair
[13:58:22] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25568
[13:58:22] [Server thread/INFO]: Using epoll channel type
[13:58:22] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[13:58:22] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[13:58:22] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'NBTAPI' for files 'plugins/.paper-remapped/item-nbt-api-plugin-2.14.1 (1).jar' and 'plugins/.paper-remapped/item-nbt-api-plugin-2.14.1 (1).jar' in 'plugins/.paper-remapped'
[13:58:22] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'eGlow' for files 'plugins/.paper-remapped/eglow-2.2.jar' and 'plugins/.paper-remapped/eglow-2.2.jar' in 'plugins/.paper-remapped'
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loading 2 libraries... please wait
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[13:58:22] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[13:58:22] [Server thread/INFO]: [nightcore] Server version detected as Paper 1.21.4. Using paper-bridge.
[13:58:23] [Server thread/INFO]: [eco] Initializing eco
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loading 14 libraries... please wait
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.18.0/adventure-text-minimessage-4.18.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-api/4.18.0/adventure-api-4.18.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-key/4.18.0/adventure-key-4.18.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-plain/4.18.0/adventure-text-serializer-plain-4.18.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-ansi/4.18.0/adventure-text-serializer-ansi-4.18.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/ansi/1.1.1/ansi-1.1.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/spongepowered/configurate-yaml/4.2.0/configurate-yaml-4.2.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/spongepowered/configurate-core/4.2.0/configurate-core-4.2.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/io/leangen/geantyref/geantyref/1.3.16/geantyref-1.3.16.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.49.0/checker-qual-3.49.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.36.0/error_prone_annotations-2.36.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/spongepowered/configurate-extra-kotlin/4.2.0/configurate-extra-kotlin-4.2.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.30/kotlin-stdlib-jdk8-1.5.30.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.5.30/kotlin-stdlib-1.5.30.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.30/kotlin-stdlib-jdk7-1.5.30.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-reflect/1.4.20/kotlin-reflect-1.4.20.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.2/kotlinx-coroutines-core-jvm-1.5.2.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.30/kotlin-stdlib-common-1.5.30.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/commons-io/commons-io/2.14.0/commons-io-2.14.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/apache/httpcomponents/client5/httpclient5/5.4/httpclient5-5.4.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/apache/httpcomponents/core5/httpcore5/5.3/httpcore5-5.3.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/apache/httpcomponents/core5/httpcore5-h2/5.3/httpcore5-h2-5.3.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/springframework/spring-expression/6.0.8/spring-expression-6.0.8.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/springframework/spring-jcl/6.0.8/spring-jcl-6.0.8.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/glassfish/javax.json/1.1.4/javax.json-1.1.4.jar
[13:58:23] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.1/annotations-26.0.1.jar
[13:58:23] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[13:58:28] [Server thread/WARN]: Legacy plugin ClearChat v2.0 does not specify an api-version.
[13:58:28] [Server thread/INFO]: [EcoPets] Initializing EcoPets
[13:58:30] [Server thread/INFO]: [com.willfp.eco.libs.reflections.Reflections] Reflections took 2051 ms to scan 120 urls, producing 105 keys and 32800 values 
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [Custom Anvil] Loading 1 libraries... please wait
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [Custom Anvil] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/2.1.0/kotlin-stdlib-2.1.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [Custom Anvil] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[13:58:31] [Server thread/WARN]: Legacy plugin NightUtils v1.0 does not specify an api-version.
[13:58:31] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loading 8 libraries... please wait
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/8.0.33/mysql-connector-j-8.0.33.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.46.0.0/sqlite-jdbc-3.46.0.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/redis/clients/jedis/5.0.2/jedis-5.0.2.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/org/json/json/20231013/json-20231013.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-plain/4.17.0/adventure-text-serializer-plain-4.17.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [ZelTeams] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.17.0/adventure-text-serializer-legacy-4.17.0.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loading 2 libraries... please wait
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/container/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[13:58:31] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/container/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[13:58:32] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.1
[13:58:32] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.1 is now loaded. Registering protocol transformers and injecting...
[13:58:32] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[13:58:32] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[13:58:32] [Server thread/INFO]: [ViaBackwards] Loading translations...
[13:58:32] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[13:58:32] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[13:58:33] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[13:58:33] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1063;7fa7c6f
[13:58:33] [Server thread/WARN]: 
**********************************************
** You are using the Spigot-mapped FAWE jar on a modern Paper version.
** This will result in slower first-run times and wasted disk space from plugin remapping.
** Download the Paper FAWE jar from Modrinth to avoid this: https://modrinth.com/plugin/fastasyncworldedit/
**********************************************
[13:58:34] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@71fba8cd]
[13:58:34] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[13:58:34] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b112-0360721)
[13:58:34] [Server thread/INFO]: [floodgate] Took 318ms to boot Floodgate
[13:58:34] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.16.1
[13:58:34] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[13:58:34] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
[13:58:34] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13+82fdc65
[13:58:34] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.7
[13:58:34] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+189-eab2201
[13:58:34] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3777)
[13:58:34] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.2.0
[13:58:34] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.18.44
[13:58:34] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.8
[13:58:34] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.15
[13:58:34] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.1
[13:58:34] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.4
[13:58:34] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[13:58:34] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.20
[13:58:34] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.0-RC1
[13:58:34] [Server thread/INFO]: [eco] Loading server plugin eco v6.75.2
[13:58:34] [Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v4.3.3
[13:58:34] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18.3
[13:58:34] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.2-SNAPSHOT
[13:58:34] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
[13:58:34] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.2.0
[13:58:34] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[13:58:34] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[13:58:34] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[13:58:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[13:58:35] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[13:58:35] [Server thread/INFO]: [BlockLocker] Loading server plugin BlockLocker v1.13
[13:58:35] [Server thread/INFO]: [Nexo] Loading server plugin Nexo v1.1
[13:58:35] [Server thread/INFO]: [Nexo] Loading libraries...
[13:58:35] [Thread-9/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[13:58:37] [Server thread/INFO]: [Nexo] Downloaded library https://repo.nexomc.com/snapshots/team/unnamed/creative-api/1.7.8-SNAPSHOT/creative-api-1.7.8-SNAPSHOT.jar
[13:58:39] [Server thread/INFO]: [Nexo] Downloaded library https://repo.nexomc.com/snapshots/team/unnamed/creative-serializer-minecraft/1.7.8-SNAPSHOT/creative-serializer-minecraft-1.7.8-SNAPSHOT.jar
[13:58:41] [Server thread/INFO]: [Nexo] Downloaded library https://repo.triumphteam.dev/snapshots/dev/triumphteam/triumph-gui/3.2.0-SNAPSHOT/triumph-gui-3.2.0-20250128.122847-2.jar
[13:58:41] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v6.1.0
[13:58:41] [Server thread/INFO]: [FarmLimiter] Loading server plugin FarmLimiter v1.6.0
[13:58:41] [Server thread/INFO]: [CommandWhitelist] Loading server plugin CommandWhitelist v2.11.0
[13:58:41] [Server thread/INFO]: [teamtag] Loading server plugin teamtag v1.0-SNAPSHOT
[13:58:41] [Server thread/INFO]: [ClearChat] Loading server plugin ClearChat v2.0
[13:58:41] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+189-eab2201
[13:58:41] [Server thread/INFO]: [TreeFeller] Loading server plugin TreeFeller v1.25.1
[13:58:41] [Server thread/INFO]: [OtherAnimalTeleport] Loading server plugin OtherAnimalTeleport v2.4-b98
[13:58:41] [Server thread/INFO]: [EcoPets] Loading server plugin EcoPets v2.74.0
[13:58:41] [Server thread/INFO]: [libreforge] Initializing libreforge
[13:58:41] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.75.0
[13:58:41] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12
[13:58:41] [Server thread/INFO]: [SimpleRTP] Loading server plugin SimpleRTP v5.4
[13:58:41] [Server thread/INFO]: [CommandItems] Loading server plugin CommandItems v1.18.2
[13:58:41] [Server thread/INFO]: [Custom Anvil] Loading server plugin CustomAnvil v1.9.0
[13:58:41] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v1.4.1
[13:58:41] [Server thread/INFO]: [VeinMiner] Loading server plugin VeinMiner v2.2.6
[13:58:41] [Server thread/INFO]: [VeinMiner] Found WorldGuard. Registering custom region flag.
[13:58:41] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15.2-b216e2b
[13:58:41] [Server thread/INFO]: [HMCWraps] Loading server plugin HMCWraps v1.6.1
[13:58:43] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.2.23
[13:58:43] [Server thread/INFO]: [ArmoredElytra] Loading server plugin ArmoredElytra v3.6
[13:58:43] [Server thread/INFO]: [NightUtils] Loading server plugin NightUtils v1.0
[13:58:43] [Server thread/INFO]: [GravesX] Loading server plugin GravesX v4.9.7.3
[13:58:43] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.16.0
[13:58:43] [Server thread/INFO]: [LushRewards] Loading server plugin LushRewards v3.3.0
[13:58:43] [Server thread/INFO]: [LushRewards] Successfully enabled LushLib
[13:58:43] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v2.3.3
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[13:58:43] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[13:58:43] [Server thread/INFO]: [Sellwand] Loading server plugin Sellwand v1.7.4
[13:58:43] [Server thread/INFO]: [PlayerKits2] Loading server plugin PlayerKits2 v1.17.1
[13:58:43] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v5.1.9
[13:58:43] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.7.8
[13:58:43] [Server thread/INFO]: [SupremeTags] Loading server plugin SupremeTags v2.1.3
[13:58:43] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.21
[13:58:43] [Server thread/INFO]: [HexNicks] Loading server plugin HexNicks v2.2.2
[13:58:43] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.8
[13:58:43] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[13:58:43] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[13:58:43] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 51ms
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 123ms
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 738ms
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 1619ms
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 2947ms
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 12 libraries (0 skipped libraries)...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/12]
[13:58:46] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[13:58:46] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[13:58:46] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/12]
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[13:58:46] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[13:58:46] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[13:58:47] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[13:58:47] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[13:58:47] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[13:58:47] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[13:58:48] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[13:58:48] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[13:58:48] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[13:58:48] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (4684ms). Waiting for enable...
[13:58:48] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.1
[13:58:48] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2025.02
[13:58:48] [Server thread/INFO]: [SilkSpawners_v2] Loading server plugin SilkSpawners_v2 v2.3.2
[13:58:48] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.4.3
[13:58:48] [Server thread/INFO]: [EssentialsProtect] Loading server plugin EssentialsProtect v2.21.0-dev+189-eab2201
[13:58:48] [Server thread/INFO]: [ZelTeams] Loading server plugin ZelTeams v3.0.1
[13:58:48] [Server thread/INFO]: [eGlow] Loading server plugin eGlow v2.2
[13:58:48] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.7.1
[13:58:48] [Server thread/INFO]: [AdvancedJobs] Loading server plugin AdvancedJobs v1.7.6
[13:58:48] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[13:58:48] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[13:58:49] [Server thread/INFO]:         __    
[13:58:49] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[13:58:49] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[13:58:49] [Server thread/INFO]: 
[13:58:49] [Server thread/INFO]: [LuckPerms] Loading configuration...
[13:58:49] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[13:58:49] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[13:58:49] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[13:58:50] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[13:58:50] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[13:58:51] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[13:58:51] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3097ms)
[13:58:51] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[13:58:51] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[13:58:51] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[13:58:51] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[13:58:51] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[13:58:51] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1063;7fa7c6f
[13:58:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[13:58:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[13:58:51] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[13:58:51] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[13:58:51] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_4.PaperweightFaweAdapter as the Bukkit adapter
[13:58:52] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[13:58:52] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.8
[13:58:52] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[13:58:52] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.4
[13:58:52] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[13:58:52] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[13:58:52] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[13:58:52] [Server thread/INFO]: [nightcore] Time zone set as America/New_York
[13:58:52] [Server thread/INFO]: [nightcore] Plugin loaded in 51 ms!
[13:58:52] [Server thread/INFO]: [eco] Enabling eco v6.75.2
[13:58:52] [Server thread/INFO]: [eco] Loading eco
[13:58:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.75.2]
[13:58:52] [Server thread/INFO]: [eco] Loaded integrations: Vulcan, DecentHolograms, ModelEngine, Essentials, Vault, PvPManager, PlaceholderAPI, WorldGuard
[13:58:52] [Server thread/INFO]: [eco] Scanning for conflicts...
[13:58:52] [Server thread/WARN]: [eco] CustomAnvil will likely conflict with eco! Reason: Kotlin found in libraries (lib-loader)
[13:58:52] [Server thread/WARN]: [eco] You can fix the conflicts by either removing the conflicting plugins, or by asking on the support discord to have them patched!
[13:58:52] [Server thread/WARN]: [eco] Only remove potentially conflicting plugins if you see Loader Constraint Violation / LinkageError anywhere
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v4.3.3
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Powered by nightcore
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Loaded 4 rarities.
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: auto_reel
[13:58:52] [ForkJoinPool.commonPool-worker-3/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 22 build(s) out of date.
You are running build 1063, the latest version is build 1085.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_catch
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: seasoned_angler
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: survivalist
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_drowned
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: river_master
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: tunnel
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sniper
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_fragility
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_mediocrity
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: soulbound
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: restore
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 33
[13:58:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [4.3.3]
[13:58:52] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 208 ms!
[13:58:52] [Server thread/INFO]: [BlockLocker] Enabling BlockLocker v1.13
[13:58:52] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[13:58:52] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[13:58:52] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[13:58:52] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[13:58:52] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[13:58:52] [Server thread/INFO]: Preparing level "world"
[13:58:53] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[13:58:53] [Server thread/INFO]: Preparing spawn area: 0%
[13:58:53] [Server thread/INFO]: Preparing spawn area: 20%
[13:58:53] [Server thread/INFO]: Time elapsed: 542 ms
[13:58:53] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[13:58:53] [Server thread/INFO]: Preparing spawn area: 0%
[13:58:53] [Server thread/INFO]: Time elapsed: 63 ms
[13:58:53] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[13:58:53] [Server thread/INFO]: Preparing spawn area: 0%
[13:58:53] [Server thread/INFO]: Time elapsed: 74 ms
[13:58:53] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.1
[13:58:53] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[13:58:53] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[13:58:53] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[13:58:54] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[13:58:54] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b112-0360721)
[13:58:54] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.16.1
[13:58:55] [Server thread/INFO]: [LiteBans] Using system locale (en)
[13:58:55] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[13:58:55] [Server thread/INFO]: [LiteBans] Loading SQL driver: mariadb 3.1.2 (org.mariadb.jdbc.Driver)
[13:58:55] [Server thread/INFO]: [LiteBans] Connecting to database...
[13:58:55] [Server thread/INFO]: [LiteBans] Connected to MariaDB database successfully (31.1 ms).
[13:58:55] [Server thread/INFO]: [LiteBans] Database connection fully initialized (34.9 ms).
[13:58:55] [Server thread/INFO]: [LiteBans] v2.16.1 enabled. Startup took 251 ms.
[13:58:55] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13+82fdc65
[13:58:55] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[13:58:55] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[13:58:55] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[13:58:55] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[13:58:55] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:58:55] [Server thread/INFO]: [TAB] Enabling TAB v5.0.7
[13:58:55] [Server thread/INFO]: [TAB] Loaded NMS hook in 20ms
[13:58:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.0.7]
[13:58:55] [Server thread/INFO]: [TAB] Enabled in 117ms
[13:58:55] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+189-eab2201
[13:58:56] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[13:58:56] [Server thread/INFO]: [Essentials] No kits found to migrate.
[13:58:56] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[13:58:56] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[13:58:56] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
[13:58:56] [Server thread/INFO]: [Essentials] Using locale en_US
[13:58:56] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[13:58:56] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[13:58:56] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[13:58:56] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[13:58:56] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3777)
[13:58:56] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[13:58:56] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[bT.
[13:58:56] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[null.
[13:58:56] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3777) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R4/boss/CraftBossBar
    at Citizens-2.0.38-b3777.jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2744) ~[Citizens-2.0.38-b3777.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at Citizens-2.0.38-b3777.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens-2.0.38-b3777.jar:?]
    at Citizens-2.0.38-b3777.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens-2.0.38-b3777.jar:?]
    at Citizens-2.0.38-b3777.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens-2.0.38-b3777.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R4.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[13:58:56] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3777)
[13:58:56] [Server thread/INFO]: [GSit] Enabling GSit v2.2.0
[13:58:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.2.0]
[13:58:56] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[13:58:56] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[13:58:56] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[13:58:56] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[13:58:56] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.18.44
[13:58:56] [Server thread/INFO]: [PvPManager] Using player nametags: true
[13:58:56] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[13:58:56] [Server thread/INFO]: [PvPManager] Players stored: 543
[13:58:56] [Server thread/INFO]: [PvPManager] TAB detected. If you want nametags to change while in combat, set 'anti-override' to false in TAB's config. (Doing that will prevent TAB from changing nametags)
[13:58:56] [Server thread/INFO]: [PvPManager] Or use the premium version of PvPManager which hooks into TAB for nametag/tablist changes.
[13:58:56] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[13:58:56] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[13:58:56] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[13:58:56] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[13:58:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [3.18.44]
[13:58:56] [Server thread/INFO]: [PvPManager] PvPManager v3.18.44 enabled (81 ms)
[13:58:56] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.15
[13:58:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[13:58:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[13:58:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[13:58:56] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.1
[13:58:57] [Server thread/INFO]: [Vulcan] Server Version: 1.21 detected!
[13:58:57] [Server thread/INFO]: [Vulcan] Floodgate 2.0 found. Enabling hook!
[13:58:57] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[13:58:57] [Server thread/INFO]: [Vulcan] BStats enabled!
[13:58:57] [Server thread/ERROR]: [Vulcan] Failed to register events for class me.frep.vulcan.spigot.Vulcan_np because dev/geco/gsit/api/event/PlayerGetUpPlayerSitEvent does not exist.
[13:58:57] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[13:58:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.1]
[13:58:57] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[13:58:57] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[13:58:57] [Server thread/INFO]: [Votifier] Loaded token for website: default
[13:58:57] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[13:58:57] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[13:58:57] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:40001.
[13:58:57] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.20
[13:58:57] [Server thread/INFO]: [SuperVanish] Hooked into PaperSpigot for server list ping support
[13:58:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.20]
[13:58:57] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[13:58:57] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[13:58:57] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.0-RC1
[13:58:57] [Server thread/INFO]: [CoreProtect] CoreProtect Community Edition has been successfully enabled! 
[13:58:57] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[13:58:57] [Server thread/INFO]: --------------------
[13:58:57] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[13:58:57] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[13:58:57] [Server thread/INFO]: --------------------
[13:58:57] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18.3
[13:58:57] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[13:58:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[13:58:57] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[13:58:58] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[13:58:58] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18.3
[13:58:58] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.2-SNAPSHOT
[13:58:58] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
[13:58:58] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.2.0
[13:58:58] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.13+82fdc65
[13:58:58] [Server thread/INFO]: [ChestSort] Use permissions: true
[13:58:58] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[13:58:58] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[13:58:58] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[13:58:58] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[13:58:58] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[13:58:58] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[13:58:58] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[13:58:58] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[13:58:58] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[13:58:58] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[13:58:58] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[13:58:58] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[13:58:58] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[13:58:58] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[13:58:58] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[13:58:58] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[13:58:58] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[13:58:58] [Server thread/INFO]: [ChestSort] Check for updates: true
[13:58:58] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[13:58:58] [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)
[13:58:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.2.0]
[13:58:58] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[13:58:58] [Server thread/INFO]: [NBTAPI] Checking bindings...
[13:58:58] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[13:58:58] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[13:58:58] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[13:58:58] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[13:58:58] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[13:58:58] [Server thread/INFO]: [Nexo] Enabling Nexo v1.1
[13:58:58] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] No bot token has been set in the config; a bot token is required to connect to Discord.
[13:58:58] [Server thread/INFO]: Nexo | Version v1_21_R3 has been detected.
[13:58:58] [Server thread/INFO]: Nexo | Nexo will use the NMSHandler for this version.

[13:58:58] [Server thread/INFO]: Nexo | PackServer set to POLYMATH
[13:58:58] [Server thread/INFO]: Nexo | Initializing Vulcan-AntiCheat Hook!
[13:58:58] [Server thread/INFO]: Nexo | Vulcan's API is disabled, please enable settings.enable-api...
[13:58:59] [Server thread/INFO]: Nexo | Papers block-updates.disable-noteblock-updates is not enabled.
[13:58:59] [Server thread/INFO]: Nexo | It is HIGHLY recommended to enable this setting for improved performance and prevent bugs with noteblocks
[13:58:59] [Server thread/INFO]: Nexo | Otherwise Nexo needs to listen to very taxing events, which also introduces some bugs
[13:58:59] [Server thread/INFO]: Nexo | You can enable this setting in ServerFolder/config/paper-global.yml

[13:58:59] [Server thread/INFO]: Nexo | Papers block-updates.disable-tripwire-updates is not enabled.
[13:58:59] [Server thread/INFO]: Nexo | It is HIGHLY recommended to enable this setting for improved performance and prevent bugs with tripwires
[13:58:59] [Server thread/INFO]: Nexo | Otherwise Nexo needs to listen to very taxing events, which also introduces some bugs
[13:58:59] [Server thread/INFO]: Nexo | You can enable this setting in ServerFolder/config/paper-global.yml

[13:58:59] [Server thread/INFO]: Nexo | Papers block-updates.disable-chorus-plant-updates is not enabled.
[13:58:59] [Server thread/INFO]: Nexo | It is HIGHLY recommended to enable this setting for improved performance and prevent bugs with chorus-plants
[13:58:59] [Server thread/INFO]: Nexo | Otherwise Nexo needs to listen to very taxing events, which also introduces some bugs
[13:58:59] [Server thread/INFO]: Nexo | You can enable this setting in ServerFolder/config/paper-global.yml

[13:58:59] [ForkJoinPool.commonPool-worker-4/INFO]: Nexo | Skipped downloading DefaultPack as it is up to date!
[13:58:59] [Server thread/INFO]: Nexo | Furniture grave has lights that overlap with the barrierHitboxes at: 0,0,0
[13:58:59] [Server thread/INFO]: Nexo | Nexo will ignore any lights that conflict with a barrier...
[13:58:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nexo [1.1]
[13:58:59] [Server thread/INFO]: Nexo | Plugin "PlaceholderAPI" detected, enabling hooks
[13:58:59] [pool-102-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[13:58:59] [Server thread/INFO]: Nexo | Plugin "BlockLocker" detected, enabling hooks
[13:58:59] [Server thread/INFO]: Nexo | Plugin "ModelEngine" detected, enabling hooks
[13:58:59] [Server thread/INFO]: Nexo | Plugin "WorldGuard" detected, enabling hooks
[13:58:59] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v6.1.0
[13:58:59] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[13:58:59] [Server thread/WARN]: [ExcellentCrates] *************************
[13:58:59] [Server thread/WARN]: [ExcellentCrates] You don't have EconomyBridge installed.
[13:58:59] [Server thread/WARN]: [ExcellentCrates] The following features will be unavailable:
[13:58:59] [Server thread/WARN]: [ExcellentCrates] - Crate open cost.
[13:58:59] [Server thread/WARN]: [ExcellentCrates] - Custom item plugin support.
[13:58:59] [Server thread/WARN]: [ExcellentCrates] *************************
[13:58:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[13:58:59] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@46095b97
[13:58:59] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[13:58:59] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate openings.
[13:58:59] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate keys.
[13:58:59] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[13:58:59] [Server thread/INFO]: [ExcellentCrates] Loaded 9 crates.
[13:58:59] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:58:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [6.1.0]
[13:58:59] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 288 ms!
[13:58:59] [Server thread/INFO]: [FarmLimiter] Enabling FarmLimiter v1.6.0
[13:58:59] [Server thread/INFO]: [CommandWhitelist] Enabling CommandWhitelist v2.11.0
[13:58:59] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Checking for updates...
[13:58:59] [Server thread/INFO]: [teamtag] Enabling teamtag v1.0-SNAPSHOT
[13:58:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: teamtag [1.0]
[13:58:59] [Server thread/INFO]: [ClearChat] Enabling ClearChat v2.0*
[13:58:59] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+189-eab2201
[13:58:59] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[13:58:59] [Server thread/INFO]: [TreeFeller] Enabling TreeFeller v1.25.1
[13:58:59] [Server thread/INFO]: [TreeFeller] TreeFeller has been enabled! (Version 1.25.1) by ThizThizzyDizzy
[13:58:59] [PvPManager Worker Thread - 0/INFO]: [PvPManager] No update found
[13:58:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: treefeller [1.0.0]
[13:58:59] [Server thread/INFO]: [TreeFeller] Server version: 1.21.4-R0.1-SNAPSHOT
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded global values:
[13:58:59] [Server thread/INFO]: [TreeFeller] - Startup Logs: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Default Enabled: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Scan Distance: 256
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 6
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 6
[13:58:59] [Server thread/INFO]: [TreeFeller] - Required Logs: 4
[13:58:59] [Server thread/INFO]: [TreeFeller] - Required Leaves: 10
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Logs: 250
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Height: 5
[13:58:59] [Server thread/INFO]: [TreeFeller] - Allow Partial: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Allow Partial Tool: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Player Leaves: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Ignore Leaf Data: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Require Cross Section: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Force Distance Check: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Decorations: [snow, vines, cocoa, weeping vines, moss]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 6
[13:58:59] [Server thread/INFO]: [TreeFeller] - Min Vertical Log Ratio: 0.5
[13:58:59] [Server thread/INFO]: [TreeFeller] - Cutting Animation: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Anim Delay: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] - Replant Saplings: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Use Tree Saplings: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Use Inventory Saplings: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Spawn Saplings: 0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling Timeout: 50
[13:58:59] [Server thread/INFO]: [TreeFeller] - Grass: [PODZOL, DIRT, GRASS_BLOCK]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Root Distance: 6
[13:58:59] [Server thread/INFO]: [TreeFeller] - Log Behavior: BREAK
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Behavior: BREAK
[13:58:59] [Server thread/INFO]: [TreeFeller] - Fall Hurt Amount: 2.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Fall Hurt Max: 40
[13:58:59] [Server thread/INFO]: [TreeFeller] - Directional Fall Behavior: RANDOM
[13:58:59] [Server thread/INFO]: [TreeFeller] - Overridables: [AIR, FERN, WATER, CAVE_AIR, LARGE_FERN, TALL_SEAGRASS, SEAGRASS, TALL_GRASS]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Lock Fall Cardinal: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Directional Fall Velocity: 0.35
[13:58:59] [Server thread/INFO]: [TreeFeller] - Vertical Fall Velocity: 0.05
[13:58:59] [Server thread/INFO]: [TreeFeller] - Explosive Fall Velocity: 0.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Random Fall Velocity: 0.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Fall Delay: 0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Respect Unbreaking: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Respect Unbreakable: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Damage Mult: 1.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Stacked Tools: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Fortune: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Silk Touch: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Log Fortune: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Log Silk Touch: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leave Stump: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Rotate Logs: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Drop Conversions: {null=null, JUNGLE_WOOD=JUNGLE_LOG, OAK_WOOD=OAK_LOG, MANGROVE_WOOD=MANGROVE_LOG, SPRUCE_WOOD=SPRUCE_LOG, CHERRY_WOOD=CHERRY_LOG, CRIMSON_HYPHAE=CRIMSON_STEM, DARK_OAK_WOOD=DARK_OAK_LOG, ACACIA_WOOD=ACACIA_LOG, WARPED_HYPHAE=WARPED_STEM, BIRCH_WOOD=BIRCH_LOG}
[13:58:59] [Server thread/INFO]: [TreeFeller] - Block Conversions: {MUDDY_MANGROVE_ROOTS=MUD}
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Drop Chance: 1.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Log Drop Chance: 1.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Effects: []
[13:58:59] [Server thread/INFO]: [TreeFeller] - Consumed Food Base: 0.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Consumed Food Logs: 0.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Consumed Food Leaves: 0.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Consumed Health Base: 0.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Consumed Health Logs: 0.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Consumed Health Leaves: 0.0
[13:58:59] [Server thread/INFO]: [TreeFeller] - Prevent Breakage: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Enable Adventure: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Enable Survival: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Enable Creative: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - With Sneak: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Without Sneak: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - World Blacklist: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Cascade: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Parallel Cascade Limit: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] - Cascade Check Limit: 64
[13:58:59] [Server thread/INFO]: [TreeFeller] - MMOCore Trunk XP: {woodcutting=1.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - MMOCore Leaves XP: {woodcutting=0.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - MMOCore Tree XP: {woodcutting=0.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - MMOCore Emulate Regen: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility MMOCore: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility Jobs: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - MCMMO Double Drops: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO Classic: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility CoreProtect: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility WorldGuard: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility GriefPrevention: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility Towny: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - OreRegenerator Regen Delay: 1200
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility OreRegenerator: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility Drop2Inventory: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - EcoSkills Trunk XP: {Woodcutting=1.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - EcoSkills Leaves XP: {woodcutting=0.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - EcoSkills Tree XP: {woodcutting=0.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility EcoSkills: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - EcoJobs Apply Multipliers: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility EcoJobs: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility LogBlock Legacy: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility LogBlock: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility Lands: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility PlaceholderAPI: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility SaberFactions: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - AureliumSkills Trunk XP: {foraging=1.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - AureliumSkills Leaves XP: {foraging=0.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - AureliumSkills Apply Modifiers: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility AureliumSkills: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - AuraSkills Trunk XP: {foraging=1.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - AuraSkills Leaves XP: {foraging=0.0}
[13:58:59] [Server thread/INFO]: [TreeFeller] - AuraSkills Apply Modifiers: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility AuraSkills: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility BlockRegen: false
[13:58:59] [Server thread/INFO]: [TreeFeller] - Compatibility Prism: true
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: OAK_LEAVES
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [OAK_SAPLING]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: BIRCH_LOG, BIRCH_WOOD
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: BIRCH_LEAVES
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [BIRCH_SAPLING]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: SPRUCE_LOG, SPRUCE_WOOD
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: SPRUCE_LEAVES
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [SPRUCE_SAPLING]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: JUNGLE_LOG, JUNGLE_WOOD
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: JUNGLE_LEAVES
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [JUNGLE_SAPLING]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: DARK_OAK_LOG, DARK_OAK_WOOD
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: DARK_OAK_LEAVES
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [DARK_OAK_SAPLING]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: ACACIA_LOG, ACACIA_WOOD
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: ACACIA_LEAVES
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [ACACIA_SAPLING]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: AZALEA_LEAVES, FLOWERING_AZALEA_LEAVES
[13:58:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [FLOWERING_AZALEA, AZALEA]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: MANGROVE_LOG, MANGROVE_WOOD
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: MANGROVE_ROOTS, MANGROVE_LEAVES
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 16
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 16
[13:58:59] [Server thread/INFO]: [TreeFeller] - Required Logs: 3
[13:58:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 16
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Trunks: 16
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [MANGROVE_PROPAGULE]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] - Roots: [MANGROVE_ROOTS]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Root Distance: 16
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: CHERRY_LOG, CHERRY_WOOD
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: CHERRY_LEAVES
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [CHERRY_SAPLING]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: CRIMSON_STEM, CRIMSON_HYPHAE
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: NETHER_WART_BLOCK, SHROOMLIGHT
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8
[13:58:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [CRIMSON_FUNGUS]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] - Grass: [CRIMSON_NYLIUM]
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[13:58:59] [Server thread/INFO]: [TreeFeller] - Trunk: WARPED_STEM, WARPED_HYPHAE
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaves: WARPED_WART_BLOCK, SHROOMLIGHT
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8
[13:58:59] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8
[13:58:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[13:58:59] [Server thread/INFO]: [TreeFeller] - Sapling: [WARPED_FUNGUS]
[13:58:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[13:58:59] [Server thread/INFO]: [TreeFeller] - Grass: [WARPED_NYLIUM]
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded tool: WOODEN_AXE
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded tool: STONE_AXE
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded tool: IRON_AXE
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded tool: GOLDEN_AXE
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded tool: DIAMOND_AXE
[13:58:59] [Server thread/INFO]: [TreeFeller] Loaded tool: NETHERITE_AXE
[13:58:59] [Server thread/INFO]: [OtherAnimalTeleport] Enabling OtherAnimalTeleport v2.4-b98
[13:58:59] [Server thread/INFO]: [EcoPets] Enabling EcoPets v2.74.0
[13:58:59] [Server thread/INFO]: [EcoPets] Loading EcoPets
[13:58:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecopets [2.74.0]
[13:59:00] [Server thread/INFO]: [EcoPets] Loaded integrations: ModelEngine
[13:59:00] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12
[13:59:00] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[13:59:00] [Server thread/INFO]: [EpicRename] Version: 3.12 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[13:59:00] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[13:59:00] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[13:59:00] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[13:59:00] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[13:59:00] [Server thread/INFO]: [SimpleRTP] Enabling SimpleRTP v5.4
[13:59:00] [Server thread/INFO]: [CommandItems] Enabling CommandItems v1.18.2
[13:59:00] [Server thread/INFO]: LOGGER [CommandItems] | INFO: Found PlaceholderAPI, hooking into it.
[13:59:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: CommandItemsPAPI [1.18.2]
[13:59:00] [Server thread/INFO]: LOGGER [CommandItems] | INFO: Server version is most likely 1.21.0 (38, v1_21_R1 :: 60ac38)
[13:59:00] [Server thread/INFO]: LOGGER [CommandItems] | INFO: Executed setup for config: config.yml
[13:59:00] [Server thread/INFO]: [Custom Anvil] Enabling CustomAnvil v1.9.0
[13:59:00] [Server thread/INFO]: [Custom Anvil] Excellent Enchants Detected !
[13:59:00] [Server thread/INFO]: [TempFly] Enabling TempFly v1.4.1
[13:59:00] [Server thread/INFO]: [TempFly] [LICENSE] The Plugin is licensed to: 244262. The Download Hash is: %%__NONCE__%%
[13:59:00] [Server thread/INFO]: [TempFly] {SQL} starting SQL . . .
[13:59:00] [Server thread/INFO]: [TempFly] {SQL} Connecting to SQLITE Database...
[13:59:00] [Server thread/INFO]: [TempFly] {SQL} successfully connected to Database.
[13:59:00] [Server thread/INFO]: [TempFly] Essentials Economy System was found.
[13:59:00] [Server thread/INFO]: [TempFly] LuckPerms Permission System was found.
[13:59:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: TempFly [1.4.1]
[13:59:00] [Server thread/INFO]: [TempFly] PlacerHolderAPI was found and registered!
[13:59:00] [Server thread/INFO]: [WorldGuard] Registering session handler me.truemb.tempfly.hooks.WGEntry
[13:59:00] [Server thread/INFO]: [TempFly] WorldGuard was found and hooked!
[13:59:00] [Server thread/INFO]: [VeinMiner] Enabling VeinMiner v2.2.6
[13:59:00] [Server thread/INFO]: [VeinMiner] Loading configuration options to local memory
[13:59:00] [ForkJoinPool.commonPool-worker-4/INFO]: [VeinMiner] Using SQLITE for persistent storage.
[13:59:00] [Server thread/INFO]: [VeinMiner] Added 13 aliases.
[13:59:00] [Server thread/INFO]: [VeinMiner] Registered category with id "Axe" holding 6 unique items and 26 unique blocks.
[13:59:00] [Server thread/INFO]: [VeinMiner] Registered category with id "Hoe" holding 6 unique items and 10 unique blocks.
[13:59:00] [Server thread/INFO]: [VeinMiner] Registered category with id "Pickaxe" holding 6 unique items and 23 unique blocks.
[13:59:00] [Server thread/INFO]: [VeinMiner] Registered category with id "Shears" holding 1 unique items and 27 unique blocks.
[13:59:00] [Server thread/INFO]: [VeinMiner] Registered category with id "Shovel" holding 6 unique items and 10 unique blocks.
[13:59:00] [Server thread/WARN]: [VeinMiner] No block list configured for category with id "Hand"! Is this intentional?
[13:59:00] [Server thread/INFO]: [VeinMiner] Registered category with id "Hand" holding 0 unique items and 0 unique blocks.
[13:59:00] [Server thread/INFO]: [VeinMiner] Performing an update check!
[13:59:00] [Server thread/INFO]: [VeinMiner] Anti cheat detected. Enabling anti cheat support for "Vulcan"
[13:59:00] [Server thread/INFO]: [VeinMiner] Registering commands
[13:59:00] [Server thread/INFO]: [VeinMiner] Registering events
[13:59:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: veinminer [2.2.6]
[13:59:00] [Server thread/INFO]: [VeinMiner] Vault found. Attempting to enable economy support...
[13:59:00] [Server thread/INFO]: [VeinMiner] Enabling Plugin Metrics
[13:59:00] [Server thread/INFO]: [VeinMiner] Thanks for enabling Metrics! The anonymous stats are appreciated
[13:59:00] [Server thread/INFO]: [Quests] Enabling Quests v3.15.2-b216e2b
[13:59:00] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[13:59:00] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[13:59:00] [Server thread/INFO]: [Quests] Your server is running version 1.21
[13:59:00] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[13:59:01] [Server thread/INFO]: [HMCWraps] Enabling HMCWraps v1.6.1
[13:59:01] [Server thread/INFO]: [HMCWraps] Plugin 'PlaceholderAPI' found. Initializing hook.
[13:59:01] [Server thread/INFO]: [HMCWraps] Plugin 'Nexo' found. Initializing hook.
[13:59:01] [Server thread/INFO]: [HMCWraps] Loaded all configuration files and wraps. (29 wraps)
[13:59:01] [ForkJoinPool.commonPool-worker-4/INFO]: [VeinMiner] You are on the latest version of VeinMiner!
[13:59:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hmcwraps [1.6.1]
[13:59:01] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.2.23
[13:59:01] [Server thread/INFO]: [ArmoredElytra] Enabling ArmoredElytra v3.6
[13:59:01] [Server thread/WARN]: [ArmoredElytra] Could not save en_US.txt to plugins/ArmoredElytra/en_US.txt because en_US.txt already exists.
[13:59:01] [Server thread/WARN]: [ArmoredElytra] Could not save it_IT.txt to plugins/ArmoredElytra/it_IT.txt because it_IT.txt already exists.
[13:59:01] [Server thread/WARN]: [ArmoredElytra] Could not save zh_CN.txt to plugins/ArmoredElytra/zh_CN.txt because zh_CN.txt already exists.
[13:59:01] [Server thread/WARN]: [ArmoredElytra] Could not save zh_TW.txt to plugins/ArmoredElytra/zh_TW.txt because zh_TW.txt already exists.
[13:59:01] [Server thread/INFO]: [ArmoredElytra] Enabling stats! Thanks, it really helps!
[13:59:01] [Server thread/INFO]: [ArmoredElytra] Allowed enchantments:
[13:59:01] [Server thread/INFO]: [ArmoredElytra]  - minecraft:unbreaking
[13:59:01] [Server thread/INFO]: [ArmoredElytra]  - minecraft:fire_protection
[13:59:01] [Server thread/INFO]: [ArmoredElytra]  - minecraft:blast_protection
[13:59:01] [Server thread/INFO]: [ArmoredElytra]  - minecraft:projectile_protection
[13:59:01] [Server thread/INFO]: [ArmoredElytra]  - minecraft:protection
[13:59:01] [Server thread/INFO]: [ArmoredElytra]  - minecraft:thorns
[13:59:01] [Server thread/INFO]: [ArmoredElytra]  - minecraft:binding_curse
[13:59:01] [Server thread/INFO]: [ArmoredElytra]  - minecraft:vanishing_curse
[13:59:01] [Server thread/INFO]: [ArmoredElytra]  - minecraft:mending
[13:59:01] [Server thread/INFO]: [NightUtils] Enabling NightUtils v1.0*
[13:59:01] [Server thread/ERROR]: Error occurred while enabling NightUtils v1.0 (Is it up to date?)
java.awt.HeadlessException: 
No X11 DISPLAY variable was set,
or no headful library support was found,
but this program performed an operation which requires it,

    at java.desktop/java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:164) ~[?:?]
    at java.desktop/java.awt.List.<init>(List.java:246) ~[?:?]
    at java.desktop/java.awt.List.<init>(List.java:201) ~[?:?]
    at NightUtils 1.0.jar/uk.rivwhall05.core.Main.registerCommands(Main.java:59) ~[NightUtils 1.0.jar:?]
    at NightUtils 1.0.jar/uk.rivwhall05.core.Main.onEnable(Main.java:35) ~[NightUtils 1.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:606) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:743) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:322) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:59:01] [Server thread/INFO]: [NightUtils] Disabling NightUtils v1.0
[13:59:01] [Server thread/INFO]: [GravesX] Enabling GravesX v4.9.7.3
[13:59:01] [Server thread/INFO]: [GravesX] Loading Libraries for GravesX
[13:59:01] [Server thread/INFO]: [GravesX] Loading library com.zaxxer.HikariCP version 6.0.0.
[13:59:01] [Server thread/INFO]: [GravesX] Loading library com.zaxxer:HikariCP:6.0.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.javassist:javassist:3.29.2-GA
[13:59:02] [Server thread/INFO]: [GravesX] Loading library io.micrometer:micrometer-core:1.5.10
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.hdrhistogram:HdrHistogram:2.1.12
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.latencyutils:LatencyUtils:2.0.3
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library com.zaxxer.HikariCP version 6.0.0 and shaded successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.xerial.sqlite-jdbc version 3.47.0.0.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.xerial:sqlite-jdbc:3.47.0.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library org.xerial.sqlite-jdbc version 3.47.0.0 successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.oshi.oshi-core version 6.6.5.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.oshi:oshi-core:6.6.5
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna:5.15.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna-platform:5.15.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:2.0.16
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library com.github.oshi.oshi-core version 6.6.5 successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.h2database.h2 version 2.3.232.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.h2database:h2:2.3.232
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library com.h2database.h2 version 2.3.232 and shaded successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-api version 4.17.0.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-api version 4.17.0 and shaded successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-minimessage version 4.17.0.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-minimessage:4.17.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-minimessage version 4.17.0 and shaded successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-serializer-gson version 4.17.0.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.17.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-json:4.17.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:option:1.0.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.google.code.gson:gson:2.8.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.google.auto.service:auto-service-annotations:1.1.1
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-serializer-gson version 4.17.0 and shaded successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-platform-bukkit version 4.3.3.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-bukkit:4.3.3
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-api:4.3.3
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.13.1
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.13.1
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-bungeecord:4.3.3
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-legacy:4.13.1
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-nbt:4.13.1
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.0.1
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.13.1
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson-legacy-impl:4.13.1
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-facet:4.3.3
[13:59:02] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-viaversion:4.3.3
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-platform-bukkit version 4.3.3 and shaded successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.puregero.multilib version 1.2.4.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib:1.2.4
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:22.0.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-common:1.2.4
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-bukkit:1.2.4
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-multipaper:1.2.4
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-common:1.2.4
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-bukkit:1.2.4
[13:59:02] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-paper:1.2.4
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library com.github.puregero.multilib version 1.2.4 and shaded successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.apache.commons.commons-text version 1.12.0.
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-text:1.12.0
[13:59:02] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-lang3:3.14.0
[13:59:02] [Server thread/INFO]: [GravesX] Loaded library org.apache.commons.commons-text version 1.12.0 and shaded successfully.
[13:59:02] [Server thread/INFO]: [GravesX] Finished Loading Libraries for GravesX.
[13:59:02] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-b131. Economy is enabled.
[13:59:02] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-b131's permissions provider.
[13:59:02] [Server thread/INFO]: [GravesX] Integration: Hooked into ProtocolLib 5.3.0.
[13:59:02] [Server thread/INFO]: [GravesX] Integration: Hooked into FastAsyncWorldEdit 2.13.1-SNAPSHOT-1063;7fa7c6f.
[13:59:03] [Server thread/INFO]: [GravesX] Integration: Hooked into MiniMessage.
[13:59:03] [Server thread/INFO]: [GravesX] Integration: Hooked into Minedown Adventure.
[13:59:03] [Server thread/INFO]: [GravesX] Integration: Hooked into ChestSort 14.2.0.
[13:59:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gravesx [4.9.7.3]
[13:59:03] [Server thread/INFO]: [GravesX] Integration: Hooked into PlaceholderAPI 2.11.6.
[13:59:03] [Server thread/WARN]: [GravesX] Compatibility: World "world" has keepInventory set to true, Graves will not be created here unless a player has the "graves.keepinventory.bypass" permission.
[13:59:03] [Server thread/WARN]: [GravesX] Compatibility: Essentials Detected, make sure you don't have the essentials.keepinv or essentials.keepxp permissions.
[13:59:03] [Server thread/INFO]: [GravesX] Integration: Hooked into LuckPerms 5.4.131.
[13:59:03] [Server thread/INFO]: [GravesX] Integration: Hooked into CoreProtect 23.0-RC1.
[13:59:03] [Server thread/INFO]: [GravesX] Integration: Hooked into NBTAPI 2.14.1. Using NBTAPI 2.14.1 for handling Inventory NBT Data.
[13:59:03] [Server thread/INFO]: [GravesX] Integration: Failed to hook into Geyser-Spigot. Assuming the server runs behind a proxy.
[13:59:03] [Server thread/INFO]: [GravesX] Integration: Hooked into floodgate 2.2.3-SNAPSHOT (b112-0360721).
[13:59:03] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Starting...
[13:59:03] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.pool.HikariPool] Graves H2 - Added connection conn1: url=jdbc:h2:file:/home/container/plugins/GravesX/data/graves.data user=SA
[13:59:03] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Start completed.
[13:59:03] [Server thread/WARN]: [GravesX] SQLite database file or folder does not exist in "plugins/GravesX/data". Skipping database migration.
[13:59:03] [Server thread/INFO]: [GravesX] Metrics has been enabled. All metrics will be sent to https://bstats.org/plugin/bukkit/Graves/12849 and https://bstats.org/plugin/bukkit/GravesX/23069.
[13:59:03] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.16.0
[13:59:03] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[13:59:03] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[13:59:03] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[13:59:03] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[13:59:03] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[13:59:03] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Eco (Core)!
[13:59:03] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ExcellentEnchants!
[13:59:03] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[13:59:03] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Floodgate!
[13:59:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.16.0]
[13:59:03] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[13:59:03] [Server thread/INFO]: [LushRewards] Enabling LushRewards v3.3.0
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded global item-template: upcoming-reward
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded global item-template: #
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded reward-template: iron_ingots
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded item-template: default-reward
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded item-template: redeemable-reward
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded item-template: collected-reward
[13:59:04] [Server thread/INFO]: [LushRewards] Successfully loaded 2 reward collections from 'goals'
[13:59:04] [Server thread/INFO]: [LushRewards] Successfully enabled module 'global-playtime-rewards'
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded item-template: default-reward
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded item-template: redeemable-reward
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded item-template: collected-reward
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded item-template: missed-reward
[13:59:04] [Server thread/INFO]: [LushRewards] Loaded item-template: P
[13:59:04] [Server thread/INFO]: [LushRewards] Successfully loaded 11 reward collections from 'daily-rewards'
[13:59:04] [Server thread/INFO]: [LushRewards] Successfully enabled module 'daily-rewards'
[13:59:04] [Server thread/INFO]: [LushRewards] Successfully enabled module 'playtime-tracker'
[13:59:04] [Server thread/INFO]: [LushRewards] Setting up 'sqlite' database
[13:59:04] [Server thread/INFO]: [LushRewards] Found plugin "floodgate". Enabling floodgate support.
[13:59:04] [Server thread/INFO]: [LushRewards] Found plugin "PlaceholderAPI". Enabling PlaceholderAPI support.
[13:59:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lushrewards [3.3.0]
[13:59:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rewarder [3.3.0]
[13:59:04] [Server thread/INFO]: [LushRewards] Successfully enabled module 'placeholder-api'
[13:59:04] [Server thread/INFO]: [LushRewards] Successfully enabled module 'floodgate'
[13:59:04] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v2.3.3
[13:59:04] [Server thread/INFO]: [AdvancedPortals] Loading Advanced Portals Core v2.3.3 for MC: 1.21.4
[13:59:04] [pool-110-thread-1/INFO]: [LushRewards] You are up to date! (3.3.0)
[13:59:04] [Server thread/INFO]: [AdvancedPortals] Advanced portals have been enabled!
[13:59:04] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[13:59:04] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[13:59:04] [Server thread/INFO]: [ajLeaderboards] Loaded 4 boards
[13:59:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[13:59:04] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[13:59:04] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[13:59:04] [Server thread/INFO]: [Sellwand] Enabling Sellwand v1.7.4
[13:59:04] [Server thread/INFO]:  
[13:59:04] [Server thread/INFO]: ====================================
[13:59:04] [Server thread/INFO]: Plugin name: Sellwand
[13:59:04] [Server thread/INFO]: Version: 1.7.4
[13:59:04] [Server thread/INFO]: Core version: 0.7.25
[13:59:04] [Server thread/INFO]: ====================================
[13:59:04] [Server thread/INFO]:  
[13:59:04] [Server thread/INFO]: [Sellwand] Loaded locale "en_US"
[13:59:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.4! Trying to find NMS support
[13:59:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R3' loaded!
[13:59:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Sellwand' to create a bStats instance!
[13:59:05] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.17.1
[13:59:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.17.1]
[13:59:05] [Server thread/INFO]: [PlayerKits²] Has been enabled! Version: 1.17.1
[13:59:05] [Server thread/INFO]: [PlayerKits²] Thanks for using my plugin!   ~Ajneb97
[13:59:05] [Server thread/INFO]: There is a new version available. (1.17.2)
[13:59:05] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/playerkits-2
[13:59:05] [Server thread/INFO]: [OpenInv] Enabling OpenInv v5.1.9
[13:59:05] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.8
[13:59:05] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[13:59:05] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[13:59:05] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[13:59:05] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[13:59:05] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[13:59:05] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Loading marriages ...
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Marriages loaded
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Loading priests ...
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Priests loaded
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Loading players ...
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Players loaded
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Loading marriages into cache ...
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Marriages loaded into cache
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Loading homes ...
[13:59:05] [Thread-36/INFO]: [MarriageMaster] Homes loaded
[13:59:05] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[13:59:05] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[13:59:05] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 826 items.
[13:59:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.7.8]
[13:59:06] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[13:59:06] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[13:59:06] [Server thread/INFO]: [SupremeTags] Enabling SupremeTags v2.1.3
[13:59:06] [Server thread/INFO]: 
[13:59:06] [Server thread/INFO]:   ____  _   _ ____  ____  _____ __  __ _____ _____  _    ____ ____  
[13:59:06] [Server thread/INFO]:  / ___|| | | |  _ \|  _ \| ____|  \/  | ____|_   _|/ \  / ___/ ___| 
[13:59:06] [Server thread/INFO]:  \___ \| | | | |_) | |_) |  _| | |\/| |  _|   | | / _ \| |  _\___ \ 
[13:59:06] [Server thread/INFO]:   ___) | |_| |  __/|  _ <| |___| |  | | |___  | |/ ___ \ |_| |___) |
[13:59:06] [Server thread/INFO]:  |____/ \___/|_|   |_| \_\_____|_|  |_|_____| |_/_/   \_\____|____/ 
[13:59:06] [Server thread/INFO]:  Allow players to show off their supreme tags!
[13:59:06] [Server thread/INFO]: 
[13:59:06] [Server thread/INFO]: [PREMIUM] Premium features activated!
[13:59:06] [Server thread/INFO]: [PREMIUM] Thanks for getting premium version of SupremeTags! Much love <33
[13:59:06] [Server thread/INFO]: 
[13:59:06] [Server thread/INFO]: 
[13:59:06] [Server thread/INFO]: > Version: 2.1.3
[13:59:06] [Server thread/INFO]: > Author: DevScape
[13:59:06] [Server thread/INFO]: > PlayerPoints: Not Found!
[13:59:06] [Server thread/INFO]: > Vault: Found! (ECONOMY)
[13:59:06] [Server thread/INFO]: > Database: SQLite!
[13:59:06] [Server thread/INFO]: > PlaceholderAPI: Found
[13:59:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supremetags [2.1.3]
[13:59:06] [Server thread/INFO]: [TAGS] loaded 34 tag(s) successfully.
[13:59:06] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.21
[13:59:06] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.4-211-6ea4202 (MC: 1.21.4)
[13:59:06] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R3
[13:59:06] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[13:59:06] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[13:59:06] [Server thread/INFO]: [HexNicks] Enabling HexNicks v2.2.2
[13:59:06] [Server thread/INFO]: [HexNicks] Running on PaperMC server software.
[13:59:06] [Server thread/INFO]: [HexNicks] Successfully loaded nicknames from Json storage.
[13:59:06] [Server thread/INFO]: [HexNicks] Hooking into PlaceholderAPI...
[13:59:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hexnicks [2.2.2]
[13:59:06] [Server thread/INFO]: [HexNicks] Hooking into Vault...
[13:59:06] [Server thread/INFO]: [HexNicks] Hooking into Essentials...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.8
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Contributors: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Item display, loading ProtocolLib support...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded ProtocolLib support!
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[13:59:06] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[13:59:06] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Used 102ms to fetch 455 shops from database.
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Used 16ms to load 0 shops into memory (455 shops will be loaded after chunks/world loaded).
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[13:59:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.8]
[13:59:06] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[13:59:07] [pool-112-thread-1/INFO]: [ajLeaderboards] An update is available! (2.10.1) Run /ajLeaderboards update to download it!
[13:59:07] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[13:59:07] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete. (495ms)
[13:59:07] [Server thread/INFO]: [LPC] Enabling LPC v3.6.1
[13:59:07] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2025.02
[13:59:07] [Server thread/INFO]: [UltimateAutoRestart] 2025.02, a free resource by Norska - Thanks for downloading!
[13:59:07] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
[13:59:07] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[13:59:07] [Server thread/INFO]: [SilkSpawners_v2] Enabling SilkSpawners_v2 v2.3.2
[13:59:07] [Server thread/INFO]: [SilkSpawners] Loading configuration...
[13:59:07] [Server thread/INFO]: [SilkSpawners] Configuration is up to date
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting SilkSpawners v2.3.2
[13:59:07] [Thread-41/INFO]: [SilkSpawners] [INFO]: Checking for updates
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading server platform
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Initialized plugin for bukkit server
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading Cross-Version support
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Loaded support for version 1.21.4
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading locale file
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting bStats integration
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering listeners
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering commands
[13:59:07] [Server thread/INFO]: [SilkSpawners] [INFO]: Started SilkSpawners v2.3.2
[13:59:07] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.4.3
[13:59:07] [Thread-41/INFO]: [SilkSpawners] [INFO]: The plugin is up to date (Current release v2.3.2)
[13:59:07] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[13:59:07] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[13:59:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playervaults [4.4.3]
[13:59:07] [Server thread/INFO]: [PlayerVaults] Adding placeholders for PlaceholderAPI!
[13:59:07] [Server thread/INFO]: [PlayerVaults] Loaded! Took 242ms
[13:59:07] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.21.0-dev+189-eab2201
[13:59:07] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[13:59:07] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[13:59:07] [Server thread/INFO]: [ZelTeams] Enabling ZelTeams v3.0.1
[13:59:07] [Server thread/INFO]: 
[13:59:07] [Server thread/INFO]: 
[13:59:07] [Server thread/INFO]:   ______    _ _                 _____           _           _        _           
[13:59:07] [Server thread/INFO]:  |___  /   | | |               |_   _|         | |         | |      (_)          
[13:59:07] [Server thread/INFO]:     / / ___| | |_ _   ___   __   | |  _ __   __| |_   _ ___| |_ _ __ _  ___  ___ 
[13:59:07] [Server thread/INFO]:    / / / _ \ | __| | | \ \ / /   | | | '_ \ / _` | | | / __| __| '__| |/ _ \/ __|
[13:59:07] [Server thread/INFO]:   / /_|  __/ | |_| |_| |\ V /   _| |_| | | | (_| | |_| \__ \ |_| |  | |  __/\__ \
[13:59:07] [Server thread/INFO]:  /_____\___|_|\__|\__,_| \_/   |_____|_| |_|\__,_|\__,_|___/\__|_|  |_|\___||___/
[13:59:07] [Server thread/INFO]:                                                                                  
[13:59:07] [Server thread/INFO]:                                                               
[13:59:07] [Server thread/INFO]:                           ⚡ Powered by the V3 ⚡                 
[13:59:07] [Server thread/INFO]:                                                               
[13:59:07] [Server thread/INFO]: 
[13:59:07] [Server thread/INFO]: ZelTeams V3 - 3.0.1
[13:59:07] [Server thread/INFO]: 
[13:59:07] [Server thread/INFO]: Current Java Version: 21.0.6
[13:59:07] [Server thread/INFO]: Current OS: Linux
[13:59:07] [Server thread/INFO]: Dependencies: LuckPerms (recommended), Vault, any economy plugin.
[13:59:07] [Server thread/INFO]: 
[13:59:07] [Server thread/INFO]: Proudly developed by Zeltuv Industries LTD. All rights reserved.
[13:59:07] [Server thread/INFO]: 
[13:59:07] [Server thread/INFO]: 
[13:59:07] [Server thread/INFO]: Loading module com.zeltuv.teams.config.ConfigManager
[13:59:08] [Server thread/ERROR]: ------------------
[13:59:08] [Server thread/ERROR]: Invalid license key 'DISCORD.GG/ZELTUV TO GET YOUR LICENSE'
[13:59:08] [Server thread/ERROR]: 
[13:59:08] [Server thread/ERROR]: Please contact the support team at discord.gg/zeltuv
[13:59:08] [Server thread/ERROR]: in order to get your license key.
[13:59:08] [Server thread/ERROR]: ------------------
[13:59:08] [Server thread/INFO]: [ZelTeams] Disabling ZelTeams v3.0.1
[13:59:08] [Server thread/INFO]: [ZelTeams] Shutting down database executor now...
[13:59:08] [Server thread/INFO]: [eGlow] Enabling eGlow v2.2
[13:59:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eglow [1.0]
[13:59:08] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.7.1
[13:59:09] [Server thread/INFO]: [PlayerWarps] This plugin is licensed to Hawkmaster123 (244262) from Spigot!
[13:59:09] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[13:59:10] [Server thread/INFO]: [PlayerWarps] Found 25 config files to load!
[13:59:11] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[13:59:11] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[13:59:11] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[13:59:11] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[13:59:11] [Server thread/INFO]: [PlayerWarps] Found XP Currency integrating support...
[13:59:11] [Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[13:59:11] [Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[13:59:11] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[13:59:11] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[13:59:11] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[13:59:11] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[13:59:11] [Server thread/INFO]: [AdvancedJobs] Enabling AdvancedJobs v1.7.6
[13:59:11] [Server thread/INFO]: [ExcellentCrates] Hooked into ExcellentCrates
[13:59:11] [Server thread/INFO]: [Votifier] Hooked into Votifier
[13:59:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedjobs [1.0.0]
[13:59:11] [Server thread/INFO]: [libreforge] Enabling libreforge v4.75.0
[13:59:11] [Server thread/INFO]: [libreforge] Loading libreforge
[13:59:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.75.0]
[13:59:11] [Server thread/INFO]: [libreforge] Loaded integrations: Citizens, TAB, ModelEngine, Vault, Votifier, WorldGuard
[13:59:11] [Server thread/INFO]: [libreforge] 
[13:59:11] [Server thread/INFO]: [libreforge] Hey, what's this plugin doing here? I didn't install it!
[13:59:11] [Server thread/INFO]: [libreforge] libreforge is the effects system for plugins like EcoEnchants,
[13:59:11] [Server thread/INFO]: [libreforge] EcoJobs, EcoItems, etc. If you're looking for config options for
[13:59:11] [Server thread/INFO]: [libreforge] things like cooldown messages, lrcdb, and stuff like that, you'll
[13:59:11] [Server thread/INFO]: [libreforge] find it under /plugins/libreforge
[13:59:11] [Server thread/INFO]: [libreforge] 
[13:59:11] [Server thread/INFO]: [libreforge] Don't worry about updating libreforge, it's handled automatically!
[13:59:11] [Server thread/INFO]: [libreforge] 
[13:59:11] [Server thread/INFO]: [spark] Starting background profiler...
[13:59:12] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[13:59:12] [Server thread/INFO]: Done preparing level "world" (19.543s)
[13:59:12] [Server thread/INFO]: Running delayed init tasks
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[13:59:12] [Craft Scheduler Thread - 4 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: Nexo | Awaiting ModelEngine ResourcePack...
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[13:59:12] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[13:59:12] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[13:59:12] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[13:59:12] [Craft Scheduler Thread - 7 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value whimsiworld! It's neither a valid name nor UUID.
[13:59:12] [Craft Scheduler Thread - 9 - Essentials/INFO]: [Essentials] Fetching version information...
[13:59:12] [Craft Scheduler Thread - 7 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value whimsiworld! It's neither a valid name nor UUID.
[13:59:12] [Craft Scheduler Thread - 7 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value whimsiworld! It's neither a valid name nor UUID.
[13:59:12] [Craft Scheduler Thread - 7 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value whimsiworld! It's neither a valid name nor UUID.
[13:59:12] [Craft Scheduler Thread - 7 - DecentHolograms/WARN]: [DecentHolograms] Cannot retrieve World from value whimsiworld! It's neither a valid name nor UUID.
[13:59:12] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: [DecentHolograms] Loaded 5 holograms!
[13:59:12] [ForkJoinPool-9-worker-4/INFO]: [ModelEngine] [A] 
[13:59:12] [ForkJoinPool-9-worker-4/INFO]: [ModelEngine] [A] Importing pink.bbmodel.
[13:59:12] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:59:12] [Craft Scheduler Thread - 18 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[13:59:12] [Craft Scheduler Thread - 17 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[13:59:12] [ForkJoinPool-9-worker-2/INFO]: [ModelEngine] [A] 
[13:59:12] [ForkJoinPool-9-worker-2/INFO]: [ModelEngine] [A] Importing excavator_wisp.bbmodel.
[13:59:12] [ForkJoinPool-9-worker-5/INFO]: [ModelEngine] [A] 
[13:59:12] [ForkJoinPool-9-worker-5/INFO]: [ModelEngine] [A] Importing swift_wisp.bbmodel.
[13:59:12] [Craft Scheduler Thread - 31 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[13:59:12] [ForkJoinPool-9-worker-6/INFO]: [ModelEngine] [A] 
[13:59:12] [Craft Scheduler Thread - 33 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[13:59:12] [ForkJoinPool-9-worker-6/INFO]: [ModelEngine] [A] Importing water_wisp.bbmodel.
[13:59:12] [ForkJoinPool-9-worker-1/INFO]: [ModelEngine] [A] 
[13:59:12] [ForkJoinPool-9-worker-1/INFO]: [ModelEngine] [A] Importing death_wisp.bbmodel.
[13:59:12] [ForkJoinPool-9-worker-3/INFO]: [ModelEngine] [A] 
[13:59:12] [ForkJoinPool-9-worker-3/INFO]: [ModelEngine] [A] Importing necromancer_wisp.bbmodel.
[13:59:12] [Craft Scheduler Thread - 5 - GravesX/INFO]: [GravesX] Loading grave maps...
[13:59:12] [Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] Checking for Updates ... 
[13:59:12] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.29.0
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[13:59:12] [Craft Scheduler Thread - 5 - GravesX/WARN]: [GravesX] Grave 0782aa00-10f9-4019-9e7c-2b16e2c30f50 at location World: world_the_end, x: -326, y: 0, z: -1014 is invalid. If this was caused by an addon, then report it to the plugin author. Reason: killer_type is null
[13:59:12] [Craft Scheduler Thread - 5 - GravesX/INFO]: [GravesX] Loaded 1 grave maps into cache.
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Generator Profiled:
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Import Phase: 39.8ms
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Assets Phase: 45.8ms
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Zipping Phase: 31.6ms
[13:59:12] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: Nexo | ModelEngine ResourcePack is ready.
[13:59:12] [Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] No new version available
[13:59:12] [Server thread/INFO]: Nexo | Furniture grave has lights that overlap with the barrierHitboxes at: 0,0,0
[13:59:12] [Server thread/INFO]: Nexo | Nexo will ignore any lights that conflict with a barrier...
[13:59:12] [Server thread/INFO]: Nexo | The recipe "bedrock_pickaxe" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "obsidian_sword" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "obsidian_helmet" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "obsidian_chestplate" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "obsidian_leggings" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "obsidian_boots" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "glass_sword" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "amethyst" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "ruby" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "onyx" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Server thread/INFO]: Nexo | The recipe "orax" is invalid, please ensure all its ingredients exist in your config
[13:59:12] [Craft Scheduler Thread - 9 - Essentials/WARN]: [Essentials] You're 14 EssentialsX dev build(s) out of date!
[13:59:12] [Craft Scheduler Thread - 9 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[13:59:12] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Generating resourcepack...
[13:59:12] [Server thread/WARN]: [ExcellentCrates] Problems in 'vote' crate (plugins/ExcellentCrates/crates/vote.yml):
[13:59:12] [Server thread/ERROR]: [ExcellentCrates] -> No rewards defined!
[13:59:12] [Server thread/WARN]: [ExcellentCrates] Problems in 'spawner_crate' crate (plugins/ExcellentCrates/crates/spawner_crate.yml):
[13:59:12] [Server thread/ERROR]: [ExcellentCrates] -> Animation is invalid!
[13:59:12] [Server thread/WARN]: [ExcellentCrates] Problems in 'plush' crate (plugins/ExcellentCrates/crates/plush.yml):
[13:59:12] [Server thread/ERROR]: [ExcellentCrates] -> Animation is invalid!
[13:59:12] [Server thread/WARN]: [ExcellentCrates] Problems in 'hists_t' crate (plugins/ExcellentCrates/crates/hists_t.yml):
[13:59:12] [Server thread/ERROR]: [ExcellentCrates] -> No rewards defined!
[13:59:12] [Server thread/ERROR]: [ExcellentCrates] -> Invalid item data!
[13:59:12] [Server thread/ERROR]: [ExcellentCrates] -> No key(s) defined!
[13:59:12] [Server thread/INFO]: [Custom Anvil] Preparing Excellent Enchants compatibility...
[13:59:12] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Importing DefaultPack...
[13:59:12] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Removed core-shaders from ModelEngine-ResourcePack...
[13:59:12] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Imported ModelEngine pack successfully!
[13:59:12] [Server thread/WARN]: [Custom Anvil] Duplicate registered enchantment name. Please check that configuration is using namespace.
[13:59:12] [Server thread/INFO]: [Custom Anvil] Excellent Enchants should now work as expected !
[13:59:12] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Converting global lang file to individual language files...
[13:59:12] [Craft Scheduler Thread - 17 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[13:59:12] [Craft Scheduler Thread - 28 - SupremeTags/INFO]: > Updater: An update is available! 2.1.5
[13:59:12] [Craft Scheduler Thread - 28 - SupremeTags/INFO]: Download at https://www.spigotmc.org/resources/111481/updates
[13:59:12] [Craft Scheduler Thread - 7 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: 
- https://www.spigotmc.org/resources/96927/
- https://modrinth.com/plugin/decentholograms
[13:59:12] [Server thread/INFO]: [GravesX] Registering Crash Handler...
[13:59:12] [Server thread/INFO]: [GravesX] Registered Crash Handler. Server will handle crashes in a separate thread.
[13:59:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.7.1]
[13:59:13] [Server thread/WARN]: [OtherAnimalTeleport] Unrecognized world name specified (world2)! Skipping...
[13:59:13] [Server thread/WARN]: [OtherAnimalTeleport] Unrecognized world name specified (world2_nether)! Skipping...
[13:59:13] [Server thread/INFO]: [OtherAnimalTeleport] AnimalTeleport has been enabled!
[13:59:13] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: EssentialsX Economy
[13:59:13] [Server thread/WARN]: [QuickShop-Hikari] QuickShop detected that no tax account exists and will try to create one. If you see any errors, please change the tax-account name in the config.yml to that of the Server owner.
[13:59:13] [Server thread/INFO]: [Essentials] Created a User for Tax (2c5f00ba-902c-411b-b9b9-9261cf43aee1) for non Bukkit type: com.earth2me.essentials.OfflinePlayerStub
[13:59:13] [Server thread/INFO]: [QuickShop-Hikari] Tax account created.
[13:59:13] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[13:59:13] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion ontime due to a missing plugin: OnTime
[13:59:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[13:59:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: pinger [1.0.1]
[13:59:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[13:59:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[13:59:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[13:59:13] [Server thread/INFO]: 5 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[13:59:13] [Server thread/INFO]: Nexo | Failed to fetch minecraft:lightning_power_armor_layer_1.png used by lightning_power_helmet
[13:59:13] [Server thread/INFO]: Nexo | Failed to fetch minecraft:lightning_power_cosmetics_armor_layer_1.png used by lightning_power_cosmetics_helmet
[13:59:13] [Server thread/WARN]: [TempFly] ************************************************
[13:59:13] [Server thread/WARN]: [TempFly] * There is a new version of TempFly available!
[13:59:13] [Server thread/WARN]: [TempFly] *  
[13:59:13] [Server thread/WARN]: [TempFly] * Your version:   1.4.1
[13:59:13] [Server thread/WARN]: [TempFly] * Latest version: 1.4.4
[13:59:13] [Server thread/WARN]: [TempFly] ************************************************
[13:59:13] [Server thread/INFO]: Nexo | The recipe "bedrock_pickaxe" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "obsidian_sword" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "obsidian_helmet" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "obsidian_chestplate" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "obsidian_leggings" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "obsidian_boots" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "glass_sword" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "amethyst" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "ruby" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "onyx" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Nexo | The recipe "orax" is invalid, please ensure all its ingredients exist in your config
[13:59:13] [Server thread/INFO]: Done (60.308s)! For help, type "help"
[13:59:13] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Validating ResourcePack files...
[13:59:13] [Craft Scheduler Thread - 35 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for itemframe...
[13:59:13] [Craft Scheduler Thread - 6 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for armorstand...
[13:59:13] [Craft Scheduler Thread - 39 - GravesX/INFO]: [GravesX] Loading Block Map cache...
[13:59:13] [Craft Scheduler Thread - 21 - GravesX/INFO]: [GravesX] Loading Holograms into Hologram Map Cache...
[13:59:13] [Craft Scheduler Thread - 35 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for itemframe.
[13:59:13] [Craft Scheduler Thread - 6 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for armorstand.
[13:59:13] [Craft Scheduler Thread - 39 - GravesX/INFO]: [GravesX] Loaded 1 Blocks into the Block Map Cache.
[13:59:13] [Craft Scheduler Thread - 21 - GravesX/INFO]: [GravesX] Loaded 3 Holograms into Hologram Map Cache.
[13:59:13] [Server thread/INFO]: [eco] Loaded eco
[13:59:13] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Font minecraft:default is trying to use texture minecraft:required/esc.png, but it does not exist within Nexo's ResourcePacks
[13:59:13] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | It has been temporarily replaced with a placeholder-image to not break the pack
[13:59:14] [Server thread/INFO]: [EcoPets] Loaded EcoPets
[13:59:14] [Craft Scheduler Thread - 40 - OtherAnimalTeleport/WARN]: [OtherAnimalTeleport] Hooray! You're running the latest version!
[13:59:14] [Server thread/INFO]: [libreforge] Loaded libreforge
[13:59:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15.2-b216e2b]
[13:59:14] [Server thread/INFO]: [Quests] Successfully hooked into Essentials economy.
[13:59:14] [Server thread/INFO]: [Quests] 46 task types have been registered.
[13:59:14] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[13:59:14] [Server thread/INFO]: [Quests] 7 quests have been registered.
[13:59:14] [Server thread/WARN]: [Quests] You have configuration issues preventing some quests from loading.
[13:59:14] [Server thread/WARN]: [Quests] You can view these issues with the command: /q a config.
[13:59:14] [Server thread/INFO]: YoDoBo (/172.18.0.1:34646) lost connection: Disconnected
[13:59:14] [Server thread/INFO]: [AdvancedJobs] Successfully hooked into ProtocolLib, WorldGuard, PlaceholderAPI, Essentials, Vault, LuckPerms, SuperVanish, ViaVersion, Tab.
[13:59:14] [Craft Scheduler Thread - 21 - HMCWraps/WARN]: [HMCWraps] Plugin HMCWraps v1.6.1 generated an exception while executing task 106
com.google.gson.JsonSyntaxException: Expected a com.google.gson.JsonObject but was com.google.gson.JsonPrimitive; at path $
    at com.google.gson.internal.bind.TypeAdapters$34$1.read(TypeAdapters.java:1152) ~[gson-2.11.0.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1361) ~[gson-2.11.0.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1262) ~[gson-2.11.0.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1171) ~[gson-2.11.0.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1107) ~[gson-2.11.0.jar:?]
    at HMCWraps-1.6.1.jar/de.skyslycer.hmcwraps.updater.PluginUpdater.check(PluginUpdater.java:66) ~[HMCWraps-1.6.1.jar:?]
    at HMCWraps-1.6.1.jar/de.skyslycer.hmcwraps.updater.ContinuousUpdateChecker.lambda$check$1(ContinuousUpdateChecker.java:31) ~[HMCWraps-1.6.1.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.21.4.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:59:14] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | Finished generating resourcepack!

[13:59:14] [Craft Scheduler Thread - 24 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[13:59:15] [Craft Scheduler Thread - 5 - Sellwand/INFO]: Hooked Essentials as item price. (Config: ShopGUIPlus, Hook name: ShopGUIPlus)
[13:59:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2025.02]
[13:59:15] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[13:59:15] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[13:59:15] [ForkJoinPool.commonPool-worker-2/INFO]: Nexo | ResourcePack has been uploaded to https://atlas.nexomc.com/pack.zip?id=8817b89b77831da783094490de559a1c20e9fbcd
[13:59:22] [Craft Scheduler Thread - 13 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.18.3
[13:59:24] [User Authenticator #0/INFO]: UUID of player YoDoBo is c7b87891-87d2-4be6-9dc2-77d297495959
[13:59:25] [Server thread/INFO]: [VotingPlugin] Login: YoDoBo (c7b87891-87d2-4be6-9dc2-77d297495959)
[13:59:25] [Server thread/INFO]: YoDoBo[/76.101.196.46:57468] logged in with entity id 45 at ([world]113.38495888365946, 224.0625, 383.4823962466544)
[13:59:25] [Server thread/INFO]: [+] YoDoBo has joined
[13:59:25] [Craft Scheduler Thread - 21 - HMCWraps/WARN]: [HMCWraps] Plugin HMCWraps v1.6.1 generated an exception while executing task 300
com.google.gson.JsonSyntaxException: Expected a com.google.gson.JsonObject but was com.google.gson.JsonPrimitive; at path $
    at com.google.gson.internal.bind.TypeAdapters$34$1.read(TypeAdapters.java:1152) ~[gson-2.11.0.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1361) ~[gson-2.11.0.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1262) ~[gson-2.11.0.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1171) ~[gson-2.11.0.jar:?]
    at com.google.gson.Gson.fromJson(Gson.java:1107) ~[gson-2.11.0.jar:?]
    at HMCWraps-1.6.1.jar/de.skyslycer.hmcwraps.updater.PluginUpdater.check(PluginUpdater.java:66) ~[HMCWraps-1.6.1.jar:?]
    at HMCWraps-1.6.1.jar/de.skyslycer.hmcwraps.updater.ContinuousUpdateChecker.getLatest(ContinuousUpdateChecker.java:93) ~[HMCWraps-1.6.1.jar:?]
    at HMCWraps-1.6.1.jar/de.skyslycer.hmcwraps.updater.ContinuousUpdateChecker.checkPlayer(ContinuousUpdateChecker.java:73) ~[HMCWraps-1.6.1.jar:?]
    at HMCWraps-1.6.1.jar/de.skyslycer.hmcwraps.updater.ContinuousUpdateChecker.checkPlayer(ContinuousUpdateChecker.java:62) ~[HMCWraps-1.6.1.jar:?]
    at HMCWraps-1.6.1.jar/de.skyslycer.hmcwraps.listener.PlayerJoinListener.lambda$onPlayerJoin$1(PlayerJoinListener.java:20) ~[HMCWraps-1.6.1.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.21.4.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:59:32] [Server thread/INFO]: YoDoBo issued server command: /npc move 09a6ad31-d045-4e1d-bf4b-c16ad132e5f0
[13:59:33] [Server thread/ERROR]: Command exception: /npc move 09a6ad31-d045-4e1d-bf4b-c16ad132e5f0
org.bukkit.command.CommandException: Cannot execute command 'npc' in plugin Citizens v2.0.38-SNAPSHOT (build 3777) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:82) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:30) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:13) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:105) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:450) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.commands.Commands.performCommand(Commands.java:357) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.commands.Commands.performCommand(Commands.java:347) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.commands.Commands.performCommand(Commands.java:341) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2214) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$11(ServerGamePacketListenerImpl.java:2187) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:155) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1448) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:176) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:129) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1428) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1422) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:139) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1379) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1387) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1264) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:310) ~[paper-1.21.4.jar:1.21.4-211-6ea4202]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]