Paste #137599: citizens

Date: 2025/11/24 13:06:38 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664


[21:04:10] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.9+10-LTS; Eclipse Adoptium Temurin-21.0.9+10) on Linux 6.1.0-34-amd64 (amd64)
[21:04:10] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.10-115-main@af06383 (2025-11-21T23:42:01Z) for Minecraft 1.21.10
[21:04:10] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[21:04:10] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/MythicMobsPremium-5.10.1-SNAPSHOT.jar'...
[21:04:13] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MythicMobsPremium-5.10.1-SNAPSHOT.jar' in 2639ms.
[21:04:13] [ServerMain/ERROR]: [DirectoryProviderSource] Error loading plugin: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/votingplugineditor-1.1.1.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
java.lang.RuntimeException: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/votingplugineditor-1.1.1.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.registerProviders(FileProviderSource.java:85) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.Main.main(Main.java:110) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at org.bukkit.craftbukkit.Main.main(Main.java:242) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.IllegalArgumentException: Directory 'plugins/.paper-remapped/votingplugineditor-1.1.1.jar' does not contain a paper-plugin.yml or plugin.yml! Could not determine plugin type, cannot load a plugin from it!
    ... 10 more
[21:04:14] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[21:04:14] [ServerMain/INFO]: [PluginInitializerManager] Initialized 100 plugins
[21:04:14] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (8):
 - CoinsEngine (2.6.0), CommandPanels (4.1.3), HuskClaims (1.5.10), MarriageMaster (2.8.4), MiniMOTD (2.2.0), Nexo (1.15), RoseStacker (1.5.37), nightcore (2.10.2)
[21:04:14] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (92):
 - ACNotify (Build 7), AdvancedJobs (1.9.6), ArtMap (3.9.24), BetterRTP (3.6.13), Chunky (1.4.40), ChunkyBorder (1.2.23), Citizens (2.0.40-SNAPSHOT (build 3998)), CookieClickerZ (1.2.1), CoreProtect (23.3), CraftingStore (2.9.3), CustomAnvil (1.15.5), CustomJoinMessages (17.9.1), CustomSprays (1.5.21), DecentHolograms (2.9.8), DeluxeMenus (1.14.1-Release), Denizen (1.3.0-SNAPSHOT (build 1804-REL)), DiscordSRV (1.30.1), EconomyBridge (1.2.1), EnchantsSquared (2.5.17), EpicRename (3.12.2), Essentials (2.22.0-dev+44-87dfe37), EternalTags (1.3.3), ExcellentCrates (6.5.1), ExcellentShop (4.22.0), FastAsyncWorldEdit (2.14.1-SNAPSHOT-1218+d695987), FirstJoinRewards (1.3), FunGames (2.0), GSit (3.0.1), GardeningTweaks (3.0.7), HMCWraps (1.7.1), HavenDisplays (1.7.0.548), HeadBlocks (2.8.2), HeadDatabase (4.21.5), HeadDrop (5.4.5), HelpCommand (2.9.2-PublicRelease), HibiscusCommons (0.8.1-d9fbae1d), InvUnload (5.2.0), InvisibleItemFrames (2.16.3), JukeBox (1.20.13), JukeBoxPlus (3.8.0), KixsAutoAnnouncerPremium (1.5.1), KixsChatGames (2.2.1), LagFixer (1.5.1.5 [build 136]), LevelledMobs (4.4.0 b137), LoneLibs (1.0.65), LuckPerms (5.5.0), ModelEngine (R4.0.9), Multiverse-Core (5.2.1), MythicMobs (5.10.1-SNAPSHOT-1fc059c3), NoteBlockAPI (1.6.3), Piles (1.1), Pl-Hide-Pro (2.13.0), PlaceholderAPI (2.11.7), PlayerParticles (8.11), PlayerWarps (7.9.0), Playtimes (1.6.2b), PocketGames (3.26.2), ProtocolLib (5.4.0), PyroFishingPro (4.9.27), PyroLib (1.4.8), ResizePlayers (2.1), ResourceWorld (2.1.0), RoseChat (Beta-38), SafariNet (1.16.29-SNAPSHOT), SetSpawn (5.5.1), SmartSort (1.1.0), SoulGraves (1.5.1), SoulGravesPlus (1.6.1), StaffPlusPlus (1.21.17), TAB (5.3.2), TarotEngine (1.0.8), TheGlow (1.2.5-STABLE), UltimateRewards (2.13.3), UltraRepair (4.3.0), UpgradeableHoppers (4.20.2), ValorlessUtils (1.17.0.313), Vault (1.7.3-b131), ViaVersion (5.5.0), VirtualBooks (2.8.0), VoidWorldGenerator (1.3.6), VotifierPlus (1.4.3), VotingPlugin (6.19.1), Vouchers (4.2.0), WitherSpawn (1.7), WorldGuard (7.0.14+2339-43997ec), WorldGuardExtraFlags (4.2.4-SNAPSHOT), Worldguard-Custom-Interact (2.0), featurebox (1.0.0.8), mcMMO (2.2.045), packetevents (2.10.1), sleep-most (5.6.1), truePortals (1.3.2)
[21:04:17] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, profilesHost=https://api.mojang.com, name=PROD]
[21:04:18] [ServerMain/INFO]: Loaded 1461 recipes
[21:04:18] [ServerMain/INFO]: Loaded 1574 advancements
[21:04:18] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[21:04:18] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 251.3ms
[21:04:18] [Server thread/INFO]: Starting minecraft server version 1.21.10
[21:04:18] [Server thread/INFO]: Loading properties
[21:04:18] [Server thread/INFO]: This server is running Paper version 1.21.10-115-main@af06383 (2025-11-21T23:42:01Z) (Implementing API version 1.21.10-R0.1-SNAPSHOT)
[21:04:18] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[21:04:18] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:04:18] [Server thread/INFO]: Using 4 threads for Netty based IO
[21:04:18] [Server thread/INFO]: [MoonriseCommon] Paper is using 3 worker threads, 1 I/O threads
[21:04:18] [Server thread/INFO]: Default game type: SURVIVAL
[21:04:18] [Server thread/INFO]: Generating keypair
[21:04:18] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:19456
[21:04:18] [Server thread/INFO]: Using epoll channel type
[21:04:18] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[21:04:18] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 3 libraries... please wait
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.2/phtree-2.8.2.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.16/fastutil-8.5.16.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] 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
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[21:04:19] [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
[21:04:19] [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
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:04:19] [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
[21:04:19] [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
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[21:04:19] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loading 2 libraries... please wait
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/lettuce/lettuce-core/6.7.1.RELEASE/lettuce-core-6.7.1.RELEASE.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/redis/clients/authentication/redis-authx-core/0.1.1-beta2/redis-authx-core-0.1.1-beta2.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/netty/netty-common/4.1.118.Final/netty-common-4.1.118.Final.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/netty/netty-handler/4.1.118.Final/netty-handler-4.1.118.Final.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/netty/netty-resolver/4.1.118.Final/netty-resolver-4.1.118.Final.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/netty/netty-buffer/4.1.118.Final/netty-buffer-4.1.118.Final.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/netty/netty-transport-native-unix-common/4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/netty/netty-codec/4.1.118.Final/netty-codec-4.1.118.Final.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/netty/netty-transport/4.1.118.Final/netty-transport-4.1.118.Final.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/projectreactor/reactor-core/3.6.6/reactor-core-3.6.6.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/netty/netty-resolver-dns/4.1.118.Final/netty-resolver-dns-4.1.118.Final.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [SoulGraves] Loaded library /home/container/libraries/io/netty/netty-codec-dns/4.1.118.Final/netty-codec-dns-4.1.118.Final.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loading 1 libraries... please wait
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loading 3 libraries... please wait
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/commons-io/commons-io/2.19.0/commons-io-2.19.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/com/github/oshi/oshi-core/6.8.0/oshi-core-6.8.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar
[21:04:19] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [UpgradeableHoppers] Loading 4 libraries... please wait
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [UpgradeableHoppers] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [UpgradeableHoppers] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [UpgradeableHoppers] Loaded library /home/container/libraries/org/slf4j/slf4j-jdk14/1.7.32/slf4j-jdk14-1.7.32.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [UpgradeableHoppers] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loading 5 libraries... please wait
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-api/4.24.0/adventure-api-4.24.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-key/4.24.0/adventure-key-4.24.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.24.0/adventure-text-minimessage-4.24.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.24.0/adventure-text-serializer-gson-4.24.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.24.0/adventure-text-serializer-json-4.24.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-commons/4.24.0/adventure-text-serializer-commons-4.24.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.4.1/adventure-platform-bukkit-4.4.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.4.1/adventure-platform-api-4.4.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.4.1/adventure-text-serializer-bungeecord-4.4.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.21.0/adventure-text-serializer-legacy-4.21.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.21.0/adventure-nbt-4.21.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.21.0/adventure-text-serializer-gson-legacy-impl-4.21.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.21.0/adventure-text-serializer-json-legacy-impl-4.21.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.4.1/adventure-platform-facet-4.4.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.4.1/adventure-platform-viaversion-4.4.1.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [HibiscusCommons] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loading 2 libraries... please wait
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/container/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /home/container/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[21:04:20] [Server thread/INFO]: [TheGlow] Dependencies loaded correctly
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [Custom Anvil] Loading 1 libraries... please wait
[21:04:20] [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
[21:04:20] [Server thread/INFO]: [SpigotLibraryLoader] [Custom Anvil] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[21:04:20] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[21:04:24] [Server thread/WARN]: Legacy plugin Playtimes v1.6.2b does not specify an api-version.
[21:04:24] [Server thread/INFO]: [JukeBoxPlus] Hooked into WorldGuard 7.0.14+2339-43997ec
[21:04:24] [Server thread/WARN]: Legacy plugin ACNotify vBuild 7 does not specify an api-version.
[21:04:24] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'featurebox-1.0.0.10.jar' in folder 'plugins/.paper-remapped'
org.bukkit.plugin.InvalidPluginException: java.lang.UnsupportedClassVersionError: arthessia/featurebox/Plugin has been compiled by a more recent version of the Java Runtime (class file version 66.0), this version of the Java Runtime only recognizes class file versions up to 65.0
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:129) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:39) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:555) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:323) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.UnsupportedClassVersionError: arthessia/featurebox/Plugin has been compiled by a more recent version of the Java Runtime (class file version 66.0), this version of the Java Runtime only recognizes class file versions up to 65.0
    at java.base/java.lang.ClassLoader.defineClass1(Native Method) ~[?:?]
    at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1027) ~[?:?]
    at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:263) ~[paper-api-1.21.10-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:180) ~[paper-api-1.21.10-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:175) ~[paper-api-1.21.10-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:536) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:515) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:82) ~[paper-api-1.21.10-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    ... 9 more
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loading 4 libraries... please wait
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.14.0/adventure-text-serializer-legacy-4.14.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loading 1 libraries... please wait
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/com/zaxxer/HikariCP/6.3.0/HikariCP-6.3.0.jar
[21:04:24] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDrop] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[21:04:24] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.5.0
[21:04:24] [Server thread/INFO]: [ViaVersion] ViaVersion 5.5.0 is now loaded. Registering protocol transformers and injecting...
[21:04:24] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[21:04:24] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[21:04:25] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.0
[21:04:25] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[21:04:25] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.14.1-SNAPSHOT-1218+d695987
[21:04:26] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2adf9652]
[21:04:26] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0
[21:04:26] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.10) has not yet been tested! Proceed with caution.
[21:04:26] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.7
[21:04:26] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.14+2339-43997ec
[21:04:26] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.10.1
[21:04:27] [Server thread/INFO]: [CoreLogging] Loading server plugin Multiverse-Core v5.2.1
[21:04:27] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.40-SNAPSHOT (build 3998)
[21:04:27] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.10.1-SNAPSHOT-1fc059c3
[21:04:27] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[21:04:27] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[21:04:27] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.2.045
[21:04:27] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[21:04:27] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.22.0-dev+44-87dfe37
[21:04:27] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.9
[21:04:27] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.10.2
[21:04:27] [Server thread/INFO]: [HuskClaims] Loading server plugin HuskClaims v1.5.10
[21:04:27] [Server thread/INFO]: [HuskClaims] Registered 'on_load' hooks
[21:04:27] [Server thread/INFO]: [HuskClaims] Successfully loaded HuskClaims v1.5.10
[21:04:27] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.3.2
[21:04:27] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.21.5
[21:04:27] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[21:04:27] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.8.4
[21:04:27] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.37
[21:04:27] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v4.4.0 b137
[21:04:27] [Server thread/INFO]: [LevelledMobs] Loading commands
[21:04:27] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.40
[21:04:27] [Server thread/INFO]: [ValorlessUtils] Loading server plugin ValorlessUtils v1.17.0.313
[21:04:27] [Server thread/INFO]: [ValorlessUtils] 1.21.10-115-af06383 (MC: 1.21.10)
[21:04:27] [Server thread/INFO]: [ValorlessUtils] 1.21.10-R0.1-SNAPSHOT
[21:04:27] [Server thread/INFO]: [VotifierPlus] Loading server plugin VotifierPlus v1.4.3
[21:04:27] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.30.1
[21:04:27] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v23.3
[21:04:27] [Server thread/INFO]: [GSit] Loading server plugin GSit v3.0.1
[21:04:27] [Server thread/INFO]: [Nexo] Loading server plugin Nexo v1.15
[21:04:27] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.9.8
[21:04:27] [Server thread/INFO]: [PyroLib] Loading server plugin PyroLib v1.4.8
[21:04:27] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.3
[21:04:27] [Server thread/INFO]: [EnchantsSquared] Loading server plugin EnchantsSquared v2.5.17
[21:04:27] [Server thread/INFO]: [SoulGraves] Loading server plugin SoulGraves v1.5.1
[21:04:27] [Server thread/INFO]: [KixsChatGames] Loading server plugin KixsChatGames v2.2.1
[21:04:27] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v4.1.3
[21:04:27] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.9.0
[21:04:27] [Server thread/INFO]: [CustomSprays] Loading server plugin CustomSprays v1.5.21
[21:04:27] [Server thread/INFO]: [TarotEngine] Loading server plugin TarotEngine v1.0.8
[21:04:27] [Server thread/INFO]: [ArtMap] Loading server plugin ArtMap v3.9.24
[21:04:27] [Server thread/INFO]: [Vouchers] Loading server plugin Vouchers v4.2.0
[21:04:27] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.2.0
[21:04:27] [Server thread/INFO]: [⚡] Loading server plugin LagFixer v1.5.1.5 [build 136]
[21:04:27] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[21:04:27] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.2.23
[21:04:27] [Server thread/INFO]: [VoidWorldGenerator] Loading server plugin VoidWorldGenerator v1.3.6
[21:04:27] [Server thread/INFO]: [HavenDisplays] Loading server plugin HavenDisplays v1.7.0.548
[21:04:27] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.19.1
[21:04:27] [Server thread/INFO]: [VirtualBooks] Loading server plugin VirtualBooks v2.8.0
[21:04:27] [Server thread/INFO]: [Worldguard-Custom-Interact] Loading server plugin Worldguard-Custom-Interact v2.0
[21:04:27] [Server thread/INFO]: [Worldguard-Custom-Interact] Plugin loaded!
[21:04:27] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v6.5.1
[21:04:27] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.65
[21:04:27] [Server thread/INFO]: [UpgradeableHoppers] Loading server plugin UpgradeableHoppers v4.20.2
[21:04:27] [Server thread/WARN]: [me.angeschossen.upgradeablehoppers.lwJV.GAGFH] [Config] Invalid sound option: ENTITY_ENDERMAN_TELEPORT Option: sounds.teleport.teleported_sound - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file config.yml.
[21:04:27] [Server thread/WARN]: [me.angeschossen.upgradeablehoppers.lwJV.GAGFH] [Config] Invalid sound option: BLOCK_LEVER_CLICK Option: sounds.teleport.countdown_sound - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file config.yml.
[21:04:27] [Server thread/WARN]: [UpgradeableHoppers] [Config] Invalid setting name: SUCTION_ENABLED Option: hopper.default-settings
[21:04:27] [Server thread/WARN]: [UpgradeableHoppers] [GUI] Invalid sound option: ENTITY_VILLAGER_NO Option: failure - You can find the correct sound names by using the /playsound command ingame. This is not a plugin issue. You need to edit the file en-US_gui.yml.
[21:04:27] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, profilesHost=https://api.mojang.com, name=PROD]
[21:04:27] [Server thread/INFO]: [InvUnload] Loading server plugin InvUnload v5.2.0
[21:04:27] [Server thread/INFO]: [HeadBlocks] Loading server plugin HeadBlocks v2.8.2
[21:04:27] [Server thread/INFO]: [HeadBlocks] HeadBlocks PacketEvents successfully hooked!
[21:04:27] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.13.0
[21:04:27] [Server thread/INFO]: [Pl-Hide-Pro] Loading library caffeine
[21:04:27] [Server thread/INFO]: [HibiscusCommons] Loading server plugin HibiscusCommons v0.8.1-d9fbae1d
[21:04:27] [Server thread/INFO]: [SafariNet] Loading server plugin SafariNet v1.16.29-SNAPSHOT
[21:04:27] [Server thread/INFO]: [ExcellentShop] Loading server plugin ExcellentShop v4.22.0
[21:04:27] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.11
[21:04:27] [Server thread/INFO]: [ResourceWorld] Loading server plugin ResourceWorld v2.1.0
[21:04:27] [Server thread/INFO]: [FirstJoinRewards] Loading server plugin FirstJoinRewards v1.3
[21:04:27] [Server thread/INFO]: [HMCWraps] Loading server plugin HMCWraps v1.7.1
[21:04:28] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-Release
[21:04:28] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version! The following Item options will not work: nbt_int, nbt_ints, nbt_string and nbt_strings.
[21:04:28] [Server thread/INFO]: [StaffPlusPlus] Loading server plugin StaffPlusPlus v1.21.17
[21:04:28] [Server thread/INFO]: [CustomJoinMessages] Loading server plugin CustomJoinMessages v17.9.1
[21:04:28] [Server thread/INFO]: [CookieClickerZ] Loading server plugin CookieClickerZ v1.2.1
[21:04:28] [Server thread/INFO]: [SmartSort] Loading server plugin SmartSort v1.1.0
[21:04:28] [Server thread/INFO]: [PyroFishingPro] Loading server plugin PyroFishingPro v4.9.27
[21:04:28] [Server thread/INFO]: [RoseChat] Loading server plugin RoseChat vBeta-38
[21:04:28] [Server thread/INFO]: [RoseChat] Initializing using RoseGarden v1.5.3
[21:04:28] [Server thread/WARN]: [RoseChat] ================================================
[21:04:28] [Server thread/WARN]: [RoseChat]  You are currently running a DEVELOPMENT BUILD!
[21:04:28] [Server thread/WARN]: [RoseChat]  These types of builds are not fully tested and
[21:04:28] [Server thread/WARN]: [RoseChat]    may contain experimental features or bugs!
[21:04:28] [Server thread/WARN]: [RoseChat] ================================================
[21:04:28] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12.2
[21:04:28] [Server thread/INFO]: [UltraRepair] Loading server plugin UltraRepair v4.3.0
[21:04:28] [Server thread/INFO]: [CraftingStore] Loading server plugin CraftingStore v2.9.3
[21:04:28] [Server thread/INFO]: [WitherSpawn] Loading server plugin WitherSpawn v1.7
[21:04:28] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.6.1
[21:04:28] [Server thread/INFO]: [AdvancedJobs] Loading server plugin AdvancedJobs v1.9.6
[21:04:28] [Server thread/INFO]: [TheGlow] Loading server plugin TheGlow v1.2.5-STABLE
[21:04:28] [Server thread/INFO]: [JukeBox] Loading server plugin JukeBox v1.20.13
[21:04:28] [Server thread/INFO]: [EconomyBridge] Loading server plugin EconomyBridge v1.2.1
[21:04:28] [Server thread/INFO]: [SetSpawn] Loading server plugin SetSpawn v5.5.1
[21:04:28] [Server thread/INFO]: [FunGames] Loading server plugin FunGames v2.0
[21:04:28] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:04:28] [Server thread/INFO]: [Custom Anvil] Loading server plugin CustomAnvil v1.15.5
[21:04:28] [Server thread/INFO]: [KixsAutoAnnouncerPremium] Loading server plugin KixsAutoAnnouncerPremium v1.5.1
[21:04:28] [Server thread/INFO]: [Playtimes] Loading server plugin Playtimes v1.6.2b
[21:04:28] [Server thread/INFO]: [PocketGames] Loading server plugin PocketGames v3.26.2
[21:04:28] [Server thread/INFO]: [JukeBoxPlus] Loading server plugin JukeBoxPlus v3.8.0
[21:04:28] [Server thread/INFO]: [SoulGravesPlus] Loading server plugin SoulGravesPlus v1.6.1
[21:04:28] [Server thread/INFO]: [Piles] Loading server plugin Piles v1.1
[21:04:28] [Server thread/INFO]: [InvisibleItemFrames] Loading server plugin InvisibleItemFrames v2.16.3
[21:04:28] [Server thread/INFO]: [GardeningTweaks] Loading server plugin GardeningTweaks v3.0.7
[21:04:28] [Server thread/INFO]: [HelpCommand] Loading server plugin HelpCommand v2.9.2-PublicRelease
[21:04:28] [Server thread/INFO]: [truePortals] Loading server plugin truePortals v1.3.2
[21:04:28] [Server thread/INFO]: [ACNotify] Loading server plugin ACNotify vBuild 7
[21:04:28] [Server thread/INFO]: [ResizePlayers] Loading server plugin ResizePlayers v2.1
[21:04:28] [Server thread/INFO]: [UltimateRewards] Loading server plugin UltimateRewards v2.13.3
[21:04:28] [Server thread/INFO]: [EternalTags] Loading server plugin EternalTags v1.3.3
[21:04:28] [Server thread/INFO]: [EternalTags] Initializing using RoseGarden v1.4.7-SNAPSHOT
[21:04:28] [Server thread/INFO]: [HeadDrop] Loading server plugin HeadDrop v5.4.5
[21:04:28] [Server thread/INFO]: [HeadDrop] Hooked into WorldGuard!
[21:04:28] [Server thread/INFO]: [CoinsEngine] Loading server plugin CoinsEngine v2.6.0
[21:04:28] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:04:28] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.0
[21:04:29] [Server thread/INFO]:         __    
[21:04:29] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.0
[21:04:29] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[21:04:29] [Server thread/INFO]: 
[21:04:29] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:04:29] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[21:04:30] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:04:30] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:04:30] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2866ms)
[21:04:30] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[21:04:31] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[21:04:31] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[21:04:31] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[21:04:31] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[21:04:31] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.14.1-SNAPSHOT-1218+d695987
[21:04:31] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[21:04:31] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[21:04:31] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:04:31] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[21:04:31] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_9.PaperweightFaweAdapter as the Bukkit adapter
[21:04:31] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0
[21:04:31] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.9
[21:04:31] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[21:04:31] [Server thread/WARN]: [ModelEngine] [S] Unable to activate MineSkin skin generation: Empty API Key
[21:04:31] [Server thread/INFO]: [ModelEngine] [S] Loading default skin: Steve
[21:04:31] [Server thread/INFO]: [ModelEngine] [S] Registered default skin: Steve
[21:04:31] [Server thread/INFO]: [ModelEngine] [S] Loading default skin: Alex
[21:04:31] [ForkJoinPool.commonPool-worker-1/INFO]: [ModelEngine] [A] Registered default skin: Alex
[21:04:31] [Server thread/INFO]: [nightcore] Enabling nightcore v2.10.2
[21:04:31] [Server thread/INFO]: [nightcore] Server version detected as 1.21.10. Using paper-bridge.
[21:04:32] [Server thread/INFO]: [nightcore] Time zone set as UTC
[21:04:32] [Server thread/INFO]: [nightcore] Loaded 2 color schemes.
[21:04:32] [Server thread/INFO]: [nightcore] Using 'custom' color scheme.
[21:04:32] [Server thread/INFO]: [nightcore] Registered permissions provider: LuckPerms
[21:04:32] [Server thread/INFO]: [nightcore] Registered item provider: 'vanilla'.
[21:04:32] [Server thread/INFO]: [nightcore] Registered item provider: 'excellentcrates'.
[21:04:32] [Server thread/INFO]: [nightcore] Registered item provider: 'excellentcrates_crate'.
[21:04:32] [Server thread/INFO]: [nightcore] Registered item provider: 'excellentcrates_key'.
[21:04:32] [Server thread/INFO]: [nightcore] Registered item provider: 'nexo'.
[21:04:32] [Server thread/INFO]: [nightcore] Vault detected! Loading currency...
[21:04:32] [Server thread/INFO]: [nightcore] Currency registered: 'vault'.
[21:04:32] [Server thread/ERROR]: [nightcore] Item currency 'gold' not loaded: Invalid ItemStack tag: '{}'.
[21:04:32] [Server thread/ERROR]: [nightcore] Item currency 'diamond' not loaded: Invalid ItemStack tag: '{}'.
[21:04:32] [Server thread/ERROR]: [nightcore] Item currency 'emerald' not loaded: Invalid ItemStack tag: '{}'.
[21:04:32] [Server thread/INFO]: [nightcore] Plugin loaded in 93 ms!
[21:04:32] [Server thread/INFO]: [VoidWorldGenerator] Enabling VoidWorldGenerator v1.3.6
[21:04:32] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 2 build(s) out of date.
You are running build 1218, the latest version is build 1220.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[21:04:32] [Server thread/INFO]: [VoidWorldGenerator] Config loaded: {*=BiomeAndSpawn[biome=CraftBiome{holder=Reference{ResourceKey[minecraft:worldgen/biome / minecraft:the_void]=net.minecraft.world.level.biome.Biome@388fa8da}}, x=0, y=64, z=0]}
[21:04:32] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.65
[21:04:32] [Server thread/INFO]: [EconomyBridge] Enabling EconomyBridge v1.2.1
[21:04:32] [Server thread/INFO]: [EconomyBridge] Powered by nightcore
[21:04:32] [Server thread/INFO]: [EconomyBridge] Item Handler registered: 'dummy'.
[21:04:32] [Server thread/INFO]: [EconomyBridge] Item Handler registered: 'excellentcrates'.
[21:04:32] [Server thread/INFO]: [EconomyBridge] Item Handler registered: 'nexo'.
[21:04:32] [Server thread/INFO]: [EconomyBridge] Vault detected! Loading currency...
[21:04:32] [Server thread/INFO]: [EconomyBridge] Currency registered: 'vault'.
[21:04:32] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_points'.
[21:04:32] [Server thread/INFO]: [EconomyBridge] Currency registered: 'xp_level'.
[21:04:32] [Server thread/INFO]: [EconomyBridge] Currency registered: 'gold'.
[21:04:32] [Server thread/INFO]: [EconomyBridge] Currency registered: 'diamond'.
[21:04:32] [Server thread/INFO]: [EconomyBridge] Currency registered: 'emerald'.
[21:04:32] [Server thread/INFO]: [EconomyBridge] Plugin loaded in 98 ms!
[21:04:32] [Server thread/INFO]: [truePortals] Enabling truePortals v1.3.2
[21:04:32] [Server thread/INFO]: [truePortals] Plugin enabled!
[21:04:32] [Server thread/INFO]: [CoinsEngine] Enabling CoinsEngine v2.6.0
[21:04:32] [Server thread/INFO]: [CoinsEngine] Powered by nightcore
[21:04:32] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] CoinsEnginePool - Starting...
[21:04:32] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] CoinsEnginePool - Added connection org.sqlite.jdbc4.JDBC4Connection@264074a6
[21:04:32] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] CoinsEnginePool - Start completed.
[21:04:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coinsengine [2.6.0]
[21:04:32] [Server thread/INFO]: [CoinsEngine] Plugin loaded in 172 ms!
[21:04:32] [Server thread/INFO]: [nightcore] CoinsEngine detected! Loading currency...
[21:04:32] [Server thread/INFO]: [EconomyBridge] CoinsEngine detected! Loading currency...
[21:04:32] [Server thread/INFO]: Preparing level "world"
[21:04:33] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:overworld'...
[21:04:33] [Server thread/INFO]: Prepared spawn area in 0 ms
[21:04:33] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:the_nether'...
[21:04:33] [Server thread/INFO]: Prepared spawn area in 0 ms
[21:04:33] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:the_end'...
[21:04:33] [Server thread/INFO]: Prepared spawn area in 0 ms
[21:04:33] [Server thread/INFO]: Done preparing level "world" (0.272s)
[21:04:33] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.5.0
[21:04:33] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.9 (773)
[21:04:33] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[21:04:33] [Server thread/WARN]: [ViaVersion] ViaVersion only supports newer client versions. Use ViaBackwards to allow older versions (ViaRewind for 1.7/1.8) to join.
[21:04:33] [Server thread/WARN]: [ViaVersion] Get setup help at https://viaversion.com/setup or download ViaBackwards/ViaRewind directly at https://ci.viaversion.com/
[21:04:33] [Server thread/WARN]: [ViaVersion] Need more help? Join our Discord at https://viaversion.com/discord
[21:04:33] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[21:04:33] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.7
[21:04:33] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[21:04:33] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.14+2339-43997ec
[21:04:33] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[21:04:33] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[21:04:33] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[21:04:33] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:04:33] [Server thread/INFO]: [packetevents] Enabling packetevents v2.10.1
[21:04:33] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[21:04:33] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v5.2.1
[21:04:33] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.10.1)
[21:04:33] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:floweringcave'...
[21:04:33] [Server thread/INFO]: Prepared spawn area in 0 ms
[21:04:33] [Server thread/INFO]: [WorldGuard] (FloweringCave) TNT ignition is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (FloweringCave) Lighters are PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (FloweringCave) Lava fire is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (FloweringCave) Fire spread is UNRESTRICTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'FloweringCave'
[21:04:33] [Server thread/ERROR]: [Multiverse-Core] Failed to load world PyramidParkour: Failure{reason=WORLD_FOLDER_INVALID}
[21:04:33] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:wardenparkour'...
[21:04:33] [Server thread/INFO]: Preparing spawn area: 100%
[21:04:33] [Server thread/INFO]: Prepared spawn area in 1 ms
[21:04:33] [Server thread/INFO]: [WorldGuard] (WardenParkour) TNT ignition is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (WardenParkour) Lighters are PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (WardenParkour) Lava fire is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (WardenParkour) Fire spread is UNRESTRICTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WardenParkour'
[21:04:33] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:resource_world'...
[21:04:33] [Server thread/INFO]: Prepared spawn area in 0 ms
[21:04:33] [Server thread/INFO]: [WorldGuard] (resource_world) TNT ignition is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (resource_world) Lighters are PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (resource_world) Lava fire is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (resource_world) Fire spread is UNRESTRICTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'resource_world'
[21:04:33] [Server thread/INFO]: Could not set generator for world 'Survival': Plugin 'voidgenerator' does not exist
[21:04:33] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:survival'...
[21:04:33] [Server thread/INFO]: Prepared spawn area in 0 ms
[21:04:33] [Server thread/INFO]: [WorldGuard] (Survival) TNT ignition is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (Survival) Lighters are PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (Survival) Lava fire is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (Survival) Fire spread is UNRESTRICTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Survival'
[21:04:33] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:fnaf'...
[21:04:33] [Server thread/INFO]: Prepared spawn area in 0 ms
[21:04:33] [Server thread/INFO]: [WorldGuard] (fnaf) TNT ignition is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (fnaf) Lighters are PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (fnaf) Lava fire is PERMITTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] (fnaf) Fire spread is UNRESTRICTED.
[21:04:33] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'fnaf'
[21:04:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: multiverse-core [5.2.1]
[21:04:34] [Server thread/INFO]: [Multiverse-Core] API service loaded!
[21:04:34] [Server thread/INFO]: [Multiverse-Core] Version 5.2.1 (API v5.2) Enabled - By dumptruckman, Rigby, fernferret, lithium3141, main--, benwoo1110 and Zax71
[21:04:34] [Server thread/INFO]: [Multiverse-Core] Loving Multiverse-Core? Please consider supporting the project with a small donation: https://github.com/sponsors/Multiverse
[21:04:34] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.40-SNAPSHOT (build 3998)
[21:04:34] [Server thread/INFO]: [Citizens] Loaded 1 templates.
[21:04:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[21:04:34] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[21:04:34] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[21:04:34] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.10.1-SNAPSHOT-1fc059c3
[21:04:34] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.10)...
[21:04:34] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[21:04:35] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[21:04:35] [Server thread/INFO]: [MythicMobs] Mythic mcMMO Support has been enabled!
[21:04:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[21:04:35] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[21:04:35] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[21:04:35] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[21:04:36] [Server thread/INFO]: [MythicMobs] Loading Packs...
[21:04:37] [Server thread/INFO]: [MythicMobs] Loading Items...
[21:04:37] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[21:04:37] [Server thread/INFO]: [MythicMobs] All items loaded after 22ms!
[21:04:37] [Server thread/INFO]: [MythicMobs] Loading Skills...
[21:04:37] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[21:04:37] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[21:04:37] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in RandomSpawn RandomStaticallyChargedSheep
[21:04:37] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[21:04:37] [Server thread/WARN]: [MythicMobs] --| Error Message: No valid mob types configured
[21:04:37] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[21:04:37] [Server thread/INFO]: [MythicMobs] Second passes loaded after 17ms!
[21:04:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 13 mobs.
[21:04:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1 vanilla mob overrides.
[21:04:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:04:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2022 skills.
[21:04:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[21:04:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[21:04:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[21:04:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[21:04:37] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[21:04:37] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[21:04:37] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.10.1 ( build 1fc059c3 ) has been successfully loaded!
[21:04:38] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[21:04:38] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[21:04:38] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.2.045
[21:04:38] [Server thread/INFO]: [mcMMO] Loaded 220 of 220 Alchemy potions.
[21:04:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[21:04:39] [Server thread/INFO]: [Essentials] Enabling Essentials v2.22.0-dev+44-87dfe37
[21:04:39] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[21:04:39] [Server thread/INFO]: [Essentials] No kits found to migrate.
[21:04:39] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[21:04:39] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[21:04:39] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
[21:04:39] [Server thread/INFO]: [Essentials] Using locale en_US
[21:04:39] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[21:04:39] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[21:04:39] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[21:04:39] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[21:04:39] [Server thread/INFO]: [HuskClaims] Enabling HuskClaims v1.5.10
[21:04:39] [Server thread/INFO]: [HuskClaims] Loading claims from the database...
[21:04:39] [Server thread/INFO]: [HuskClaims] Loaded 259 claim(s) across 18 world(s) in 0.04 seconds
[21:04:39] [Server thread/INFO]: [HuskClaims] Pruning 18 claim worlds with claims by 675 inactive users...
[21:04:40] [Server thread/INFO]: [HuskClaims] Successfully pruned claims in 0.034 seconds
[21:04:40] [Server thread/INFO]: [HuskClaims] Loading user groups from the database...
[21:04:40] [Server thread/INFO]: [HuskClaims] Loaded 6 user group(s) by 4 user(s) in 0.001 seconds
[21:04:40] [Server thread/INFO]: [HuskClaims] Registered trust tag 'public'
[21:04:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: huskclaims [1.5.10]
[21:04:40] [Server thread/INFO]: [HuskClaims] Registering LuckPerms group trust tags...
[21:04:40] [Server thread/INFO]: [HuskClaims] Registered 'on_enable' hooks
[21:04:40] [Server thread/INFO]: [HuskClaims] Successfully enabled HuskClaims v1.5.10
[21:04:40] [Server thread/INFO]: [TAB] Enabling TAB v5.3.2
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/baron'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/owner'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/duke'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/bishop'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/legend'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/lord'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/moderator'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/admin'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/rookie'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/master'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/default'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/veteran'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/[headadmin]'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/member'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/superadmin'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/tmod'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/developer'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/networkmanager'
[21:04:40] [luckperms-worker-9/INFO]: [HuskClaims] Registered trust tag 'role/regular'
[21:04:40] [Server thread/INFO]: [TAB] Enabled in 160ms
[21:04:40] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.21.5
[21:04:40] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[21:04:40] [Server thread/INFO]: [HeadDatabase] Economy successfully setup using CURRENCY!
[21:04:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.21.5]
[21:04:40] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[21:04:40] [Server thread/ERROR]: Error occurred while enabling Denizen v1.3.0-SNAPSHOT (build 1804-REL) (Is it up to date?)
java.lang.NoSuchMethodError: net.md_5.bungee.chat.TextComponentSerializer: method 'void <init>()' not found
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizen.utilities.FormattedTextHelper.<clinit>(FormattedTextHelper.java:865) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizen.utilities.PaperAPITools.sendConsoleMessage(PaperAPITools.java:108) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizen.utilities.debugging.DebugConsoleSender.sendMessage(DebugConsoleSender.java:22) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizen.utilities.implementation.DenizenCoreImplementation.doFinalDebugOutput(DenizenCoreImplementation.java:395) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizencore.utilities.debugging.DebugInternals.internalFinalOutputPath(DebugInternals.java:413) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizencore.utilities.debugging.DebugInternals.finalOutputDebugText(DebugInternals.java:357) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizencore.utilities.debugging.DebugInternals.logInternal(DebugInternals.java:464) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizencore.utilities.debugging.Debug.lambda$log$6(Debug.java:165) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizencore.DenizenCore.runOnMainThread(DenizenCore.java:257) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizencore.utilities.debugging.Debug.log(Debug.java:165) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizencore.DenizenCore.init(DenizenCore.java:138) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at Denizen-1.3.0-b1804-REL.jar/com.denizenscript.denizen.Denizen.onEnable(Denizen.java:122) ~[Denizen-1.3.0-b1804-REL.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.21.10-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.10-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[21:04:40] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[21:04:40] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.8.4
[21:04:40] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[21:04:40] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[21:04:40] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[21:04:40] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[21:04:40] [Server thread/INFO]: [MarriageMaster] MarriageMaster-Connection-Pool - Starting...
[21:04:40] [Thread-18/WARN]: [MarriageMaster] The updater could not find any files for the project id 74734 
[21:04:40] [Server thread/INFO]: [MarriageMaster] MarriageMaster-Connection-Pool - Start completed.
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Loading marriages ...
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Marriages loaded
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Loading priests ...
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Priests loaded
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Loading players ...
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Players loaded
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Loading marriages into cache ...
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Marriages loaded into cache
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Loading homes ...
[21:04:40] [Thread-19/INFO]: [MarriageMaster] Homes loaded
[21:04:40] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Invalid Head found in Database: 122729
[21:04:40] [Server thread/INFO]: [MarriageMaster] mcMMO v2 hooked
[21:04:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.8.4]
[21:04:40] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[21:04:40] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[21:04:40] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.37
[21:04:40] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Successfully loaded 88885 heads!
[21:04:41] [Folia Async Scheduler Thread #1/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[21:04:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.37]
[21:04:41] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.4.0 b137
[21:04:41] [Server thread/INFO]: [LevelledMobs] Building reflection cache, use simple names: true
[21:04:41] [Server thread/INFO]: [LevelledMobs] Enabling commands
[21:04:41] [Server thread/INFO]: [LevelledMobs] Found Essentials, loading integration
[21:04:41] [Server thread/INFO]: [LevelledMobs] Using NMS version 1.21.10 for nametag support
[21:04:41] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[21:04:41] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[21:04:41] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[21:04:41] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[21:04:41] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[21:04:41] [Server thread/WARN]: [LevelledMobs] Invalid setting 'player-variable-mod', in rule: Spawner Cube Entities
[21:04:41] [Server thread/INFO]: [LevelledMobs] Current rules hash: 45b1eef29e50f999c1dc842d860ac456a685f37aade9f07754f9ce821d85feb7
[21:04:41] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[21:04:41] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[21:04:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.4.0 b137]
[21:04:41] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[21:04:41] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[21:04:41] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 103ms)
[21:04:41] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.40
[21:04:41] [Server thread/INFO]: [ValorlessUtils] Enabling ValorlessUtils v1.17.0.313
[21:04:41] [Server thread/INFO]: [VotifierPlus] Enabling VotifierPlus v1.4.3
[21:04:41] [Server thread/INFO]: [VotifierPlus] Debug: Bound to 0.0.0.0:19000
[21:04:41] [Server thread/INFO]: [VotifierPlus] Votifier enabled.
[21:04:41] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.30.1
[21:04:41] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v23.3
[21:04:41] [Server thread/INFO]: [net.coreprotect.hikari.HikariDataSource] HikariPool-1 - Starting...
[21:04:42] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[21:04:42] [pool-100-thread-1/WARN]: [DiscordSRV] 

The current build of DiscordSRV is outdated by 10 commits! Get the latest build at your favorite distribution center.

Modrinth: https://modrinth.com/plugin/discordsrv/
Github: https://github.com/DiscordSRV/DiscordSRV/releases/
Direct Download: https://get.discordsrv.com/

[21:04:42] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[21:04:42] [Server thread/INFO]: [net.coreprotect.hikari.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@229eea51
[21:04:42] [Server thread/INFO]: [net.coreprotect.hikari.HikariDataSource] HikariPool-1 - Start completed.
[21:04:43] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[21:04:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[21:04:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[21:04:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[21:04:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Multiverse-Core hook
[21:04:43] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[21:04:45] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[21:04:45] [Server thread/INFO]: [CoreProtect] Using MySQL for data storage.
[21:04:45] [Server thread/INFO]: --------------------
[21:04:45] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[21:04:45] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[21:04:45] [Server thread/INFO]: --------------------
[21:04:45] [Server thread/INFO]: [GSit] Enabling GSit v3.0.1
[21:04:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [3.0.1]
[21:04:45] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[21:04:45] [Server thread/INFO]:  The plugin was successfully enabled.
[21:04:45] [Server thread/INFO]:  Link with PlaceholderAPI successful!
[21:04:45] [Server thread/INFO]:  Link with WorldGuard successful!
[21:04:45] [Server thread/INFO]: [Nexo] Enabling Nexo v1.15
[21:04:46] [Server thread/INFO]: Nexo | NMS-Version v1_21_R8 has been detected.
[21:04:46] [Server thread/INFO]: Nexo | Papers block-updates.disable-tripwire-updates is not enabled.
[21:04:46] [Server thread/INFO]: Nexo | It is HIGHLY recommended to enable this setting for improved performance and prevent bugs with tripwires
[21:04:46] [Server thread/INFO]: Nexo | Otherwise Nexo needs to listen to very taxing events, which also introduces some bugs
[21:04:46] [Server thread/INFO]: Nexo | You can enable this setting in ServerFolder/config/paper-global.yml

[21:04:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nexo [1.15]
[21:04:46] [Server thread/INFO]: Nexo | Plugin "PlaceholderAPI" detected, enabling hooks
[21:04:46] [Server thread/INFO]: Nexo | Plugin "MythicMobs" detected, enabling hooks
[21:04:46] [Server thread/INFO]: Nexo | Plugin "ModelEngine" detected, enabling hooks
[21:04:46] [Server thread/INFO]: Nexo | Plugin "WorldGuard" detected, enabling hooks
[21:04:46] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.9.8
[21:04:46] [Server thread/INFO]: [DecentHolograms] Initialized NMS adapter for paper_v1_21_R6 (1.21.10).
[21:04:46] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.10! Trying to find NMS support
[21:04:46] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R6' loaded!
[21:04:46] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[21:04:46] [Server thread/INFO]: [DecentHolograms] NBT-API loaded successfully.
[21:04:46] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.4.8
[21:04:46] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.3
[21:04:46] [Server thread/INFO]: [EnchantsSquared] Enabling EnchantsSquared v2.5.17
[21:04:46] [Server thread/INFO]: [SoulGraves] Enabling SoulGraves v1.5.1
[21:04:46] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Skipped downloading DefaultPack as it is up to date!
[21:04:46] [Server thread/INFO]: [SoulGraves] [√] WorldGuard Hooked!
[21:04:46] [Server thread/INFO]: [SoulGraves] [!] VaultUnlocked not detected, trying regular Vault...
[21:04:46] [Server thread/INFO]: [SoulGraves] [√] Vault hook loaded!
[21:04:46] [Server thread/INFO]: [SoulGraves] Enabled!
[21:04:46] [Server thread/INFO]: [KixsChatGames] Enabling KixsChatGames v2.2.1
[21:04:46] [Server thread/INFO]: 
[21:04:46] [Server thread/INFO]: --------------------------------------
[21:04:46] [Server thread/INFO]:      Kix's Chat Games by kixmc
[21:04:46] [Server thread/INFO]:      Starting on version 2.2.1
[21:04:46] [Server thread/INFO]: --------------------------------------
[21:04:46] [Server thread/INFO]: 
[21:04:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: kixschatgames [2.2.1]
[21:04:46] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v4.1.3
[21:04:46] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v4.1.3 Plugin Loading...
[21:04:46] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v4.1.3 Plugin Loaded!
[21:04:46] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.9.0
[21:04:46] [Server thread/INFO]: [PlayerWarps] This plugin is licensed to whoaxxitsxtasha (63771) from Spigot!
[21:04:47] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[21:04:47] [Server thread/INFO]: [PlayerWarps] Found 25 config files to load!
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.c.<init>(FavouriteMenu.java:56)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:191)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.c.<init>(FavouriteMenu.java:56)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:191)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.c.<init>(FavouriteMenu.java:56)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:191)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.i.<init>(MyWarpsMenu.java:57)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:193)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.i.<init>(MyWarpsMenu.java:57)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:193)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.i.<init>(MyWarpsMenu.java:57)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:193)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.h.<init>(PlayerWarpMenu.java:62)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:194)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.h.<init>(PlayerWarpMenu.java:62)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:194)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.h.<init>(PlayerWarpMenu.java:62)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:194)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.h.<init>(PlayerWarpMenu.java:62)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:194)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.f.<init>(VisitedPlayersMenu.java:54)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:197)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.f.<init>(VisitedPlayersMenu.java:54)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:197)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.f.<init>(VisitedPlayersMenu.java:54)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:197)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.e.<init>(VisitedWarpsMenu.java:54)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:198)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.e.<init>(VisitedWarpsMenu.java:54)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:198)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.e.<init>(VisitedWarpsMenu.java:54)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:198)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.j.<init>(BannedPlayersMenu.java:65)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:199)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.j.<init>(BannedPlayersMenu.java:65)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:199)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:47] [Server thread/WARN]: java.lang.UnsupportedOperationException
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ImmutableMultimap.put(ImmutableMultimap.java:506)
[21:04:47] [Server thread/WARN]:     at com.google.common.collect.ForwardingMultimap.put(ForwardingMultimap.java:104)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:107)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:80)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.i.c.b(PluginSkullMeta.java:44)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.e.b(PluginItemUtils.java:344)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:98)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:127)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:83)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:79)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.k.b(MenuFactory.java:75)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.i.<init>(PaginationMenu.java:55)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.j.g.j.<init>(BannedPlayersMenu.java:65)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.c.d.<init>(DatabaseManager.java:199)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.g(PlayerWarps.java:63)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.utils.b.b(PluginConfiguration.java:105)
[21:04:47] [Server thread/WARN]:     at PlayerWarps 7.9.0.jar//com.olziedev.playerwarps.PlayerWarps.onEnable(PlayerWarps.java:62)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:47] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:48] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[21:04:48] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[21:04:48] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[21:04:48] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[21:04:48] [Server thread/INFO]: [PlayerWarps] Found XP Currency integrating support...
[21:04:48] [Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[21:04:48] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[21:04:48] [Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[21:04:48] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[21:04:48] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[21:04:48] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[21:04:48] [Server thread/INFO]: [CustomSprays] Enabling CustomSprays v1.5.21
[21:04:48] [Server thread/INFO]: [CustomSprays] use [YML]
[21:04:48] [Server thread/INFO]: [CustomSprays] mojang: true
[21:04:48] [Server thread/INFO]: [CustomSprays] [F_spray] enabled.
[21:04:48] [Server thread/INFO]: [CustomSprays] CustomSprays Enabled! plugin by LSDog. (Running on 1_21_R6 | Mojang mapping)
[21:04:48] [Server thread/INFO]: [TarotEngine] Enabling TarotEngine v1.0.8
[21:04:48] [Server thread/INFO]: [TarotEngine] Checking for config updates...
[21:04:48] [Server thread/INFO]: [TarotEngine] Config is up to date!
[21:04:48] [Server thread/INFO]: [TarotEngine] Using existing cards.yml (user cards preserved)
[21:04:48] [Server thread/INFO]: [TarotEngine] Loaded 78 tarot cards from cards.yml (total 156 with reversed)
[21:04:48] [Server thread/INFO]: [TarotEngine] TarotEngine plugin enabled!
[21:04:48] [Server thread/INFO]: [TarotEngine] Loaded 78 cards
[21:04:48] [Server thread/INFO]: [TarotEngine] Cooldown: 30 seconds
[21:04:48] [Server thread/INFO]: [ArtMap] Enabling ArtMap v3.9.24
[21:04:48] [Server thread/INFO]: [ArtMap] Loading 'english' language file
[21:04:48] [Server thread/INFO]: [ArtMap] Sabre Factions not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] Grief Defender not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] Grief Prevention not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] Red Protect not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] ASkyBlock not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] uSkyBlock not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] BentoBox/BSkyBlock not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] Plot Squared 4 not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] Plot Squared 5 not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] Plot Squared 6 not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] Plot Squared 7 not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] Residence not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] Towny not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] CMI not detected.  Hooks skipped.
[21:04:48] [Server thread/INFO]: [ArtMap] WorldGuard hooks enabled.
[21:04:48] [Server thread/INFO]: [ArtMap] Using ProtocolLib PacketReciever.
[21:04:48] [Server thread/INFO]: [ArtMap]  MC version: v1_20_2
[21:04:48] [Server thread/INFO]: [Vouchers] Enabling Vouchers v4.2.0
[21:04:48] [Server thread/INFO]:  
[21:04:48] [Server thread/INFO]: =============================
[21:04:48] [Server thread/INFO]: Vouchers v4.2.0 by Tweetzy
[21:04:48] [Server thread/INFO]: Developer: Kiran Hart
[21:04:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vouchers [1.0.0]
[21:04:48] [Server thread/INFO]: [FlightCore] Enabling metrics for Vouchers
[21:04:48] [Server thread/INFO]: =============================
[21:04:48] [Server thread/INFO]:  
[21:04:48] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.2.0
[21:04:49] [Server thread/INFO]: [⚡] Enabling LagFixer v1.5.1.5 [build 136]
[21:04:49] [Server thread/INFO]: [⚡] Remember to leave a rating! ★ ★ ★ ★ ★





LagFixer - Best Performance Solution!
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░██╗░░░░░░█████╗░░██████╗░░░███████╗██╗██╗░░██╗███████╗██████╗░░
░██║░░░░░██╔══██╗██╔════╝░░░██╔════╝██║╚██╗██╔╝██╔════╝██╔══██╗░
░██║░░░░░███████║██║░░██╗░░░█████╗░░██║░╚███╔╝░█████╗░░██████╔╝░
░██║░░░░░██╔══██║██║░░╚██╗░░██╔══╝░░██║░██╔██╗░██╔══╝░░██╔══██╗░
░███████╗██║░░██║╚██████╔╝░░██║░░░░░██║██╔╝╚██╗███████╗██║░░██║░
░╚══════╝╚═╝░░╚═╝░╚═════╝░░░╚═╝░░░░░╚═╝╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░





[21:04:49] [Server thread/INFO]: [⚡] (ErrorsManager) -> Enabling manager...
[21:04:49] [Server thread/INFO]: [⚡]  • Started listening console for LagFixer errors!
[21:04:49] [Server thread/INFO]: [⚡] (ErrorsManager) -> Enabled manager in 1ms!
[21:04:49] [Server thread/INFO]: [⚡] (ConfigManager) -> Enabling manager...
[21:04:49] [Server thread/INFO]: [⚡] (ConfigManager) -> Enabled manager in 36ms!
[21:04:49] [Server thread/INFO]: [⚡] (SupportManager) -> Enabling manager...
[21:04:49] [Server thread/INFO]: [⚡]  • Loaded fork support ~ xyz.lychee.lagfixer.support.PaperSupport
[21:04:49] [Server thread/INFO]: [⚡]  • Loaded nms support ~ xyz.lychee.lagfixer.nms.v1_21_R6.SupportNms
[21:04:49] [Server thread/INFO]: [⚡] (SupportManager) -> Enabled manager in 4ms!
[21:04:49] [Server thread/INFO]: [⚡] (HookManager) -> Enabling manager...
[21:04:49] [Server thread/INFO]: [⚡]  • Successfully loaded hook MythicMobs in 0ms!
[21:04:49] [Server thread/INFO]: [⚡]  • Successfully loaded hook ModelEngine in 0ms!
[21:04:49] [Server thread/INFO]: [⚡]  • Successfully loaded hook RoseStacker in 0ms!
[21:04:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lagfixer [1.5.1.5 [build 136]]
[21:04:49] [Server thread/INFO]: [⚡]  • Successfully loaded hook PlaceholderAPI in 1ms!
[21:04:49] [Server thread/INFO]: [⚡] (HookManager) -> Enabled manager in 1ms!
[21:04:49] [Server thread/INFO]: [⚡] (MetricsManager) -> Enabling manager...
[21:04:49] [Server thread/INFO]: [⚡] (MetricsManager) -> Enabled manager in 2ms!
[21:04:49] [Server thread/INFO]: [⚡] (UpdaterManager) -> Enabling manager...
[21:04:49] [Server thread/INFO]: [⚡] (UpdaterManager) -> Enabled manager in 1ms!
[21:04:49] [Server thread/INFO]: [⚡] (ModuleManager) -> Enabling manager...
[21:04:49] [Server thread/INFO]: [⚡]  • Successfully loaded module RedstoneLimiter in 2ms.
[21:04:49] [Server thread/WARN]: [⚡] Unknown "Material" enum value: ZOMBIE_PIGMAN_SPAWN_EGG
[21:04:49] [Server thread/INFO]: [⚡]  • Successfully loaded module WorldCleaner in 1ms.
[21:04:49] [Server thread/INFO]: [⚡]  • Successfully loaded module LagShield in 2ms.
[21:04:49] [Server thread/INFO]: [⚡] (ModuleManager) -> Enabled manager in 31ms!
[21:04:49] [Server thread/INFO]: [⚡] (CommandManager) -> Enabling manager...
[21:04:49] [Server thread/INFO]: [ArtMap] Created Artmap map initialize queue task.
[21:04:49] [Server thread/INFO]: [⚡] (CommandManager) -> Enabled manager in 38ms!
[21:04:49] [Server thread/INFO]: [⚡] Remember to leave a rating! ★ ★ ★ ★ ★
[21:04:49] [Server thread/INFO]: [⚡] ❤ Support us https://ko-fi.com/lajczik
[21:04:49] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[21:04:49] [Server thread/INFO]: [BetterRTP] Cooldown = 30
[21:04:49] [Server thread/INFO]: [BetterRTP] Loading Overrides...
[21:04:49] [Server thread/INFO]: [BetterRTP] Loading World Types...
[21:04:49] [Server thread/INFO]: [BetterRTP] - World Type for 'world' set to 'NORMAL'
[21:04:49] [Server thread/INFO]: [BetterRTP] - World Type for 'world_nether' set to 'NETHER'
[21:04:49] [Server thread/INFO]: [BetterRTP] - World Type for 'world_the_end' set to 'NORMAL'
[21:04:49] [Server thread/INFO]: [BetterRTP] - World Type for 'Survival' set to 'NORMAL'
[21:04:49] [Server thread/INFO]: [BetterRTP] - World Type for 'resource_world' set to 'NORMAL'
[21:04:49] [Server thread/INFO]: [BetterRTP] Loading Defaults...
[21:04:49] [Server thread/WARN]: [BetterRTP] Warning! Default MinY value is solely for 1.17+ support, and can only be negative!
[21:04:49] [Server thread/INFO]: [BetterRTP] Loading Custom Worlds...
[21:04:49] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'custom_world_1' was not registered because world does NOT exist
[21:04:49] [Server thread/INFO]: [BetterRTP] [WARN] - Custom World 'other_custom_world' was not registered because world does NOT exist
[21:04:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[21:04:49] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.2.23
[21:04:49] [Server thread/INFO]: [HavenDisplays] Enabling HavenDisplays v1.7.0.548
[21:04:49] [Server thread/INFO]: [ValorlessUtils] 1.21.10-115-af06383 (MC: 1.21.10)
[21:04:49] [Server thread/INFO]: [ValorlessUtils] 1.21.10-R0.1-SNAPSHOT
[21:04:49] [Server thread/INFO]: [HavenDisplays] PlaceholderAPI integrated!
[21:04:49] [Server thread/INFO]: [HavenDisplays] WorldGuard integrated!
[21:04:49] [Server thread/INFO]: [HavenDisplays] HuskClaims integrated!
[21:04:49] [Server thread/INFO]: [ValorlessUtils] Loaded language 'en_us'.
[21:04:49] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.19.1
[21:04:49] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[21:04:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[21:04:49] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[21:04:50] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[21:04:50] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.19.1
[21:04:50] [Server thread/INFO]: [nightcore] VotingPlugin detected! Loading currency...
[21:04:50] [Server thread/INFO]: [EconomyBridge] VotingPlugin detected! Loading currency...
[21:04:50] [Server thread/INFO]: [EconomyBridge] Currency registered: 'votingplugin'.
[21:04:50] [Server thread/INFO]: [VirtualBooks] Enabling VirtualBooks v2.8.0
[21:04:50] [Server thread/INFO]: [VirtualBooks] Enabling the plugin v2.8.0
[21:04:50] [Server thread/INFO]: [VirtualBooks] Your server is running version 1.21.10-R0.1-SNAPSHOT
[21:04:50] [Server thread/INFO]: [VirtualBooks] VirtualBooks setup was successful!
[21:04:50] [Server thread/INFO]: [VirtualBooks] VirtualBooks setup process is complete!
[21:04:50] [Server thread/INFO]: [VirtualBooks] Attempting to register book commands...
[21:04:50] [Server thread/INFO]: [VirtualBooks] Commands registered successfully!
[21:04:50] [Server thread/INFO]: [Worldguard-Custom-Interact] Enabling Worldguard-Custom-Interact v2.0
[21:04:50] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v6.5.1
[21:04:50] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[21:04:50] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentCratesPool - Starting...
[21:04:50] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] ExcellentCratesPool - Added connection org.sqlite.jdbc4.JDBC4Connection@694739d9
[21:04:50] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentCratesPool - Start completed.
[21:04:50] [Server thread/INFO]: [ExcellentCrates] Loaded 6 crate openings.
[21:04:50] [Server thread/INFO]: [ExcellentCrates] Loaded 10 crate keys.
[21:04:50] [Server thread/INFO]: [ExcellentCrates] Loaded 3 rarities!
[21:04:51] [Server thread/INFO]: [ExcellentCrates] Loaded 10 crates.
[21:04:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [6.5.1]
[21:04:51] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 1063 ms!
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] Enabling UpgradeableHoppers v4.20.2
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] Version: 4.20.2 Previous: 4.20.2
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] Server: 1.21.10 running Paper
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] Licensed to: 701812
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] Experiencing issues or having questions? Join our Discord!
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] Discord: https://discord.incredibleplugins.com
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] Wiki: https://wiki.incredibleplugins.com/upgradeablehoppers
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers]  
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Registered item provider: NEXO
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] Using SQLite: /home/container/plugins/UpgradeableHoppers/Data
[21:04:51] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Starting...
[21:04:51] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Start completed.
[21:04:51] [Server thread/INFO]: [UpgradeableHoppers] Successfully connected to SQL database.
[21:04:51] [Server thread/INFO]: [InvUnload] Enabling InvUnload v5.2.0
[21:04:51] [Server thread/WARN]: [InvUnload] Specified sound effect "ENTITY_PLAYER_LEVELUP" does not exist! Please check your config.yml
[21:04:51] [Server thread/INFO]: [InvUnload] groups.yml does not exist, skipping custom group settings.
[21:04:51] [Server thread/INFO]: [HeadBlocks] Enabling HeadBlocks v2.8.2
[21:04:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.10! Trying to find NMS support
[21:04:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R6' loaded!
[21:04:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'HeadBlocks' to create a bStats instance!
[21:04:51] [Server thread/INFO]: [HeadBlocks] HeadBlocks initializing...
[21:04:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: headblocks [1.0.0]
[21:04:51] [Server thread/INFO]: [HeadBlocks] SQLite storage properly connected!
[21:04:51] [Server thread/INFO]: [HeadBlocks] Loaded 4 (+0 HeadDatabase heads) configuration heads!
[21:04:51] [Server thread/INFO]: [HeadBlocks] Loaded 0 locations!
[21:04:51] [Server thread/INFO]: [HeadBlocks] HeadDatabase successfully hooked!
[21:04:51] [Server thread/INFO]: [HeadBlocks] HeadBlocks successfully loaded!
[21:04:51] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.13.0
[21:04:51] [Server thread/WARN]: [Pl-Hide-Pro] --------------------------------------------------------------------------------------------
[21:04:51] [Server thread/WARN]: [Pl-Hide-Pro] The server version 1.21.10-R0.1-SNAPSHOT you are using is currently not officially supported!!! Proceed with caution
[21:04:51] [Server thread/WARN]: [Pl-Hide-Pro] --------------------------------------------------------------------------------------------
[21:04:51] [Server thread/INFO]: [Pl-Hide-Pro] Loaded LuckPerms hook
[21:04:51] [Server thread/INFO]: [HibiscusCommons] Enabling HibiscusCommons v0.8.1-d9fbae1d
[21:04:51] [Server thread/INFO]: [HibiscusCommons] Detected Paper! Enabling Paper support...
[21:04:51] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into PlaceholderAPI
[21:04:51] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into GSit
[21:04:51] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into ModelEngine
[21:04:51] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into mythicmobs
[21:04:51] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into denizen
[21:04:51] [Server thread/INFO]: [HibiscusCommons] Successfully hooked into nexo
[21:04:51] [Server thread/INFO]: [SafariNet] Enabling SafariNet v1.16.29-SNAPSHOT
[21:04:51] [Server thread/INFO]: [SafariNet] Using v1_21_R6
[21:04:51] [Server thread/INFO]: [SafariNet] [SafariNet] WorldGuard found and using it.
[21:04:51] [Server thread/INFO]: [SafariNet] [SafariNet] Citizens found and using it.
[21:04:51] [Server thread/INFO]: [SafariNet] [SafariNet] MythicMobs found and using it.
[21:04:51] [Server thread/INFO]: [SafariNet] [SafariNet] HuskClaims found and using it.
[21:04:51] [Server thread/INFO]: [ExcellentShop] Enabling ExcellentShop v4.22.0
[21:04:51] [Server thread/INFO]: [ExcellentShop] Powered by nightcore
[21:04:51] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentShopPool - Starting...
[21:04:51] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] ExcellentShopPool - Added connection org.sqlite.jdbc4.JDBC4Connection@3340734f
[21:04:51] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentShopPool - Start completed.
[21:04:51] [Server thread/INFO]: [ExcellentShop] Loaded 1 product cart UIs!
[21:04:51] [Server thread/INFO]: [ExcellentShop] [Auction] Enabled currencies: vault
[21:04:52] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentShopPool - Starting...
[21:04:52] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] ExcellentShopPool - Added connection org.sqlite.jdbc4.JDBC4Connection@202f026a
[21:04:52] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ExcellentShopPool - Start completed.
[21:04:52] [Server thread/INFO]: [ExcellentShop] [Chest Shop] Enabled currencies: vault
[21:04:52] [Server thread/INFO]: [ExcellentShop] [Chest Shop] Hooked into claim plugin: WorldGuard
[21:04:52] [Server thread/INFO]: [ExcellentShop] [Chest Shop] Hooked into claim plugin: HuskClaims
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:looting":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:looting":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:looting":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:looting":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:looting":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:looting":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:protection":4}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:protection":4}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:protection":4}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:protection":4}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:protection":4}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:protection":4}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:mending":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:mending":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:mending":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:mending":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:mending":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:mending":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:fortune":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:fortune":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:fortune":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:fortune":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:fortune":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:fortune":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:mending":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:mending":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:mending":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:mending":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:mending":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:mending":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:sharpness":5}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:sharpness":5}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:sharpness":5}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:sharpness":5}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:sharpness":5}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:sharpness":5}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:fire_protection":4}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:fire_protection":4}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:fire_protection":4}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:fire_protection":4}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:fire_protection":4}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:fire_protection":4}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:silk_touch":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:silk_touch":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:silk_touch":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:protection":4}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:protection":4}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:protection":4}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:protection":4}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:protection":4}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:protection":4}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:silk_touch":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:silk_touch":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:silk_touch":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:unbreaking":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:unbreaking":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:unbreaking":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:unbreaking":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:unbreaking":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:unbreaking":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:efficiency":5}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:efficiency":5}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:efficiency":5}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:efficiency":5}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:efficiency":5}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:efficiency":5}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:mending":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:mending":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:mending":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:mending":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:mending":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:mending":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:silk_touch":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:silk_touch":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:silk_touch":1}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:silk_touch":1}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:frost_walker":2}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:frost_walker":2}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:frost_walker":2}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:frost_walker":2}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:frost_walker":2}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:frost_walker":2}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:thorns":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:thorns":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:thorns":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:thorns":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:thorns":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:thorns":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:unbreaking":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:unbreaking":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:unbreaking":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:unbreaking":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:unbreaking":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:unbreaking":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:unbreaking":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:unbreaking":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:unbreaking":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:unbreaking":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:unbreaking":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:unbreaking":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:sweeping_edge":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:sweeping_edge":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:sweeping_edge":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:sweeping_edge":3}}}
[21:04:52] [Server thread/ERROR]: [su.nightexpress.nightcore.util.nbt.NbtSerializer] Could not decode ItemStack from tag: Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:sweeping_edge":3}} missed input: {"minecraft:stored_enchantments":{levels:{"minecraft:sweeping_edge":3}}}
[21:04:52] [Server thread/INFO]: [ExcellentShop] [Chest Shop] Loaded 124 shops.
[21:04:52] [Server thread/INFO]: [ExcellentShop] [Virtual Shop] Enabled currencies: vault
[21:04:52] [Server thread/INFO]: [ExcellentShop] [Virtual Shop] Loaded 24 shop layouts.
[21:04:52] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[21:04:52] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:580)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.safeInvoke(Reflex.java:271)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.invokeMethod(Reflex.java:281)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagFromString(NbtUtil.java:43)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagToItemStack(NbtUtil.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.ItemTag.getItemStack(ItemTag.java:58)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedVanillaStack.<init>(AdaptedVanillaStack.java:15)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:30)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedItemStack.read(AdaptedItemStack.java:31)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.impl.ItemContent.read(ItemContent.java:42)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.ContentTypes.read(ContentTypes.java:21)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualProduct.load(VirtualProduct.java:71)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.lambda$loadProducts$2(VirtualShop.java:93)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.loadProducts(VirtualShop.java:90)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.load(VirtualShop.java:63)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShop(VirtualShopModule.java:338)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShops(VirtualShopModule.java:328)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadModule(VirtualShopModule.java:118)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.module.AbstractModule.onLoad(AbstractModule.java:56)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.manager.SimpleManager.setup(SimpleManager.java:20)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.lambda$loadModules$2(ShopPlugin.java:151)
[21:04:52] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.loadModules(ShopPlugin.java:143)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.enable(ShopPlugin.java:103)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.loadManagers(NightPlugin.java:190)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.onEnable(NightPlugin.java:53)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:52] [Server thread/WARN]: Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unexpected trailing data at position 1: 2<--[HERE]
[21:04:52] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[21:04:52] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:580)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.safeInvoke(Reflex.java:271)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.invokeMethod(Reflex.java:281)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagFromString(NbtUtil.java:43)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagToItemStack(NbtUtil.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.ItemTag.getItemStack(ItemTag.java:58)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedVanillaStack.<init>(AdaptedVanillaStack.java:15)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:30)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedItemStack.read(AdaptedItemStack.java:31)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.impl.ItemContent.read(ItemContent.java:42)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.ContentTypes.read(ContentTypes.java:21)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualProduct.load(VirtualProduct.java:71)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.lambda$loadProducts$2(VirtualShop.java:93)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.loadProducts(VirtualShop.java:90)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.load(VirtualShop.java:63)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShop(VirtualShopModule.java:338)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShops(VirtualShopModule.java:328)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadModule(VirtualShopModule.java:118)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.module.AbstractModule.onLoad(AbstractModule.java:56)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.manager.SimpleManager.setup(SimpleManager.java:20)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.lambda$loadModules$2(ShopPlugin.java:151)
[21:04:52] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.loadModules(ShopPlugin.java:143)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.enable(ShopPlugin.java:103)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.loadManagers(NightPlugin.java:190)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.onEnable(NightPlugin.java:53)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:52] [Server thread/WARN]: Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unexpected trailing data at position 1: 2<--[HERE]
[21:04:52] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[21:04:52] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:580)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.safeInvoke(Reflex.java:271)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.invokeMethod(Reflex.java:281)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagFromString(NbtUtil.java:43)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagToItemStack(NbtUtil.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.ItemTag.getItemStack(ItemTag.java:58)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedVanillaStack.<init>(AdaptedVanillaStack.java:15)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:30)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedItemStack.read(AdaptedItemStack.java:31)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.impl.ItemContent.read(ItemContent.java:42)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.ContentTypes.read(ContentTypes.java:21)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualProduct.load(VirtualProduct.java:71)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.lambda$loadProducts$2(VirtualShop.java:93)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.loadProducts(VirtualShop.java:90)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.load(VirtualShop.java:63)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShop(VirtualShopModule.java:338)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShops(VirtualShopModule.java:328)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadModule(VirtualShopModule.java:118)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.module.AbstractModule.onLoad(AbstractModule.java:56)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.manager.SimpleManager.setup(SimpleManager.java:20)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.lambda$loadModules$2(ShopPlugin.java:151)
[21:04:52] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.loadModules(ShopPlugin.java:143)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.enable(ShopPlugin.java:103)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.loadManagers(NightPlugin.java:190)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.onEnable(NightPlugin.java:53)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:52] [Server thread/WARN]: Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Expected compound tag at position 508: ...2vc9nmuqo0<--[HERE]
[21:04:52] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[21:04:52] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:580)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.safeInvoke(Reflex.java:271)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.invokeMethod(Reflex.java:281)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagFromString(NbtUtil.java:43)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagToItemStack(NbtUtil.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.ItemTag.getItemStack(ItemTag.java:58)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedVanillaStack.<init>(AdaptedVanillaStack.java:15)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:30)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedItemStack.read(AdaptedItemStack.java:31)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.impl.ItemContent.read(ItemContent.java:42)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.ContentTypes.read(ContentTypes.java:21)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualProduct.load(VirtualProduct.java:71)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.lambda$loadProducts$2(VirtualShop.java:93)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.loadProducts(VirtualShop.java:90)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.load(VirtualShop.java:63)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShop(VirtualShopModule.java:338)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShops(VirtualShopModule.java:328)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadModule(VirtualShopModule.java:118)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.module.AbstractModule.onLoad(AbstractModule.java:56)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.manager.SimpleManager.setup(SimpleManager.java:20)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.lambda$loadModules$2(ShopPlugin.java:151)
[21:04:52] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.loadModules(ShopPlugin.java:143)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.enable(ShopPlugin.java:103)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.loadManagers(NightPlugin.java:190)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.onEnable(NightPlugin.java:53)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:52] [Server thread/WARN]: Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Expected compound tag at position 513: ...2vc9nmuqo0<--[HERE]
[21:04:52] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[21:04:52] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:580)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.safeInvoke(Reflex.java:271)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.invokeMethod(Reflex.java:281)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagFromString(NbtUtil.java:43)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagToItemStack(NbtUtil.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.ItemTag.getItemStack(ItemTag.java:58)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedVanillaStack.<init>(AdaptedVanillaStack.java:15)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:30)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedItemStack.read(AdaptedItemStack.java:31)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.impl.ItemContent.read(ItemContent.java:42)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.ContentTypes.read(ContentTypes.java:21)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualProduct.load(VirtualProduct.java:71)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.lambda$loadProducts$2(VirtualShop.java:93)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.loadProducts(VirtualShop.java:90)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.load(VirtualShop.java:63)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShop(VirtualShopModule.java:338)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShops(VirtualShopModule.java:328)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadModule(VirtualShopModule.java:118)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.module.AbstractModule.onLoad(AbstractModule.java:56)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.manager.SimpleManager.setup(SimpleManager.java:20)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.lambda$loadModules$2(ShopPlugin.java:151)
[21:04:52] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.loadModules(ShopPlugin.java:143)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.enable(ShopPlugin.java:103)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.loadManagers(NightPlugin.java:190)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.onEnable(NightPlugin.java:53)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:52] [Server thread/WARN]: Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unexpected trailing data at position 1: 2<--[HERE]
[21:04:52] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[21:04:52] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:580)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.safeInvoke(Reflex.java:271)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.invokeMethod(Reflex.java:281)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagFromString(NbtUtil.java:43)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagToItemStack(NbtUtil.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.ItemTag.getItemStack(ItemTag.java:58)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedVanillaStack.<init>(AdaptedVanillaStack.java:15)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:30)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedItemStack.read(AdaptedItemStack.java:31)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.impl.ItemContent.read(ItemContent.java:42)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.ContentTypes.read(ContentTypes.java:21)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualProduct.load(VirtualProduct.java:71)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.lambda$loadProducts$2(VirtualShop.java:93)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.loadProducts(VirtualShop.java:90)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.load(VirtualShop.java:63)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShop(VirtualShopModule.java:338)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShops(VirtualShopModule.java:328)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadModule(VirtualShopModule.java:118)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.module.AbstractModule.onLoad(AbstractModule.java:56)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.manager.SimpleManager.setup(SimpleManager.java:20)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.lambda$loadModules$2(ShopPlugin.java:151)
[21:04:52] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.loadModules(ShopPlugin.java:143)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.enable(ShopPlugin.java:103)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.loadManagers(NightPlugin.java:190)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.onEnable(NightPlugin.java:53)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:52] [Server thread/WARN]: Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unexpected trailing data at position 5: 50000<--[HERE]
[21:04:52] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[21:04:52] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:580)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.safeInvoke(Reflex.java:271)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.invokeMethod(Reflex.java:281)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagFromString(NbtUtil.java:43)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagToItemStack(NbtUtil.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.ItemTag.getItemStack(ItemTag.java:58)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedVanillaStack.<init>(AdaptedVanillaStack.java:15)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:30)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedItemStack.read(AdaptedItemStack.java:31)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.impl.ItemContent.read(ItemContent.java:42)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.ContentTypes.read(ContentTypes.java:21)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualProduct.load(VirtualProduct.java:71)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.lambda$loadProducts$2(VirtualShop.java:93)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.loadProducts(VirtualShop.java:90)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.load(VirtualShop.java:63)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShop(VirtualShopModule.java:338)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShops(VirtualShopModule.java:328)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadModule(VirtualShopModule.java:118)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.module.AbstractModule.onLoad(AbstractModule.java:56)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.manager.SimpleManager.setup(SimpleManager.java:20)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.lambda$loadModules$2(ShopPlugin.java:151)
[21:04:52] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.loadModules(ShopPlugin.java:143)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.enable(ShopPlugin.java:103)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.loadManagers(NightPlugin.java:190)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.onEnable(NightPlugin.java:53)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:52] [Server thread/WARN]: Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unexpected trailing data at position 5: 50000<--[HERE]
[21:04:52] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[21:04:52] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:118)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.reflect.Method.invoke(Method.java:580)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.safeInvoke(Reflex.java:271)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.Reflex.invokeMethod(Reflex.java:281)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagFromString(NbtUtil.java:43)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.nbt.NbtUtil.tagToItemStack(NbtUtil.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.util.ItemTag.getItemStack(ItemTag.java:58)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:53)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.toItemStack(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedVanillaStack.<init>(AdaptedVanillaStack.java:15)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:30)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.adapter.impl.VanillaItemAdapter.readItem(VanillaItemAdapter.java:13)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.integration.item.impl.AdaptedItemStack.read(AdaptedItemStack.java:31)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.impl.ItemContent.read(ItemContent.java:42)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.product.content.ContentTypes.read(ContentTypes.java:21)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualProduct.load(VirtualProduct.java:71)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.lambda$loadProducts$2(VirtualShop.java:93)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Iterable.forEach(Iterable.java:75)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.loadProducts(VirtualShop.java:90)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.impl.VirtualShop.load(VirtualShop.java:63)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShop(VirtualShopModule.java:338)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadShops(VirtualShopModule.java:328)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.shop.virtual.VirtualShopModule.loadModule(VirtualShopModule.java:118)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.module.AbstractModule.onLoad(AbstractModule.java:56)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.manager.SimpleManager.setup(SimpleManager.java:20)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.lambda$loadModules$2(ShopPlugin.java:151)
[21:04:52] [Server thread/WARN]:     at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.loadModules(ShopPlugin.java:143)
[21:04:52] [Server thread/WARN]:     at ExcellentShop-4.22.0.jar//su.nightexpress.nexshop.ShopPlugin.enable(ShopPlugin.java:103)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.loadManagers(NightPlugin.java:190)
[21:04:52] [Server thread/WARN]:     at nightcore-2.10.2.jar//su.nightexpress.nightcore.NightPlugin.onEnable(NightPlugin.java:53)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[21:04:52] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[21:04:52] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[21:04:52] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:637)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:368)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1257)
[21:04:52] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:04:52] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:04:52] [Server thread/WARN]: Caused by: com.mojang.brigadier.exceptions.CommandSyntaxException: Unexpected trailing data at position 5: 50000<--[HERE]
[21:04:52] [Server thread/INFO]: [ExcellentShop] [Virtual Shop] Loaded 22 shops.
[21:04:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentshop [4.22.0]
[21:04:52] [Server thread/INFO]: [ExcellentShop] Plugin loaded in 883 ms!
[21:04:52] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.11
[21:04:52] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[21:04:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.11]
[21:04:52] [Server thread/INFO]: [ResourceWorld] Enabling ResourceWorld v2.1.0
[21:04:52] [Server thread/INFO]:  
[21:04:52] [Server thread/INFO]: Resource World v2.1.0
[21:04:52] [Server thread/INFO]:  
[21:04:52] [Server thread/INFO]:      Author: Nik
[21:04:52] [Server thread/INFO]:  
[21:04:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rw [2.1.0]
[21:04:52] [Server thread/INFO]: [FirstJoinRewards] Enabling FirstJoinRewards v1.3
[21:04:52] [Server thread/INFO]: [FirstJoinRewards] ========================================================
[21:04:52] [Server thread/INFO]: [FirstJoinRewards] FirstJoinRewards enabled successfully! Plugin by Deveusz
[21:04:52] [Server thread/INFO]: [FirstJoinRewards] ========================================================
[21:04:52] [Server thread/INFO]: [HMCWraps] Enabling HMCWraps v1.7.1
[21:04:52] [Server thread/INFO]: [HMCWraps] Plugin 'PlaceholderAPI' found. Initializing hook.
[21:04:52] [Server thread/INFO]: [HMCWraps] Plugin 'Nexo' found. Initializing hook.
[21:04:53] [Server thread/INFO]: [HMCWraps] Loaded all configuration files and wraps. (184 wraps)
[21:04:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hmcwraps [1.7.1]
[21:04:53] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-Release
[21:04:53] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[21:04:53] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[21:04:53] [Server thread/WARN]: [DeluxeMenus] Found 'data' option for item: teststone in menu: basics_menu. This option is deprecated and will be removed soon. Please use 'damage' instead.
[21:04:53] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'npcs' in menu 'scenes_spawner' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[21:04:53] [Server thread/WARN]: [DeluxeMenus] Option 'hide_attributes' of item 'environment' in menu 'scenes_spawner' is deprecated and will be removed in the future. Replace it with item_flags: [HIDE_ATTRIBUTES].
[21:04:53] [Server thread/INFO]: [DeluxeMenus] 20 GUI menus loaded!
[21:04:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-Release]
[21:04:53] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[21:04:53] [Server thread/INFO]: [StaffPlusPlus] Enabling StaffPlusPlus v1.21.17
[21:04:55] [Server thread/INFO]: [StaffPlusPlus] Using MYSQL storage
[21:04:56] [Server thread/INFO]: [StaffPlusPlus] Vault found. Permissions will be handled by Vault
[21:04:56] [Server thread/INFO]: [StaffPlusPlus] Hooked into PlaceholderAPI 2.11.7
[21:04:57] [Server thread/INFO]: [StaffPlusPlus] No styles directory present
[21:04:57] [Server thread/INFO]: [StaffPlusPlus] Hooked into PlaceholderAPI 2.11.7
[21:04:57] [Server thread/INFO]: [DiscordSRV] API listener net.shortninja.staffplus.core.domain.staff.mode.StaffModeDiscordSrvListener subscribed (2 methods)
[21:04:57] [Server thread/INFO]: [StaffPlusPlus] Hooked into DiscordSRV 1.30.1
[21:04:57] [Server thread/INFO]: [StaffPlusPlus] Luckperms enabled
[21:04:57] [Server thread/INFO]: [StaffPlusPlus] Registering 'StaffMode' calculator.
[21:04:57] [Server thread/INFO]: [StaffPlusPlus] Registering 'Frozen' calculator.
[21:04:57] [Server thread/INFO]: [StaffPlusPlus] Registering 'Vanished' calculator.
[21:04:57] [Server thread/INFO]: [StaffPlusPlus] Staff++ has been enabled!
[21:04:57] [Server thread/INFO]: [StaffPlusPlus] Plugin created by Shortninja continued by Qball - Revisited by Garagepoort
[21:04:57] [Server thread/INFO]: [CustomJoinMessages] Enabling CustomJoinMessages v17.9.1
[21:04:57] [Server thread/INFO]: [CustomJoinMessages] [ACF] Enabled Asynchronous Tab Completion Support!
[21:04:57] [Server thread/INFO]: [CookieClickerZ] Enabling CookieClickerZ v1.2.1
[21:04:57] [Server thread/INFO]: [CookieClickerZ] Using language file: plugins/CookieClickerZ/lang/en-US.yml
[21:04:57] [Server thread/INFO]: [CookieClickerZ] Using SQLite storage
[21:04:57] [Server thread/INFO]: [CookieClickerZ] DecentHolograms found! Using DecentHolograms for holograms.
[21:04:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cookieclickerz [1.2.1]
[21:04:57] [Server thread/INFO]: [CookieClickerZ] PlaceholderAPI found! Enabled PlaceholderAPI support!
[21:04:57] [Server thread/INFO]: [CookieClickerZ] CookieClickerZ enabled!
[21:04:57] [Server thread/INFO]: [SmartSort] Enabling SmartSort v1.1.0
[21:04:57] [Server thread/INFO]: [SmartSort] SmartSort v1.1.0 has been enabled!
[21:04:57] [Server thread/INFO]: [SmartSort] Now with granular permission support!
[21:04:57] [Server thread/INFO]: [PyroFishingPro] Enabling PyroFishingPro v4.9.27
[21:04:57] [Server thread/INFO]: ==================================================================================
[21:04:57] [Server thread/INFO]: 
[21:04:57] [Server thread/INFO]: __________                     ___________.__       .__    .__                
[21:04:57] [Server thread/INFO]: \______   \___.__._______  ____\_   _____/|__| _____|  |__ |__| ____    ____  
[21:04:57] [Server thread/INFO]:  |     ___<   |  |\_  __ \/  _ \|    __)  |  |/  ___/  |  \|  |/    \  / ___\ 
[21:04:57] [Server thread/INFO]:  |    |    \___  | |  | \(  <_> )     \   |  |\___ \|   Y  \  |   |  \/ /_/  >
[21:04:57] [Server thread/INFO]:  |____|    / ____| |__|   \____/\___  /   |__/____  >___|  /__|___|  /\___  / 
[21:04:57] [Server thread/INFO]:            \/                       \/            \/     \/        \//_____/  
[21:04:57] [Server thread/INFO]: 
[21:04:57] [Server thread/INFO]: - Loading v4.9.27...
[21:04:57] [Server thread/INFO]: 
[21:04:58] [Server thread/INFO]: - Registered to: 238567
[21:04:58] [Server thread/INFO]: - Successfully hooked into WorldGuard.
[21:04:58] [Server thread/INFO]: - Loaded (126) Custom Fish successfully.
[21:04:58] [Server thread/INFO]: - Loaded (0) fishing baits.
[21:04:58] [Server thread/INFO]: - Successfully hooked into PlaceholderAPI.
[21:04:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PyroFishingPro [4.9.27]
[21:04:58] [Server thread/INFO]: 
[21:04:58] [Server thread/INFO]: ==================================================================================
[21:04:58] [Server thread/INFO]: 
[21:04:58] [Server thread/INFO]: [RoseChat] Enabling RoseChat vBeta-38
[21:04:58] [Server thread/INFO]: [RoseChat] Data handler connected using SQLite.
[21:04:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosechat [Beta-38]
[21:04:58] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12.2
[21:04:58] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.20.5 or newer. Hex color code support has been enabled.
[21:04:58] [Server thread/INFO]: [EpicRename] Version: 3.12.2 MC Version: ONE_DOT_TWENTY_DOT_FIVE_OR_NEWER
[21:04:58] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2025 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
[21:04:58] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[21:04:58] [Server thread/INFO]: [Rename and Lore] Prefix set to: '[Rename and Lore] '
[21:04:58] [Server thread/INFO]: [Rename and Lore] Plugin Enabled!
[21:04:58] [Server thread/INFO]: [UltraRepair] Enabling UltraRepair v4.3.0
[21:04:58] [Server thread/INFO]: 

 ____ ___  __________ 
|    |   \ \______   \
|    |   /  |       _/
|    |  /   |    |   \
|______/    |____|_  /
                   \/ 

[21:04:58] [Server thread/INFO]: [UltraRepair] Loading configuration files...
[21:04:58] [Server thread/INFO]: [UltraRepair] Initializing base settings...
[21:04:58] [Server thread/INFO]: [UltraRepair] Checking economy integration...
[21:04:58] [Server thread/INFO]: [UltraRepair] Loading repair manager...
[21:04:58] [Server thread/INFO]: [UltraRepair] Registering commands...
[21:04:58] [Server thread/INFO]: [UltraRepair] Registering listeners...
[21:04:58] [Server thread/INFO]: [UltraRepair] Loading metrics...
[21:04:58] [Server thread/INFO]: [UltraRepair] Checking for updates...
[21:04:58] [Server thread/INFO]: [UR] UltraRepair v4.3.0 by Demeng has been enabled.
[21:04:58] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.9.3
[21:04:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: craftingstore [2.9.3]
[21:04:58] [Server thread/INFO]: [CraftingStore] Hooked with PlaceholderAPI
[21:04:58] [Server thread/INFO]: [CraftingStore] Hooked with Vault
[21:04:58] [Server thread/INFO]: [WitherSpawn] Enabling WitherSpawn v1.7
[21:04:58] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.6.1
[21:04:58] [Server thread/INFO]: [sleep-most] Hooked to PlaceholderAPI
[21:04:58] [Server thread/INFO]: [sleep-most] Hooked to GSit
[21:04:58] [Server thread/INFO]: [sleep-most] Hooked to Essentials
[21:04:58] [Server thread/INFO]: [sleep-most] GSit hook detected and registered GSit event listener
[21:04:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: sleepmost [5.6.1]
[21:04:58] [Server thread/INFO]: [AdvancedJobs] Enabling AdvancedJobs v1.9.6
[21:04:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedjobs [1.0.0]
[21:04:59] [Server thread/INFO]: [TheGlow] Enabling TheGlow v1.2.5-STABLE
[21:04:59] [Server thread/INFO]: [TheGlow] Registering files...
[21:04:59] [Server thread/INFO]: [TheGlow] Reloading dynamic commands...
[21:04:59] [Server thread/INFO]: [TheGlow] No previously registered commands found.
[21:04:59] [Server thread/INFO]: [TheGlow] Registering command: glow, aliases: [gw]
[21:04:59] [Server thread/INFO]: [TheGlow] Registering main command: theglow, aliases: [glow]
[21:04:59] [Server thread/INFO]: [TheGlow] Registering Actions...
[21:04:59] [Server thread/INFO]: [TheGlow] Integrations loaded: TAB=true, LibsDisguises=false, GSit=false
[21:04:59] [Server thread/INFO]: [TheGlow] Registering Hooks...
[21:04:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: theglow [1.2.5-STABLE]
[21:04:59] [Server thread/INFO]: [TheGlow] Hooked onto PlaceholderAPI
[21:04:59] [Server thread/INFO]: [TheGlow] Registering Metrics...
[21:04:59] [Server thread/INFO]: [xshyo.us.theglow.libs.hikari.HikariDataSource] HikariPool-1 - Starting...
[21:04:59] [Server thread/INFO]: [xshyo.us.theglow.libs.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@2c9dd756
[21:04:59] [Server thread/INFO]: [xshyo.us.theglow.libs.hikari.HikariDataSource] HikariPool-1 - Start completed.
[21:04:59] [Server thread/INFO]: [TheGlow] Connected to SQLite database correctly.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: aqua.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: black.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: blue.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_aqua.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_blue.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_gray.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_green.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_purple.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: dark_red.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: gold.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: gray.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: green.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: light_purple.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: red.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: white.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: yellow.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: christmas.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: halloween.
[21:04:59] [Server thread/INFO]: [TheGlow] Correctly loaded Glow ID: rainbow.
[21:04:59] [Server thread/INFO]: [TheGlow] Server version: 1.21.10-115-af06383 (MC: 1.21.10) 1.21.10-R0.1-SNAPSHOT
[21:04:59] [Server thread/INFO]: [TheGlow] Done and enabled in 217.36ms
[21:04:59] [Server thread/INFO]: [JukeBox] Enabling JukeBox v1.20.13
[21:04:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jukebox [1.20.13]
[21:04:59] [Server thread/INFO]: [JukeBox] Placeholders registered
[21:04:59] [Server thread/INFO]: [JukeBox] This JukeBox version requires NoteBlockAPI version 1.5.0 or more. Please ensure you have the right version before using JukeBox (you are using NBAPI ver. 1.6.3)
[21:04:59] [Server thread/INFO]: [JukeBox] Loaded language file en.yml
[21:04:59] [Server thread/INFO]: [JukeBox] 80 songs loadeds. Sorting by name... 
[21:04:59] [Server thread/INFO]: [JukeBox] Songs sorted ! 80 songs. Number of pages : 2
[21:04:59] [Server thread/INFO]: [SetSpawn] Enabling SetSpawn v5.5.1
[21:04:59] [Server thread/INFO]: [SetSpawn] Enabled!
[21:04:59] [Server thread/INFO]: [FunGames] Enabling FunGames v2.0
[21:04:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fungames [2.0]
[21:04:59] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[21:04:59] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[21:04:59] [Server thread/WARN]: [WorldGuardExtraFlags] "WorldGuardExtraFlags v4.2.4-SNAPSHOT" has registered a listener for org.spigotmc.event.player.PlayerSpawnLocationEvent on method "public void net.goldtreeservers.worldguardextraflags.listeners.PlayerListener.onPlayerSpawnLocationEvent(org.spigotmc.event.player.PlayerSpawnLocationEvent)", but the event is Deprecated. "Listening to this event causes the player to be created early. Using the player from this event will result in undefined behavior. Prefer AsyncPlayerSpawnLocationEvent."; please notify the authors [isokissa3].
[21:04:59] [Server thread/INFO]: [Custom Anvil] Enabling CustomAnvil v1.15.5
[21:04:59] [Server thread/INFO]: [Custom Anvil] Enchantment Squared Detected !
[21:04:59] [Server thread/INFO]: [Custom Anvil] Please be aware that Custom Anvil is bypassing Enchantment Squared 
[21:04:59] [Server thread/INFO]: [Custom Anvil] compatible_with, disable_anvil, incompatible_vanilla_enchantments, incompatible_custom_enchantments and max_level configuration values.
[21:04:59] [Server thread/INFO]: [KixsAutoAnnouncerPremium] Enabling KixsAutoAnnouncerPremium v1.5.1
[21:04:59] [Server thread/INFO]: --------------------------------------
[21:04:59] [Server thread/INFO]:     kix's auto announcer premium
[21:04:59] [Server thread/INFO]:       enabled on version 1.5.1
[21:04:59] [Server thread/INFO]: --------------------------------------
[21:04:59] [Server thread/INFO]: [Kix's Auto Announcer ++] Data files loaded successfully.
[21:04:59] [Server thread/INFO]: [Kix's Auto Announcer ++] Loaded 5 broadcasts.
[21:04:59] [Server thread/INFO]: [Playtimes] Enabling Playtimes v1.6.2b*
[21:05:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: PlayTimes [1.6.1]
[21:05:00] [Server thread/INFO]: [Playtimes] PlaceholdersAPI Hooked!
[21:05:00] [Server thread/INFO]: [Playtimes] Successfully loaded.
[21:05:00] [Server thread/INFO]: [PocketGames] Enabling PocketGames v3.26.2
[21:05:00] [Server thread/INFO]: [Pocket Games] ViaVersion is enabled and a compatible version was found. (latest API)
[21:05:00] [Server thread/INFO]: [JukeBoxPlus] Enabling JukeBoxPlus v3.8.0
[21:05:00] [Server thread/INFO]: [JukeBoxPlus] [ACF] Enabled Asynchronous Tab Completion Support!
[21:05:00] [Server thread/INFO]: [SoulGravesPlus] Enabling SoulGravesPlus v1.6.1
[21:05:00] [Server thread/INFO]: [SoulGravesPlus] Enabled! Made by JosTheDude with <3 and cookies!
[21:05:00] [Server thread/INFO]: [SoulGravesPlus] Please report any issues here: https://github.com/JosTheDude/SoulGravesPlus
[21:05:00] [Server thread/INFO]: [SoulGravesPlus] Like my work? Support me here: https://ko-fi.com/jossydev
[21:05:00] [Server thread/INFO]: [SoulGravesPlus] Logger features enabled.
[21:05:00] [Server thread/WARN]: [SoulGravesPlus] FancyHolograms not found! Hologram features disabled. Did you configure the right hologram-manager in the config?
[21:05:00] [Server thread/INFO]: [SoulGravesPlus] Death coordinates features enabled.
[21:05:00] [Server thread/INFO]: [Piles] Enabling Piles v1.1
[21:05:00] [Server thread/INFO]: [Piles] Resource pack hosting not established! Use /piles resourcepack setup if you want Piles' resource pack hosted for you
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] Enabling InvisibleItemFrames v2.16.3
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] Initializing managers...
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] MemoryDataManager initialized!
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] Using Paper Implementation!
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] ImplementationManager initialized!
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] BlockLockerManager initialized!
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] Registering commands...
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] Registering listeners...
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] Loading data...
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] Starting metrics...
[21:05:00] [Server thread/INFO]: [InvisibleItemFrames] Done and enabled in 10.34ms
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Enabling GardeningTweaks v3.0.7
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Successfully enabled LushLib
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Successfully enabled module 'DYNAMIC_TRAMPLE'
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Successfully enabled module 'FAST_LEAF_DECAY'
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Successfully enabled module 'GROWTH_DANCE'
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Successfully enabled module 'COMPOSTER_SPREADER'
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Successfully enabled module 'SAPLING_REPLANT'
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Found plugin "packetevents". Enabling packetevents support.
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Found plugin "ProtocolLib". Enabling ProtocolLib support.
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Loading protection hooks
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Found plugin "HuskClaims". Enabling HuskClaims support.
[21:05:00] [Server thread/INFO]: [GardeningTweaks] GardeningTweaks now respects HuskClaims Claims
[21:05:00] [Server thread/INFO]: [GardeningTweaks] Finished loading protection hooks
[21:05:00] [Server thread/INFO]: [HelpCommand] Enabling HelpCommand v2.9.2-PublicRelease
[21:05:00] [Server thread/INFO]: [HelpCommand] Help Command Enabled
[21:05:00] [Server thread/INFO]: [HelpCommand] Author: VoidemLIVE
[21:05:00] [Server thread/INFO]: [HelpCommand] Version: 2.9.2-PublicRelease
[21:05:00] [Server thread/INFO]: [HelpCommand] PlaceholderAPI: Enabled
[21:05:00] [Server thread/INFO]: [HelpCommand] Aliases: Disabled
[21:05:00] [Server thread/INFO]: [ACNotify] Enabling ACNotify vBuild 7*
[21:05:00] [Server thread/INFO]: [ResizePlayers] Enabling ResizePlayers v2.1
[21:05:00] [Server thread/INFO]: ResizePlayers has been enabled. Hello :D
[21:05:00] [Server thread/INFO]: [ResizePlayers] [ResizePlayers] PlaceholderAPI found! Hooking into PlaceholderAPI...
[21:05:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: resizeplayers [2.1]
[21:05:00] [Server thread/INFO]: [UltimateRewards] Enabling UltimateRewards v2.13.3
[21:05:00] [Server thread/INFO]: [UltimateRewards] Initializing database pool with sqlite...
[21:05:00] [Server thread/INFO]: [eu.athelion.ultimaterewards.shaded.hikari.HikariDataSource] UltimateRewards-Pool - Starting...
[21:05:00] [Server thread/INFO]: [eu.athelion.ultimaterewards.shaded.hikari.HikariDataSource] UltimateRewards-Pool - Start completed.
[21:05:00] [Server thread/INFO]: [UltimateRewards] Successfully connected to SQLite v3.49.1 database!
[21:05:00] [Server thread/INFO]: [UltimateRewards] Extracting table columns took 2ms
[21:05:00] [Server thread/INFO]: [UltimateRewards] Preparing alter table statements took 3ms
[21:05:00] [Server thread/INFO]: [UltimateRewards] Executing alter table statements took 0ms
[21:05:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimaterewards [2.13.3]
[21:05:00] [Server thread/INFO]: [UltimateRewards] PlaceholderApiPreRegister has been registered.
[21:05:00] [Server thread/INFO]: [UltimateRewards] EssentialsHook has been registered.
[21:05:00] [Server thread/INFO]: [UltimateRewards] NexoHook has been registered.
[21:05:00] [Server thread/INFO]: [UltimateRewards] HeadDatabaseHook has been registered.
[21:05:00] [Server thread/INFO]: [UltimateRewards] DiscordSRVHook has been registered.
[21:05:00] [Server thread/INFO]: [UltimateRewards] VaultHook has been registered.
[21:05:00] [Server thread/INFO]: [UltimateRewards] WorldGuardHook has been registered.
[21:05:00] [Server thread/INFO]: [UltimateRewards] Loaded 0 scheduled and 0 repeatable tasks!
[21:05:00] [Server thread/INFO]: [UltimateRewards] Loading rewards...
[21:05:00] [Server thread/INFO]: [UltimateRewards] 5 rewards have been loaded from rewards folder!
[21:05:00] [Server thread/INFO]: [UltimateRewards] Loading guis...
[21:05:00] [Server thread/INFO]: [EternalTags] Enabling EternalTags v1.3.3
[21:05:00] [Server thread/INFO]: [EternalTags] Data handler connected using SQLite.
[21:05:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eternaltags [1.3.3]
[21:05:00] [Server thread/INFO]: [HeadDrop] Enabling HeadDrop v5.4.5
[21:05:00] [Server thread/INFO]:  
[21:05:00] [Server thread/INFO]: ─────────────────────────
[21:05:00] [Server thread/INFO]:    ✨ HeadDrop Premium v5.4.5 ✨
[21:05:00] [Server thread/INFO]: ─────────────────────────

[21:05:00] [Server thread/INFO]: [HeadDrop] Hooked into Vault!
[21:05:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: headdrop [1.0]
[21:05:00] [Server thread/INFO]: [HeadDrop] Hooked into PlaceholderAPI!
[21:05:00] [Server thread/INFO]: [HeadDrop] Enabled successfully!
[21:05:01] [Server thread/INFO]: [spark] Starting background profiler...
[21:05:01] [Server thread/WARN]: Could not register alias sortingmenu because it contains commands that do not exist: chestsort
[21:05:01] [Server thread/WARN]: Could not register alias customenchants because it contains commands that do not exist: cpanel customenchantsmain
[21:05:01] [Server thread/WARN]: Could not register alias vote because it contains commands that do not exist: cpanel voting
[21:05:01] [Server thread/WARN]: Could not register alias donate because it contains commands that do not exist: cpanel donate
[21:05:01] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[21:05:01] [Server thread/INFO]: Starting GS4 status listener
[21:05:01] [Server thread/INFO]: Thread Query Listener started
[21:05:01] [Query Listener #1/INFO]: Query running on 0.0.0.0:19456
[21:05:01] [Server thread/INFO]: Running delayed init tasks
[21:05:01] [Craft Scheduler Thread - 11 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[21:05:01] [ForkJoinPool.commonPool-worker-3/INFO]: [ModelEngine] [A] 
[21:05:01] [ForkJoinPool.commonPool-worker-3/INFO]: [ModelEngine] [A] [Importing models]
[21:05:01] [Craft Scheduler Thread - 21 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[21:05:01] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[21:05:01] [Craft Scheduler Thread - 24 - CustomSprays/INFO]: [CustomSprays] Loading Color Palette
[21:05:01] [Craft Scheduler Thread - 6 - Essentials/INFO]: [Essentials] Fetching version information...
[21:05:01] [ForkJoinPool.commonPool-worker-3/INFO]: Nexo | Awaiting ModelEngine ResourcePack...
[21:05:01] [ForkJoinPool.commonPool-worker-3/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[21:05:01] [Craft Scheduler Thread - 25 - ArtMap/INFO]: [ArtMap] Async load of 6 artists started. 1,515 retrieved from disk cache.
[21:05:01] [Craft Scheduler Thread - 24 - CustomSprays/INFO]: [CustomSprays] Color Palette Loaded! current state: true
[21:05:01] [Craft Scheduler Thread - 33 - ResourceWorld/INFO]: You're running the Latest Version <3
[21:05:01] [Craft Scheduler Thread - 34 - Playtimes/INFO]: [Playtimes] [PlayTimes] Plugin is up to date! - 1.6.2b
[21:05:01] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[21:05:01] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[21:05:01] [Craft Scheduler Thread - 34 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:world configured and loaded!
[21:05:01] [Craft Scheduler Thread - 34 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:FloweringCave configured and loaded!
[21:05:01] [Craft Scheduler Thread - 34 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:WardenParkour configured and loaded!
[21:05:01] [Craft Scheduler Thread - 34 - BetterRTP/INFO]: [BetterRTP] Database COOLDOWN:Survival configured and loaded!
[21:05:01] [Craft Scheduler Thread - 42 - BetterRTP/INFO]: [BetterRTP] Database CHUNK_DATA:ChunkData configured and loaded!
[21:05:01] [Craft Scheduler Thread - 9 - BetterRTP/INFO]: [BetterRTP] Database QUEUE:Queue configured and loaded!
[21:05:01] [Craft Scheduler Thread - 38 - BetterRTP/INFO]: [BetterRTP] Database PLAYERS:Players configured and loaded!
[21:05:01] [Craft Scheduler Thread - 48 - Vault/INFO]: [Vault] Checking for Updates ... 
[21:05:01] [Server thread/INFO]: [CoinsEngine] Available balance data migration from Vault.
[21:05:01] [Craft Scheduler Thread - 28 - SoulGravesPlus/INFO]: [SoulGravesPlus] You are using the latest version!
[21:05:01] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[21:05:01] [Craft Scheduler Thread - 10 - UltimateRewards/INFO]: [UltimateRewards] You are running the latest release (2.13.3).
[21:05:01] [Craft Scheduler Thread - 48 - Vault/WARN]: [Vault] No files found, or Feed URL is bad.
[21:05:01] [Craft Scheduler Thread - 48 - Vault/INFO]: [Vault] No new version available
[21:05:01] [pool-29-thread-5/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-5/INFO]: [ModelEngine] [A] Importing ear_muffs.bbmodel.
[21:05:01] [pool-29-thread-1/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-1/INFO]: [ModelEngine] [A] Importing internal_fire.bbmodel.
[21:05:01] [pool-29-thread-3/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-3/INFO]: [ModelEngine] [A] Importing apron.bbmodel.
[21:05:01] [pool-29-thread-8/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-8/INFO]: [ModelEngine] [A] Importing left_gloves.bbmodel.
[21:05:01] [pool-29-thread-10/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-10/INFO]: [ModelEngine] [A] Importing right_gloves.bbmodel.
[21:05:01] [pool-29-thread-2/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-2/INFO]: [ModelEngine] [A] Importing skin_1.bbmodel.
[21:05:01] [pool-29-thread-1/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-1/INFO]: [ModelEngine] [A] Importing scarf.bbmodel.
[21:05:01] [pool-29-thread-3/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-3/INFO]: [ModelEngine] [A] Importing santa_hat.bbmodel.
[21:05:01] [pool-29-thread-7/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-7/INFO]: [ModelEngine] [A] Importing miner_hat.bbmodel.
[21:05:01] [Craft Scheduler Thread - 23 - CustomSprays/INFO]: [CustomSprays] Found the newest version: 1.5.21 (you are using 1.5.21)
[21:05:01] [pool-29-thread-9/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-9/INFO]: [ModelEngine] [A] Importing straw_hat.bbmodel.
[21:05:01] [pool-29-thread-6/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-6/INFO]: [ModelEngine] [A] Importing traveler_backpack.bbmodel.
[21:05:01] [Craft Scheduler Thread - 8 - RoseStacker/INFO]: [RoseStacker] Fetched 138 translation locales.
[21:05:01] [pool-29-thread-10/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-10/INFO]: [ModelEngine] [A] Importing scenes_tavern_1.bbmodel.
[21:05:01] [pool-29-thread-5/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-5/INFO]: [ModelEngine] [A] Importing naked.bbmodel.
[21:05:01] [pool-29-thread-4/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-4/INFO]: [ModelEngine] [A] Importing guard_armor.bbmodel.
[21:05:01] [pool-29-thread-8/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-8/INFO]: [ModelEngine] [A] Importing scenes_tavern_3.bbmodel.
[21:05:01] [pool-29-thread-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/scenes_tavern_mug already exists. Using alternative texture name modelengine:entity/e0f2d264-4164-3938-9347-f902008a9446.
[21:05:01] [pool-29-thread-2/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-2/INFO]: [ModelEngine] [A] Importing scenes_tavern_2.bbmodel.
[21:05:01] [pool-29-thread-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/scenes_tavern_mug already exists. Using alternative texture name modelengine:entity/cf2ab0b0-4147-341a-97b4-48220f4594de.
[21:05:01] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loaded 3 holograms!
[21:05:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.30.1]
[21:05:01] [Server thread/INFO]: [CoreProtect] FastAsyncWorldEdit logging successfully initialized.
[21:05:01] [ForkJoinPool.commonPool-worker-1/INFO]: [MiniMOTD] There is an update available for MiniMOTD!
[21:05:01] [ForkJoinPool.commonPool-worker-1/INFO]: [MiniMOTD] This server is running version v2.2.0, which is 1 versions outdated.
[21:05:01] [ForkJoinPool.commonPool-worker-1/INFO]: [MiniMOTD] Download the latest version, v2.2.1 from Modrinth at the link below:
[21:05:01] [ForkJoinPool.commonPool-worker-1/INFO]: [MiniMOTD] https://modrinth.com/plugin/minimotd
[21:05:01] [Server thread/INFO]: Nexo | PackServer set to POLYMATH
[21:05:01] [pool-29-thread-6/INFO]: [ModelEngine] [A] 
[21:05:01] [pool-29-thread-6/INFO]: [ModelEngine] [A] Resource pack zipped.
[21:05:01] [pool-29-thread-6/INFO]: [ModelEngine] [A] Generator Profiled:
[21:05:01] [pool-29-thread-6/INFO]: [ModelEngine] [A]  - Import Phase: 270.2ms
[21:05:01] [pool-29-thread-6/INFO]: [ModelEngine] [A]  - Assets Phase: 66.9ms
[21:05:01] [pool-29-thread-6/INFO]: [ModelEngine] [A]  - Zipping Phase: 33.8ms
[21:05:01] [pool-29-thread-6/INFO]: Nexo | ModelEngine ResourcePack is ready.
[21:05:02] [Server thread/INFO]: Nexo | fairy_cage is using invalid material SCUTE, defaulting to PAPER...
[21:05:02] [Server thread/INFO]: Nexo | Furniture feast_chair has lights that overlap with the barrierHitboxes at: 0,0,0
[21:05:02] [Server thread/INFO]: Nexo | Nexo will ignore any lights that conflict with a barrier...
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Generating resourcepack...
[21:05:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.9.0]
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Importing DefaultPack...
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Importing external-pack Improved Brewing Guide.zip...
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Importing external-pack Undopia_3D_Mace_1.21.4_v.1.0.zip...
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Importing external-pack custom_blocks...
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Importing external-pack piles.zip...
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to parse pack.mcmeta resourcePack...
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/POTION.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/POTION.json'
[21:05:02] [Server thread/INFO]: Loaded RoseChat channels: global, staff, donator, local
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_beets/beet pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_beets/beet pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_beets/beet.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_beets/beet.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_carrots/bag_1.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_carrots/bag_1.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_carrots/bag_2.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_carrots/bag_2.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_carrots/bag_3.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_carrots/bag_3.json'
[21:05:02] [OkHttp https://staffplusplus.org/.../INFO]: Your Staff++ version is up to date!
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_carrots/pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_carrots/pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/liquid1.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/liquid1.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/liquid2.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/liquid2.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/liquid3.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/liquid3.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/pile1.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/pile1.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/pile2.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/pile2.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/pile3.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/pile3.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/stack1.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/stack1.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/stack2.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/stack2.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/stack3.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/stack3.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/sugar_pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_jars/base/sugar_pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_leaves/leaf bush.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_leaves/leaf bush.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_potatoes/potato pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_potatoes/potato pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_potatoes/potato.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_potatoes/potato.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_wheat/wheat pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_wheat/wheat pile.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_wheat/wheat.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to deserialize resource at: 'assets/minecraft/models/item/pile_wheat/wheat.json'
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to parse assets/minecraft/textures/leaves/PLACEHOLDER.png resourcePack...
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Importing external-pack silenced-global-sounds.zip...
[21:05:02] [Server thread/INFO]: [Custom Anvil] Preparing Enchantment Squared compatibility...
[21:05:02] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Imported ModelEngine pack successfully!
[21:05:02] [Server thread/WARN]: [Custom Anvil] Material group bows do not exist but is ask by conflict restriction_vampiric
[21:05:02] [Server thread/WARN]: [Custom Anvil] Material group crossbows do not exist but is ask by conflict restriction_vampiric
[21:05:02] [Server thread/WARN]: [Custom Anvil] Enchantment enchantssquared:lava_resistance do not exist but was asked for conflict restriction_lava_resistance
[21:05:02] [Server thread/WARN]: [Custom Anvil] Conflict restriction_lava_resistance do not have valid enchantment, it will not do anything
[21:05:02] [Server thread/WARN]: [Custom Anvil] Enchantment enchantssquared:lightning do not exist but was asked for conflict restriction_lightning
[21:05:02] [Server thread/WARN]: [Custom Anvil] Conflict restriction_lightning do not have valid enchantment, it will not do anything
[21:05:02] [Server thread/WARN]: [Custom Anvil] Enchantment enchantssquared:explosion do not exist but was asked for conflict restriction_explosion
[21:05:02] [Server thread/WARN]: [Custom Anvil] Conflict restriction_explosion do not have valid enchantment, it will not do anything
[21:05:02] [Server thread/INFO]: [Custom Anvil] Preparing Enchantment Squared config...
[21:05:02] [Server thread/INFO]: [Custom Anvil] Could not find equivalent custom anvil group for MACES
[21:05:02] [Server thread/INFO]: [Custom Anvil] Could not find equivalent custom anvil group for MACES
[21:05:02] [Server thread/INFO]: [Custom Anvil] Could not find equivalent custom anvil group for MACES
[21:05:02] [Server thread/INFO]: [Custom Anvil] Could not find equivalent custom anvil group for MACES
[21:05:02] [Server thread/INFO]: [Custom Anvil] Could not find equivalent custom anvil group for MACES
[21:05:02] [Server thread/INFO]: [Custom Anvil] Could not find equivalent custom anvil group for MACES
[21:05:02] [Server thread/INFO]: [Custom Anvil] Could not find equivalent custom anvil group for MACES
[21:05:02] [Server thread/INFO]: [Custom Anvil] Could not find equivalent custom anvil group for TRIDENT
[21:05:02] [Server thread/INFO]: [Custom Anvil] Could not find equivalent custom anvil group for MACES
[21:05:02] [Server thread/INFO]: [Custom Anvil] Enchantment Squared should now work as expected !
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Converting global lang file to individual language files...
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking2_armor_layer_1.png used by creaking_helmet2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking3_armor_layer_1.png used by creaking3_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking4_armor_layer_1.png used by creaking4_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking5_armor_layer_1.png used by creaking5_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking6_armor_layer_1.png used by creaking6_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking7_armor_layer_1.png used by creaking7_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking2_armor_layer_2.png used by creaking2_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking3_armor_layer_2.png used by creaking3_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking4_armor_layer_2.png used by creaking4_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking5_armor_layer_2.png used by creaking5_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:creaking6_armor_layer_2.png used by creaking6_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden2_armor_layer_1.png used by palegarden_helmet2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden3_armor_layer_1.png used by palegarden3_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden4_armor_layer_1.png used by palegarden4_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden5_armor_layer_1.png used by palegarden5_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden6_armor_layer_1.png used by palegarden6_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden7_armor_layer_1.png used by palegarden7_helmet
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden2_armor_layer_2.png used by palegarden2_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden3_armor_layer_2.png used by palegarden3_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden4_armor_layer_2.png used by palegarden4_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden5_armor_layer_2.png used by palegarden5_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:palegarden6_armor_layer_2.png used by palegarden6_leggings
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly2_armor_layer_1.png used by ghostly_helmet2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly3_armor_layer_1.png used by ghostly_helmet3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly4_armor_layer_1.png used by ghostly_helmet4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly5_armor_layer_1.png used by ghostly_helmet5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly6_armor_layer_1.png used by ghostly_helmet6
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly7_armor_layer_1.png used by ghostly_helmet7
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly2_armor_layer_2.png used by ghostly_leggings2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly3_armor_layer_2.png used by ghostly_leggings3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly4_armor_layer_2.png used by ghostly_leggings4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly5_armor_layer_2.png used by ghostly_leggings5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:ghostly6_armor_layer_2.png used by ghostly_leggings6
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman2_armor_layer_1.png used by headlesshorseman_helmet2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman3_armor_layer_1.png used by headlesshorseman_helmet3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman4_armor_layer_1.png used by headlesshorseman_helmet4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman5_armor_layer_1.png used by headlesshorseman_helmet5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman6_armor_layer_1.png used by headlesshorseman_helmet6
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman7_armor_layer_1.png used by headlesshorseman_helmet7
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman2_armor_layer_2.png used by headlesshorseman_leggings2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman3_armor_layer_2.png used by headlesshorseman_leggings3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman4_armor_layer_2.png used by headlesshorseman_leggings4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman5_armor_layer_2.png used by headlesshorseman_leggings5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:headlesshorseman6_armor_layer_2.png used by headlesshorseman_leggings6
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release2_armor_layer_1.png used by release_helmet2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release3_armor_layer_1.png used by release_helmet3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release4_armor_layer_1.png used by release_helmet4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release5_armor_layer_1.png used by release_helmet5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release6_armor_layer_1.png used by release_helmet6
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release7_armor_layer_1.png used by release_helmet7
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release2_armor_layer_2.png used by release_leggings2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release3_armor_layer_2.png used by release_leggings3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release4_armor_layer_2.png used by release_leggings4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release5_armor_layer_2.png used by release_leggings5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:release6_armor_layer_2.png used by release_leggings6
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden2_armor_layer_1.png used by warden_helmet2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden3_armor_layer_1.png used by warden_helmet3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden4_armor_layer_1.png used by warden_helmet4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden5_armor_layer_1.png used by warden_helmet5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden6_armor_layer_1.png used by warden_helmet6
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden7_armor_layer_1.png used by warden_helmet7
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden2_armor_layer_2.png used by warden_leggings2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden3_armor_layer_2.png used by warden_leggings3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden4_armor_layer_2.png used by warden_leggings4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden5_armor_layer_2.png used by warden_leggings5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:warden6_armor_layer_2.png used by warden_leggings6
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow2_armor_layer_1.png used by rainbow_helmet2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow3_armor_layer_1.png used by rainbow_helmet3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow4_armor_layer_1.png used by rainbow_helmet4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow5_armor_layer_1.png used by rainbow_helmet5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow6_armor_layer_1.png used by rainbow_helmet6
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow7_armor_layer_1.png used by rainbow_helmet7
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow2_armor_layer_2.png used by rainbow_leggings2
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow3_armor_layer_2.png used by rainbow_leggings3
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow4_armor_layer_2.png used by rainbow_leggings4
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow5_armor_layer_2.png used by rainbow_leggings5
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Failed to fetch minecraft:rainbow6_armor_layer_2.png used by rainbow_leggings6
[21:05:03] [Server thread/INFO]: Nexo | Found legacy Oraxen-Furniture papers_lost_cat using ItemFrame at -20.5,40.5,-49.96875 | Survival...
[21:05:03] [Server thread/INFO]: Nexo | Nexo only supports ItemDisplay-Furniture, we suggest manually replacing these
[21:05:03] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[21:05:03] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:74)
[21:05:03] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
[21:05:03] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.api.trait.TraitInfo.lambda$new$0(TraitInfo.java:49)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.api.trait.TraitInfo.tryCreateInstance(TraitInfo.java:159)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.npc.CitizensTraitFactory.create(CitizensTraitFactory.java:168)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.npc.CitizensTraitFactory.getTrait(CitizensTraitFactory.java:192)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.api.npc.AbstractNPC.getTraitFor(AbstractNPC.java:261)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.api.npc.AbstractNPC.getOrAddTrait(AbstractNPC.java:239)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.npc.CitizensNPC.setNameInternal(CitizensNPC.java:280)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.api.npc.AbstractNPC.<init>(AbstractNPC.java:86)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.npc.CitizensNPC.<init>(CitizensNPC.java:75)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.npc.CitizensNPCRegistry.createNPC(CitizensNPCRegistry.java:67)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:76)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:630)
[21:05:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:05:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474)
[21:05:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1271)
[21:05:03] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384)
[21:05:03] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:05:03] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: Cannot set to an empty path
[21:05:03] [Server thread/WARN]:     at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143)
[21:05:03] [Server thread/WARN]:     at org.bukkit.configuration.MemorySection.set(MemorySection.java:191)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.api.util.MemoryDataKey.set(MemoryDataKey.java:182)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.api.util.MemoryDataKey.setRaw(MemoryDataKey.java:207)
[21:05:03] [Server thread/WARN]:     at Citizens-2.0.40-b3998.jar//net.citizensnpcs.trait.HologramTrait.<init>(HologramTrait.java:86)
[21:05:03] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
[21:05:03] [Server thread/WARN]:     ... 19 more
[21:05:03] [Server thread/ERROR]: [Citizens] Cannot register a null trait. Was it registered properly?
[21:05:03] [Server thread/WARN]: [Citizens] Task #41 for Citizens v2.0.40-SNAPSHOT (build 3998) generated an exception
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.HologramTrait.getNameRenderer()" because the return value of "net.citizensnpcs.npc.CitizensNPC.getOrAddTrait(java.lang.Class)" is null
    at Citizens-2.0.40-b3998.jar/net.citizensnpcs.npc.CitizensNPC.setNameInternal(CitizensNPC.java:280) ~[Citizens-2.0.40-b3998.jar:?]
    at Citizens-2.0.40-b3998.jar/net.citizensnpcs.api.npc.AbstractNPC.<init>(AbstractNPC.java:86) ~[Citizens-2.0.40-b3998.jar:?]
    at Citizens-2.0.40-b3998.jar/net.citizensnpcs.npc.CitizensNPC.<init>(CitizensNPC.java:75) ~[Citizens-2.0.40-b3998.jar:?]
    at Citizens-2.0.40-b3998.jar/net.citizensnpcs.npc.CitizensNPCRegistry.createNPC(CitizensNPCRegistry.java:67) ~[Citizens-2.0.40-b3998.jar:?]
    at Citizens-2.0.40-b3998.jar/net.citizensnpcs.api.npc.SimpleNPCDataStore.loadInto(SimpleNPCDataStore.java:76) ~[Citizens-2.0.40-b3998.jar:?]
    at Citizens-2.0.40-b3998.jar/net.citizensnpcs.Citizens$CitizensLoadTask.run(Citizens.java:630) ~[Citizens-2.0.40-b3998.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:474) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1271) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:384) ~[paper-1.21.10.jar:1.21.10-115-af06383]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[21:05:03] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Registered item provider: NEXO
[21:05:03] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[21:05:03] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[21:05:03] [Server thread/INFO]: [UpgradeableHoppers] Added region provider: WorldGuard Type: SERVER
[21:05:03] [Server thread/INFO]: [UpgradeableHoppers] Successful integrated Vault economy into economy system. Name: EssentialsX Economy
[21:05:03] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Added 3rd party item stacker plugin support: RoseStacker
[21:05:03] [Server thread/WARN]: java.net.UnknownHostException: api.jeff-media.com
[21:05:03] [Server thread/WARN]:     at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567)
[21:05:03] [Server thread/WARN]:     at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
[21:05:03] [Server thread/WARN]:     at java.base/java.net.Socket.connect(Socket.java:751)
[21:05:03] [Server thread/WARN]:     at java.base/sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:304)
[21:05:03] [Server thread/WARN]:     at java.base/sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:181)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:183)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:377)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:193)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1257)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1143)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:179)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1705)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1629)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[21:05:03] [Server thread/WARN]:     at InvUnload.jar//de.jeff_media.InvUnload.updatechecker.UpdateChecker.E(Unknown Source)
[21:05:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:05:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:05:03] [Server thread/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:05:03] [Server thread/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:05:03] [Server thread/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:05:03] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:05:03] [Server thread/WARN]: [InvUnload] Could not check for updates.
[21:05:03] [Server thread/WARN]: java.net.UnknownHostException: api.jeff-media.de
[21:05:03] [Server thread/WARN]:     at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567)
[21:05:03] [Server thread/WARN]:     at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
[21:05:03] [Server thread/WARN]:     at java.base/java.net.Socket.connect(Socket.java:751)
[21:05:03] [Server thread/WARN]:     at java.base/sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:304)
[21:05:03] [Server thread/WARN]:     at java.base/sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:181)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:183)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:377)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:193)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1257)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1143)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:179)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1705)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1629)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[21:05:03] [Server thread/WARN]:     at JukeBoxPlus-3.8.0.jar//de.jeff_media.JukeBoxPlus.NuL.byte(UpdateChecker.java:203)
[21:05:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:05:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:05:03] [Server thread/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:05:03] [Server thread/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:05:03] [Server thread/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:05:03] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:05:03] [Server thread/WARN]: java.net.UnknownHostException: api.jeff-media.de
[21:05:03] [Server thread/WARN]:     at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567)
[21:05:03] [Server thread/WARN]:     at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
[21:05:03] [Server thread/WARN]:     at java.base/java.net.Socket.connect(Socket.java:751)
[21:05:03] [Server thread/WARN]:     at java.base/sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:304)
[21:05:03] [Server thread/WARN]:     at java.base/sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:181)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:183)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:377)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:193)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1257)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1143)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:179)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1705)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1629)
[21:05:03] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[21:05:03] [Server thread/WARN]:     at JukeBoxPlus-3.8.0.jar//de.jeff_media.JukeBoxPlus.NuL.byte(UpdateChecker.java:203)
[21:05:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:05:03] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:05:03] [Server thread/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:05:03] [Server thread/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:05:03] [Server thread/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:05:03] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[21:05:03] [Server thread/WARN]: [JukeBoxPlus] Could not check for updates.
[21:05:03] [Server thread/WARN]: [JukeBoxPlus] Could not check for updates.
[21:05:03] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.5.1, you're on: 5.5.0
[21:05:03] [Server thread/INFO]: [Kix's Auto Announcer ++ Updater] You are running the latest version of KAA++.
[21:05:03] [Server thread/INFO]: [KixsChatGames Updater] You are running the latest version of KixsChatGames.
[21:05:03] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Validating ResourcePack files...
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:item/pile_books/book is trying to use texture minecraft:book.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:item/pile_eggs/nest is trying to use texture minecraft:nest.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:item/pile_eggs/nest is trying to use texture minecraft:egg.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:item/pile_jars/base/jar is trying to use texture minecraft:jar.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:item/pile_jars/cookies/cookie_jar is trying to use texture minecraft:cookie_jar.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:item/pile_logs/log is trying to use texture minecraft:oak_log.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:item/pile_logs/log is trying to use texture minecraft:oak_log_top.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:item/pile_potions/bottle is trying to use texture minecraft:potions/honey2.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:plushies/sps_mercy_plushie is trying to use texture minecraft:plushies/sps_mercy_plushie.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:hmcwraps/rainbow/rainbow_fishing_rod_cast is trying to use texture pack:rgbset/pickaxe.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:destination is trying to use texture scenes:ui/destination.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:market_stand is trying to use texture scenes:npcs/market_stand.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:hmcwraps/rainbow/rainbow_crossbow_arrow is trying to use texture minecraft:hmcwraps/rainbow/rainbow_crossbow_arrow.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:hmcwraps/rainbow/rainbow_crossbow_firework is trying to use texture minecraft:hmcwraps/rainbow/rainbow_crossbow_firework.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:hmcwraps/rainbow/rainbow_crossbow_pulling_0 is trying to use texture minecraft:hmcwraps/rainbow/rainbow_crossbow_pulling_0.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:hmcwraps/rainbow/rainbow_crossbow_pulling_1 is trying to use texture minecraft:hmcwraps/rainbow/rainbow_crossbow_pulling_1.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Model minecraft:hmcwraps/rainbow/rainbow_crossbow_pulling_2 is trying to use texture minecraft:hmcwraps/rainbow/rainbow_crossbow_pulling_2.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Font nexo:default is trying to use texture scenes:ui/scenes_transport.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | It has been temporarily replaced with a placeholder-image to not break the pack
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Atlas minecraft:blocks is trying to use texture minecraft:cup.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Atlas minecraft:blocks is trying to use texture minecraft:cup_stacked.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Atlas minecraft:blocks is trying to use texture simplehats:item/hats/digger.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Atlas minecraft:blocks is trying to use texture minecraft:pizza_box.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Atlas minecraft:blocks is trying to use texture minecraft:pizza_box_stack.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Atlas minecraft:blocks is trying to use texture minecraft:pizza_pepperoni.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Atlas minecraft:blocks is trying to use texture minecraft:pizza_veggie.png, but it does not exist within Nexo's ResourcePacks
[21:05:04] [Server thread/INFO]: Done (55.019s)! For help, type "help"
[21:05:05] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[21:05:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [4.1.3]
[21:05:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[21:05:05] [Server thread/INFO]: 1 placeholder hook(s) registered!
[21:05:06] [Craft Scheduler Thread - 20 - BetterRTP/INFO]: [BetterRTP] Attempting to queue up some more safe locations...
[21:05:06] [Server thread/INFO]: [AdvancedJobs] Successfully hooked into ProtocolLib, mcMMO, WorldGuard, PlaceholderAPI, MythicMobs, Essentials, Vault, LuckPerms, ViaVersion, TAB, DiscordSRV.
[21:05:06] [Server thread/INFO]: [mcMMO] Using internal version as PluginVersion{major=2, minor=2, bugfix=45} for loading McMMO.
[21:05:06] [Server thread/INFO]: [mcMMO] Hooked into McMMO
[21:05:06] [Server thread/INFO]: [Citizens] Hooked into Citizens
[21:05:06] [Server thread/INFO]: [ExcellentCrates] Hooked into ExcellentCrates
[21:05:06] [Server thread/INFO]: [MythicMobs] Using internal version as PluginVersion{major=5, minor=10, bugfix=1} for loading MythicMobs.
[21:05:06] [Server thread/INFO]: [MythicMobs] Hooked into MythicMobs
[21:05:06] [Server thread/INFO]: [VotifierPlus] Hooked into VotifierPlus
[21:05:07] [Server thread/WARN]: [BetterRTP] Seems like the world `WardenParkour` does not have a `WorldType` declared. Please add/fix this in the config.yml file! This world will be treated as an overworld! If this world is a nether world, configure it to NETHER (example: `- WardenParkour: NETHER`
[21:05:10] [ForkJoinPool.commonPool-worker-1/INFO]: Nexo | Finished generating resourcepack!

[21:05:10] [Server thread/INFO]: [DiscordSRV] API listener dev.rosewood.rosechat.listener.DiscordSRVListener subscribed (1 methods)
[21:05:11] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[21:05:11] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[21:05:11] [Server thread/ERROR]: [ExcellentShop] Invalid item data of 'enchanted_book' product. Found in 'plugins/ExcellentShop/virtual_shop/shops/toolenchants.yml' shop.
[21:05:11] [Server thread/ERROR]: [ExcellentShop] Invalid item data of 'enchanted_book_1' product. Found in 'plugins/ExcellentShop/virtual_shop/shops/toolenchants.yml' shop.
[21:05:11] [Server thread/ERROR]: [ExcellentShop] Invalid item data of 'enchanted_book_2' product. Found in 'plugins/ExcellentShop/virtual_shop/shops/toolenchants.yml' shop.
[21:05:11] [Server thread/ERROR]: [ExcellentShop] Invalid item data of 'enchanted_book_3' product. Found in 'plugins/ExcellentShop/virtual_shop/shops/toolenchants.yml' shop.
[21:05:11] [Server thread/ERROR]: [ExcellentShop] Invalid item data of 'enchanted_book_4' product. Found in 'plugins/ExcellentShop/virtual_shop/shops/toolenchants.yml' shop.
[21:05:11] [Server thread/ERROR]: [ExcellentShop] Invalid item data of 'enchanted_book_5' product. Found in 'plugins/ExcellentShop/virtual_shop/shops/toolenchants.yml' shop.
[21:05:11] [Server thread/ERROR]: [ExcellentShop] Invalid item data of 'enchanted_book_6' product. Found in 'plugins/ExcellentShop/virtual_shop/shops/toolenchants.yml' shop.
[21:05:11] [Server thread/ERROR]: [ExcellentShop] Invalid item data of 'enchanted_book_7' product. Found in 'plugins/ExcellentShop/virtual_shop/shops/toolenchants.yml' shop.
[21:05:11] [ForkJoinPool.commonPool-worker-3/INFO]: [UpgradeableHoppers] You're using the latest version.
[21:05:11] [Craft Scheduler Thread - 23 - VotifierPlus/INFO]: [VotifierPlus] VotifierPlus is up to date! Version: 1.4.3
[21:05:11] [Craft Scheduler Thread - 25 - ArtMap/INFO]: [ArtMap] Loaded 5 from disk cache, 0 from server, and 0 from mojang out of 5 artists with 1 failures
[21:05:11] [Craft Scheduler Thread - 25 - ArtMap/INFO]: [ArtMap] Remaining artists will be loaded when needed.
[21:05:16] [Craft Scheduler Thread - 8 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.19.1
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]: java.io.IOException: Server returned HTTP response code: 520 for URL: https://advancedplugins.net/api/v1/getVersion.php?plugin=AdvancedJobs
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:2028)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1629)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at AdvancedJobs-1.9.6.jar//net.advancedplugins.jobs.impl.utils.ASManager.fetchJsonFromUrl(ASManager.java:2029)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at AdvancedJobs-1.9.6.jar//net.advancedplugins.jobs.impl.utils.plugin.UpdateChecker.lambda$checkUpdate$0(UpdateChecker.java:22)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[21:05:35] [Craft Scheduler Thread - 43 - AdvancedJobs/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)