Paste #135769: Full Server Log

Date: 2025/08/24 15:57:23 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
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
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088


[22:39:28] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-LTS; Eclipse Adoptium Temurin-21.0.7+6) on Linux 6.1.0-37-amd64 (amd64)
[22:39:28] [ServerMain/INFO]: [bootstrap] Loading UniverseSpigot 1.21.8-ver/1.21.8-stable@617c5f0 (2025-08-19T07:51:19Z) for Minecraft 1.21.8
[22:39:28] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[22:39:29] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Compat-EcoEnchants-6.2.0.10.jar'...
[22:39:29] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/ItemPredicateParser-0.0.22.jar'...
[22:39:29] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/QuickShopSearch-0.0.53.jar'...
[22:39:29] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/Addon-Discount-6.2.0.10.jar'...
[22:39:29] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Compat-EcoEnchants-6.2.0.10.jar' in 176ms.
[22:39:29] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Compat-Towny-6.2.0.10.jar'...
[22:39:29] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Addon-Discount-6.2.0.10.jar' in 160ms.
[22:39:29] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/QuickShop-Hikari-6.2.0.10.jar'...
[22:39:29] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Compat-Towny-6.2.0.10.jar' in 48ms.
[22:39:29] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Addon-Limited-6.2.0.10.jar'...
[22:39:29] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Addon-Limited-6.2.0.10.jar' in 20ms.
[22:39:29] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Compat-ItemsAdder-6.2.0.10.jar'...
[22:39:29] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Compat-ItemsAdder-6.2.0.10.jar' in 21ms.
[22:39:29] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/QuickShopSearch-0.0.53.jar' in 602ms.
[22:39:29] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/ItemPredicateParser-0.0.22.jar' in 660ms.
[22:39:30] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/QuickShop-Hikari-6.2.0.10.jar' in 628ms.
[22:39:30] [ServerMain/INFO]: [PluginInitializerManager] Initialized 125 plugins
[22:39:30] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (5):
 - BKCommonLib (1.21.8-v1-SNAPSHOT), EcoBits (1.9.0), FancyHolograms (2.7.0), FancyNpcs (2.7.1), RoseStacker (1.5.36)
[22:39:30] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (120):
 - Actions (2.75.0), AdvancedPortals (2.3.0), AntiVillagerLag (3.0.4), ArmorStandTools (4.4.6), ArtMap (3.9.23), AuctionHouse (2.150.0), Aurora (2.3.4), AuroraCrafting (2.1.6), AxShulkers (1.20.0), AxVaults (2.9.2), BetterHud (1.13.2), BetterRTP (3.6.13), BetterTownyFriends (1.0-SNAPSHOT), Boosters (5.75.0), BreweryX (3.4.10;HEAD), CMILib (1.5.6.3), ChatGames-Premium (1.9.8), ChestSort (14.2.0), Chunky (1.4.36), ClueScrolls (5.1.1), Codex (2.5.3), CommandPanels (3.21.8), ConditionalEvents (4.64.2), DailyRewardsPlus (1.4.8), Denizen (1.3.0-SNAPSHOT (build 1804-REL)), Depenizen (2.1.1 (build 882)), EcoCrates (1.13.10), EcoEnchants (12.24.0), EcoItems (5.64.0), EcoPets (2.74.0), EcoScrolls (1.11.0), EcoShop (1.36.0), EcoSkills (3.65.0), EcoUnenchanter (1.6), EvenMoreFish (2.0.10), EventStaffManager (1.0-SNAPSHOT), ExecutableBlocks (5.25.8.20), ExecutableItems (7.25.8.20), FastAsyncVoxelSniper (3.2.2), FastAsyncWorldEdit (2.12.4-SNAPSHOT-1010;e0db69c), ForcePack (1.3.73), FreedomChat (1.7.5), GSit (2.4.2), HeadDatabase (4.21.1), HexNicks (3.1.2), Hoarder (1.0.5), IncomeHistory (1.0), InteractiveChat (4.3.2.0), InvSeePlusPlus (0.30.7), InvSeePlusPlus_Clear (0.30.7), InvSeePlusPlus_Give (0.30.7), InvUnload (5.2.0), InventoryRollbackPlus (1.7.6), ItemPredicateParser (0.0.22), ItemsAdder (4.0.12), ItsMyConfig (4.0.0), JetsRepairTokens (3.13), Jobs (5.2.6.3), KermLibreforge (1.0.0), LibsDisguises (11.0.7), LiteBans (2.16.3), Lootin (13.1), LuckPerms (5.4.145), MilkyPixelart (2.7.0), MobFarmManager (3.0.4.0), ModelEngine (R4.0.9), ModernShowcase (1.7.1), My_Worlds (1.21.8-v1-SNAPSHOT), MythicDungeons (2.0.1-SNAPSHOT), MythicMobs (5.10.0-SNAPSHOT-ee9efe77), NBTAPI (2.15.1), PickupFilter (1.1.3), PinataParty (2.67.8), PlaceholderAPI (2.11.6), PlayerParticles (8.10), PlayerPoints (3.3.3), PlayerReferrals (1.3.3), PlayerWarps (7.8.0), PrismaFixes (1.0-SNAPSHOT), PrismaFoodAddition (1.0-SNAPSHOT), PrismaParticles (1.0-SNAPSHOT), PrismaUtils (1.0-SNAPSHOT), PrismaWelcome (1.0-SNAPSHOT), PrismaXPStorage (1.0-SNAPSHOT), ProtocolLib (5.4.0), Quests (3.15.2-5b4752e), QuickShop-Hikari (6.2.0.10), QuickShopSearch (0.0.53), RealisticSeasons (11.8.2), ResetPoints (1.0-SNAPSHOT), RoseLoot (1.3.1), SCore (5.25.8.20), SafariNet (1.16.25-SNAPSHOT), SeedBags (1.0-SNAPSHOT), StatTrackers (6.36.0), SuperVanish (6.2.20), SurvivalInvisiframes (2.1.0), TAB-Bridge (6.0.2), Talismans (6.75.0), Topper (3.10.2), Towny (0.101.2.0), TownyCamps (0.0.51), TownyHistories (0.0.35), Tweakin (9.0.0), Vault (2.14.0), VentureChat (3.8.0), ViaVersion (5.4.2), Vulcan (2.9.7.2), WorldGuard (7.0.13-beta-2+5c4848b), WorldGuard-Towny (${project.version}), WorldGuardExtraFlags (4.2.2), eGlow (3.4.2), eco (6.76.3), iConomyUnlocked (0.0.11), packetevents (2.9.4), qsaddon-discount (6.2.0.10), qscompat-ecoenchants (6.2.0.10), qscompat-itemsadder (6.2.0.10), qscompat-towny (6.2.0.10), qssuite-limited (6.2.0.10)
[22:39:32] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[22:39:33] [ServerMain/INFO]: Loaded 1407 recipes
[22:39:33] [ServerMain/INFO]: Loaded 1520 advancements
[22:39:33] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[22:39:33] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 174.2ms
[22:39:33] [Server thread/INFO]: Starting minecraft server version 1.21.8
[22:39:33] [Server thread/INFO]: Loading properties
[22:39:33] [Server thread/INFO]: This server is running UniverseSpigot version 1.21.8-ver/1.21.8-stable@617c5f0 (2025-08-19T07:51:19Z) (Implementing API version 1.21.8-R0.1-SNAPSHOT)
[22:39:33] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[22:39:33] [Server thread/INFO]: Server Ping Player Sample Count: 12
[22:39:33] [Server thread/INFO]: Using 6 threads for Netty based IO
[22:39:34] [Server thread/INFO]: [MoonriseCommon] Paper is using 8 worker threads, 1 I/O threads
[22:39:34] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[22:39:34] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:39:34] [Server thread/INFO]: Default game type: SURVIVAL
[22:39:34] [Server thread/INFO]: Generating keypair
[22:39:34] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[22:39:34] [Server thread/INFO]: Using epoll channel type
[22:39:34] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[22:39:34] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [iConomyUnlocked] Loading 2 libraries... please wait
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [iConomyUnlocked] Loaded library /home/container/libraries/com/h2database/h2/1.3.159/h2-1.3.159.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [iConomyUnlocked] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/9.1.0/mysql-connector-j-9.1.0.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [iConomyUnlocked] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/4.26.1/protobuf-java-4.26.1.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loading 2 libraries... please wait
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/9.1.0/mysql-connector-j-9.1.0.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/4.26.1/protobuf-java-4.26.1.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.46.0.0/sqlite-jdbc-3.46.0.0.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[22:39:34] [Server thread/WARN]: [FancyNpcs] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[22:39:34] [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
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[22:39:34] [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
[22:39:34] [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
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[22:39:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[22:39:34] [Server thread/WARN]: [FancyHolograms] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[22:39:35] [Server thread/WARN]: [BKCommonLib] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loading 1 libraries... please wait
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-all/4.1.118.Final/netty-all-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-buffer/4.1.118.Final/netty-buffer-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec/4.1.118.Final/netty-codec-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-dns/4.1.118.Final/netty-codec-dns-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-haproxy/4.1.118.Final/netty-codec-haproxy-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-http/4.1.118.Final/netty-codec-http-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-http2/4.1.118.Final/netty-codec-http2-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-memcache/4.1.118.Final/netty-codec-memcache-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-mqtt/4.1.118.Final/netty-codec-mqtt-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-redis/4.1.118.Final/netty-codec-redis-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-smtp/4.1.118.Final/netty-codec-smtp-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-socks/4.1.118.Final/netty-codec-socks-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-stomp/4.1.118.Final/netty-codec-stomp-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-codec-xml/4.1.118.Final/netty-codec-xml-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-common/4.1.118.Final/netty-common-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-handler/4.1.118.Final/netty-handler-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] 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
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-handler-proxy/4.1.118.Final/netty-handler-proxy-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-handler-ssl-ocsp/4.1.118.Final/netty-handler-ssl-ocsp-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver/4.1.118.Final/netty-resolver-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver-dns/4.1.118.Final/netty-resolver-dns-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport/4.1.118.Final/netty-transport-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-rxtx/4.1.118.Final/netty-transport-rxtx-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-sctp/4.1.118.Final/netty-transport-sctp-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-udt/4.1.118.Final/netty-transport-udt-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-classes-epoll/4.1.118.Final/netty-transport-classes-epoll-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-classes-kqueue/4.1.118.Final/netty-transport-classes-kqueue-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver-dns-classes-macos/4.1.118.Final/netty-resolver-dns-classes-macos-4.1.118.Final.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-x86_64.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-aarch_64.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-riscv64.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-kqueue/4.1.118.Final/netty-transport-native-kqueue-4.1.118.Final-osx-x86_64.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-transport-native-kqueue/4.1.118.Final/netty-transport-native-kqueue-4.1.118.Final-osx-aarch_64.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver-dns-native-macos/4.1.118.Final/netty-resolver-dns-native-macos-4.1.118.Final-osx-x86_64.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /home/container/libraries/io/netty/netty-resolver-dns-native-macos/4.1.118.Final/netty-resolver-dns-native-macos-4.1.118.Final-osx-aarch_64.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[22:39:35] [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
[22:39:35] [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
[22:39:35] [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
[22:39:35] [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
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[22:39:35] [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
[22:39:35] [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
[22:39:35] [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
[22:39:35] [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
[22:39:35] [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
[22:39:35] [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
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[22:39:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[22:39:35] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(1.21.8-R0.1-SNAPSHOT) is not supported by this NBT-API Version(2.14.2-SNAPSHOT) located in CommandPanels. The NBT-API will try to work as good as it can! Some functions may not work!
[22:39:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Unable to create a bStats instance!!
[22:39:35] [Server thread/WARN]: [NBTAPI] [NBTAPI] Unable to find the method 'g' in 'Entity' Args: [class net.minecraft.nbt.CompoundTag] Enum: NMS_ENTITY_SET_NBT
[22:39:35] [Server thread/WARN]: [NBTAPI] [NBTAPI] Unable to find the method 'f' in 'Entity' Args: [class net.minecraft.nbt.CompoundTag] Enum: NMS_ENTITY_GET_NBT
[22:39:35] [Server thread/WARN]: [NBTAPI] [NBTAPI] Unable to find the method 'Unmappedsave(net.minecraft.core.HolderLookup$Provider)' in 'ItemStack' Args: [interface net.minecraft.core.HolderLookup$Provider] Enum: NMSITEM_SAVE_MODERN
[22:39:35] [Server thread/WARN]: [NBTAPI] [NBTAPI] Unable to find the method 'Unmappedparse(net.minecraft.core.HolderLookup$Provider,net.minecraft.nbt.Tag)' in 'ItemStack' Args: [interface net.minecraft.core.HolderLookup$Provider, interface net.minecraft.nbt.Tag] Enum: NMSITEM_LOAD_MODERN
[22:39:35] [Server thread/WARN]: [NBTAPI] [NBTAPI] Unable to find the method 'UnmappedsaveWithId(net.minecraft.core.HolderLookup$Provider)' in 'BlockEntity' Args: [interface net.minecraft.core.HolderLookup$Provider] Enum: TILEENTITY_GET_NBT_1205
[22:39:35] [Server thread/WARN]: [NBTAPI] [NBTAPI] Unable to find the method 'UnmappedloadWithComponents(net.minecraft.nbt.CompoundTag,net.minecraft.core.HolderLookup$Provider)' in 'BlockEntity' Args: [class net.minecraft.nbt.CompoundTag, interface net.minecraft.core.HolderLookup$Provider] Enum: TILEENTITY_SET_NBT_1205
[22:39:35] [Server thread/INFO]: [CommandPanels] NBTAPI Error: version being used may not be compatible with this version of Minecraft. Falling back to use PersistentData.
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[22:39:35] [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
[22:39:35] [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
[22:39:35] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[22:39:35] [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
[22:39:35] [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
[22:39:35] [Server thread/INFO]: [eco] Initializing eco
[22:39:36] [Server thread/INFO]: [EcoItems] Initializing EcoItems
[22:39:37] [Server thread/INFO]: [EcoCrates] Initializing EcoCrates
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loading 7 libraries... please wait
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/flywaydb/flyway-core/10.22.0/flyway-core-10.22.0.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.15.2/jackson-dataformat-toml-2.15.2.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/flywaydb/flyway-mysql/10.22.0/flyway-mysql-10.22.0.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/devskiller/friendly-id/friendly-id/1.1.0/friendly-id-1.1.0.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/googlecode/json-simple/json-simple/1.1.1/json-simple-1.1.1.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/junit/junit/4.10/junit-4.10.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/apache/maven/maven-artifact/4.0.0-rc-4/maven-artifact-4.0.0-rc-4.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/guava/guava/33.4.8-jre/guava-33.4.8-jre.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.36.0/error_prone_annotations-2.36.0.jar
[22:39:38] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/3.0.0/j2objc-annotations-3.0.0.jar
[22:39:38] [Server thread/INFO]: [Boosters] Initializing Boosters
[22:39:38] [Server thread/INFO]: [EcoEnchants] Initializing EcoEnchants
[22:39:38] [Server thread/INFO]: [KermLibreforge] Initializing KermLibreforge
[22:39:39] [Server thread/INFO]: [EcoSkills] Initializing EcoSkills
[22:39:40] [Server thread/INFO]: [Actions] Initializing Actions
[22:39:41] [Server thread/INFO]: [EcoBits] Initializing EcoBits
[22:39:41] [Server thread/WARN]: [EcoBits] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[22:39:41] [Server thread/INFO]: [Talismans] Initializing Talismans
[22:39:41] [Server thread/INFO]: [EcoScrolls] Initializing EcoScrolls
[22:39:42] [Server thread/INFO]: [StatTrackers] Initializing StatTrackers
[22:39:42] [Server thread/INFO]: [EcoPets] Initializing EcoPets
[22:39:43] [Server thread/INFO]: [EcoUnenchanter] Initializing EcoUnenchanter
[22:39:44] [Server thread/WARN]: [EcoUnenchanter] Notify plugin authors _OfTeN_ that
[22:39:44] [Server thread/WARN]: [EcoUnenchanter] they are missing crucial lang.yml keys! They can be found
[22:39:44] [Server thread/WARN]: [EcoUnenchanter] in the LangYml class.
[22:39:44] [Server thread/INFO]: [EcoShop] Initializing EcoShop
[22:39:44] [Server thread/WARN]: [RoseStacker] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[22:39:44] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loading 1 libraries... please wait
[22:39:44] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.42.0.0/sqlite-jdbc-3.42.0.0.jar
[22:39:44] [Server thread/INFO]: [ResetPoints] Loading server plugin ResetPoints v1.0-SNAPSHOT
[22:39:44] [Server thread/INFO]: [EventStaffManager] Loading server plugin EventStaffManager v1.0-SNAPSHOT
[22:39:44] [Server thread/INFO]: [JetsRepairTokens] Loading server plugin JetsRepairTokens v3.13
[22:39:44] [Server thread/INFO]: [FreedomChat] Loading server plugin FreedomChat v1.7.5
[22:39:44] [Server thread/INFO]: [AxShulkers] Loading server plugin AxShulkers v1.20.0
[22:39:44] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.4.2
[22:39:44] [Server thread/INFO]: [ViaVersion] ViaVersion 5.4.2 is now loaded. Registering protocol transformers and injecting...
[22:39:44] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[22:39:44] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[22:39:45] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.15.1
[22:39:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[22:39:45] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(1.21.8-R0.1-SNAPSHOT) is not supported by this NBT-API Version(2.15.1) located in NBTAPI. The NBT-API will try to work as good as it can! Some functions may not work!
[22:39:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[22:39:45] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.145
[22:39:45] [Thread-15/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[22:39:45] [Server thread/INFO]: [SurvivalInvisiframes] Loading server plugin SurvivalInvisiframes v2.1.0
[22:39:45] [Server thread/INFO]: [iConomyUnlocked] Loading server plugin iConomyUnlocked v0.0.11
[22:39:45] [Server thread/INFO]: [iConomyUnlocked] Registered VaultUnlocked interface.
[22:39:45] [Server thread/INFO]: [iConomyUnlocked] Registered Vault interface.
[22:39:45] [Server thread/INFO]: [AntiVillagerLag] Loading server plugin AntiVillagerLag v3.0.4
[22:39:45] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0
[22:39:45] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.7.6
[22:39:45] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.36
[22:39:45] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[22:39:45] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.16.3
[22:39:45] [Server thread/INFO]: [ItsMyConfig] Loading server plugin ItsMyConfig v4.0.0
[22:39:45] [Server thread/INFO]: [AxVaults] Loading server plugin AxVaults v2.9.2
[22:39:45] [Server thread/INFO]: [ModernShowcase] Loading server plugin ModernShowcase v1.7.1
[22:39:45] [Server thread/INFO]: [PrismaXPStorage] Loading server plugin PrismaXPStorage v1.0-SNAPSHOT
[22:39:45] [Server thread/INFO]: [Vault] Loading server plugin Vault v2.14.0
[22:39:45] [Server thread/INFO]: [PrismaFixes] Loading server plugin PrismaFixes v1.0-SNAPSHOT
[22:39:45] [Server thread/INFO]: [TAB-Bridge] Loading server plugin TAB-Bridge v6.0.2
[22:39:45] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.30.7
[22:39:45] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.3.3
[22:39:45] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.5.3
[22:39:45] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.2.0
[22:39:45] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.9.4
[22:39:45] [Server thread/INFO]: [DailyRewardsPlus] Loading server plugin DailyRewardsPlus v1.4.8
[22:39:45] [Server thread/INFO]: [FancyNpcs] Loading server plugin FancyNpcs v2.7.1
[22:39:45] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.6.3
[22:39:45] [Server thread/INFO]: [HexNicks] Loading server plugin HexNicks v3.1.2
[22:39:45] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v2.3.0
[22:39:45] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.4-SNAPSHOT-1010;e0db69c
[22:39:46] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2a8e3d3f]
[22:39:46] [Server thread/INFO]: [Topper] Loading server plugin Topper v3.10.2
[22:39:46] [Server thread/INFO]: [PlayerReferrals] Loading server plugin PlayerReferrals v1.3.3
[22:39:46] [Server thread/INFO]: [ChatGames-Premium] Loading server plugin ChatGames-Premium v1.9.8
[22:39:46] [Server thread/INFO]: [FastAsyncVoxelSniper] Loading server plugin FastAsyncVoxelSniper v3.2.2
[22:39:46] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.30.7
[22:39:46] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.13-beta-2+5c4848b
[22:39:46] [Server thread/INFO]: [MobFarmManager] Loading server plugin MobFarmManager v3.0.4.0
[22:39:46] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.2
[22:39:46] [Server thread/INFO]: [MilkyPixelart] Loading server plugin MilkyPixelart v2.7.0
[22:39:46] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[22:39:46] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.67.8
[22:39:46] [Server thread/INFO]: [Towny] Loading server plugin Towny v0.101.2.0
[22:39:46] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.64.2
[22:39:46] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.21.1
[22:39:46] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.7.0
[22:39:46] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v11.0.7
[22:39:46] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully loaded FancyHolograms version 2.7.0
[22:39:46] [Server thread/INFO]: [WorldGuard-Towny] Loading server plugin WorldGuard-Towny v${project.version}
[22:39:46] [Server thread/INFO]: [Lootin] Loading server plugin Lootin v13.1
[22:39:46] [Server thread/INFO]: [Lootin] Found WorldGuard, registering lootin-container-access flag
[22:39:46] [Server thread/INFO]: [Lootin] Worldguard flag: lootin-container-access registered successfully
[22:39:46] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.20
[22:39:46] [Server thread/INFO]: [TownyCamps] Loading server plugin TownyCamps v0.0.51
[22:39:46] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.21.8-v1-SNAPSHOT
[22:39:47] [Server thread/WARN]: [BKCommonLib] Requirement was not found in net.minecraft.world.entity.EntityLiving:
[22:39:47] [Server thread/WARN]: [BKCommonLib] Failed to find field private final Map<EnumItemSlot, ItemStack> lastEquipmentItems; - Alternatives:
[22:39:47] [Server thread/WARN]: [BKCommonLib]   - public final Map<net.minecraft.core.Holder<MobEffect>, net.minecraft.world.effect.MobEffectInstance> activeEffects;
[22:39:47] [Server thread/WARN]: [BKCommonLib]   - protected it.unimi.dsi.fastutil.objects.Object2DoubleMap<net.minecraft.tags.TagKey<net.minecraft.world.level.material.Fluid>> fluidHeight;
[22:39:47] [Server thread/WARN]: [BKCommonLib]   - private final ItemStack[] lastEquipmentItems;
[22:39:47] [Server thread/WARN]: [BKCommonLib]   - private int lastHurtMobTimestamp;
[22:39:47] [Server thread/WARN]: [BKCommonLib]   - private long lastDamageStamp;
[22:39:47] [Server thread/WARN]: [BKCommonLib]   - private int lastRainCheck;
[22:39:47] [Server thread/WARN]: [BKCommonLib]   - private net.minecraft.core.BlockPos lastClimbingPosition;
[22:39:47] [Server thread/WARN]: [BKCommonLib]   - private final ai.attributes.AttributeMap attributes;
[22:39:48] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[22:39:53] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.30.7
[22:39:53] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.25.8.20
[22:39:53] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.10.0-SNAPSHOT-ee9efe77
[22:39:53] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[22:39:53] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[22:39:53] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15.2-5b4752e
[22:39:53] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.21.8-v1-SNAPSHOT
[22:39:53] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.4.2
[22:39:53] [Server thread/INFO]: [BetterHud] Loading server plugin BetterHud v1.13.2
[22:39:53] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v2.0.1-SNAPSHOT
[22:39:53] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.8.0
[22:39:53] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v7.25.8.20
[22:39:53] [Server thread/INFO]: [ExecutableBlocks] Loading server plugin ExecutableBlocks v5.25.8.20
[22:39:53] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.21.8
[22:39:53] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.10
[22:39:53] [Server thread/INFO]: [ArtMap] Loading server plugin ArtMap v3.9.23
[22:39:53] [Server thread/INFO]: [BetterTownyFriends] Loading server plugin BetterTownyFriends v1.0-SNAPSHOT
[22:39:53] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.6
[22:39:53] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[22:39:53] [Server thread/INFO]: [TownyHistories] Loading server plugin TownyHistories v0.0.35
[22:39:53] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[22:39:53] [Server thread/INFO]: [RealisticSeasons] Loading server plugin RealisticSeasons v11.8.2
[22:39:53] [Server thread/INFO]: [VentureChat] Loading server plugin VentureChat v3.8.0
[22:39:53] [Server thread/INFO]: [PrismaWelcome] Loading server plugin PrismaWelcome v1.0-SNAPSHOT
[22:39:53] [Server thread/INFO]: [PrismaUtils] Loading server plugin PrismaUtils v1.0-SNAPSHOT
[22:39:53] [Server thread/INFO]: [Codex] Loading server plugin Codex v2.5.3
[22:39:53] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.9
[22:39:53] [Server thread/INFO]: [PrismaParticles] Loading server plugin PrismaParticles v1.0-SNAPSHOT
[22:39:53] [Server thread/INFO]: [eGlow] Loading server plugin eGlow v3.4.2
[22:39:53] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.7.2
[22:39:53] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.12
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library FastNbt-jar (remapped)...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library httpmime...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library httpclient
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library httpcore
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library commons-logging
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library commons-codec
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library commons-math3...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library speedy-math...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library jansi...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library fastjson...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library fastjson2-extension
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library fastjson2
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library json-path...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library json-smart
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library accessors-smart
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library asm
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library slf4j-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library armor-equip-event...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library glowingentities...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library reflection-remapper
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-minimessage...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library option
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library jspecify
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library gson
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library auto-service-annotations
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-commons
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson-legacy-impl...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library option
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library jspecify
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library gson
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library auto-service-annotations
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-commons
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json-legacy-impl
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-nbt
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-bukkit...
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-key
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-bungeecord
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-legacy
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-nbt
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-api
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library examination-string
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library annotations
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library option
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library jspecify
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library auto-service-annotations
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-commons
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-gson-legacy-impl
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-text-serializer-json-legacy-impl
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-facet
[22:39:54] [Server thread/INFO]: [ItemsAdder] Loading library adventure-platform-viaversion
[22:39:54] [Server thread/INFO]: [ForcePack] Loading server plugin ForcePack v1.3.73
[22:39:54] [Server thread/INFO]: [PrismaFoodAddition] Loading server plugin PrismaFoodAddition v1.0-SNAPSHOT
[22:39:54] [Server thread/INFO]: [InvUnload] Loading server plugin InvUnload v5.2.0
[22:39:54] [Server thread/INFO]: [eco] Loading server plugin eco v6.76.3
[22:39:54] [Server thread/INFO]: [EcoItems] Loading server plugin EcoItems v5.64.0
[22:39:54] [Server thread/INFO]: [libreforge] Initializing libreforge
[22:39:54] [Server thread/INFO]: [libreforge] Loading server plugin libreforge v4.77.0
[22:39:54] [Server thread/INFO]: [EcoCrates] Loading server plugin EcoCrates v1.13.10
[22:39:54] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.3.2.0
[22:39:54] [Server thread/INFO]: [Hoarder] Loading server plugin Hoarder v1.0.5
[22:39:54] [Server thread/INFO]: [EvenMoreFish] Loading server plugin EvenMoreFish v2.0.10
[22:39:54] [Server thread/INFO]: [CommandAPI] Loaded platform NMS_1_21_R5 > NMS_Common > CommandAPIBukkit
[22:39:54] [Server thread/INFO]: [CommandAPI] Hooked into Spigot successfully for Chat/ChatComponents
[22:39:54] [Server thread/INFO]: [CommandAPI] Hooked into Adventure for AdventureChat/AdventureChatComponents
[22:39:54] [Server thread/INFO]: [CommandAPI] Hooked into Paper for paper-specific API implementations
[22:39:54] [Server thread/INFO]: [Boosters] Loading server plugin Boosters v5.75.0
[22:39:54] [Server thread/INFO]: [EcoEnchants] Loading server plugin EcoEnchants v12.24.0
[22:39:54] [Server thread/INFO]: [KermLibreforge] Loading server plugin KermLibreforge v1.0.0
[22:39:54] [Server thread/INFO]: [EcoSkills] Loading server plugin EcoSkills v3.65.0
[22:39:55] [Server thread/INFO]: [Aurora] Loading server plugin Aurora v2.3.4
[22:39:55] [Server thread/INFO]: [Actions] Loading server plugin Actions v2.75.0
[22:39:55] [Server thread/INFO]: [BreweryX] Loading server plugin BreweryX v3.4.10;HEAD
[22:39:55] [Server thread/INFO]: [EcoBits] Loading server plugin EcoBits v1.9.0
[22:39:55] [Server thread/INFO]: [ItemPredicateParser] Loading server plugin ItemPredicateParser v0.0.22
[22:39:55] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.6.3
[22:39:55] [Server thread/INFO]: [PickupFilter] Loading server plugin PickupFilter v1.1.3
[22:39:55] [Server thread/INFO]: [PickupFilter] WorldGuard flags registered
[22:39:55] [Server thread/INFO]: [Talismans] Loading server plugin Talismans v6.75.0
[22:39:55] [Server thread/INFO]: [EcoScrolls] Loading server plugin EcoScrolls v1.11.0
[22:39:55] [Server thread/INFO]: [StatTrackers] Loading server plugin StatTrackers v6.36.0
[22:39:55] [Server thread/INFO]: [EcoPets] Loading server plugin EcoPets v2.74.0
[22:39:55] [Server thread/INFO]: [AuroraCrafting] Loading server plugin AuroraCrafting v2.1.6
[22:39:55] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.10
[22:39:55] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[22:39:55] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[22:39:55] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 22ms
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 37ms
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 224ms
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 851ms
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 1117ms
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 12 libraries (0 skipped libraries)...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/12]
[22:39:56] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[22:39:56] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[22:39:56] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/12]
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Updating configuration from 1032 to 1033
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Executing update script configDisplayCoords
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Configuration updated to version 1033
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[22:39:56] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[22:39:56] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[22:39:56] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[22:39:56] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[22:39:57] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[22:39:57] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[22:39:57] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[22:39:57] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[22:39:57] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (2058ms). Waiting for enable...
[22:39:57] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v2.150.0
[22:39:57] [Server thread/INFO]: [Tweakin] Loading server plugin Tweakin v9.0.0
[22:39:57] [Server thread/INFO]: [Tweakin] Found WorldGuard, initializing flags support
[22:39:57] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-better-sign-edit registered successfully
[22:39:57] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-shear-item-frame registered successfully
[22:39:57] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-snowball-knockback registered successfully
[22:39:57] [Server thread/INFO]: [Tweakin] Worldguard flag: tweakin-reach-around registered successfully
[22:39:57] [Server thread/INFO]: [qscompat-itemsadder] Loading server plugin qscompat-itemsadder v6.2.0.10
[22:39:57] [Server thread/INFO]: [qscompat-itemsadder] Loading up...
[22:39:57] [Server thread/INFO]: [QuickShopSearch] Loading server plugin QuickShopSearch v0.0.53
[22:39:57] [Server thread/INFO]: [EcoUnenchanter] Loading server plugin EcoUnenchanter v1.6
[22:39:57] [Server thread/INFO]: [IncomeHistory] Loading server plugin IncomeHistory v1.0
[22:39:57] [Server thread/INFO]: [qscompat-towny] Loading server plugin qscompat-towny v6.2.0.10
[22:39:57] [Server thread/INFO]: [qscompat-towny] Loading up...
[22:39:57] [Server thread/INFO]: [qscompat-ecoenchants] Loading server plugin qscompat-ecoenchants v6.2.0.10
[22:39:57] [Server thread/INFO]: [qscompat-ecoenchants] Loading up...
[22:39:57] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.1.1 (build 882)
[22:39:57] [Server thread/INFO]: [EcoShop] Loading server plugin EcoShop v1.36.0
[22:39:57] [Server thread/INFO]: [qsaddon-discount] Loading server plugin qsaddon-discount v6.2.0.10
[22:39:57] [Server thread/INFO]: [qssuite-limited] Loading server plugin qssuite-limited v6.2.0.10
[22:39:57] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.36
[22:39:57] [Server thread/INFO]: [ClueScrolls] Loading server plugin ClueScrolls v5.1.1
[22:39:57] [Server thread/INFO]: [SeedBags] Loading server plugin SeedBags v1.0-SNAPSHOT
[22:39:57] [Server thread/INFO]: [RoseLoot] Loading server plugin RoseLoot v1.3.1
[22:39:57] [Server thread/INFO]: [RoseLoot] Initializing using RoseGarden v1.5.2
[22:39:57] [Server thread/INFO]: [SafariNet] Loading server plugin SafariNet v1.16.25-SNAPSHOT
[22:39:57] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[22:39:57] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.145
[22:39:58] [Server thread/INFO]:         __    
[22:39:58] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.145
[22:39:58] [Server thread/INFO]:   |___ |      Running on Bukkit - UniverseSpigot
[22:39:58] [Server thread/INFO]: 
[22:39:58] [Server thread/INFO]: [LuckPerms] Loading configuration...
[22:39:58] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[22:39:59] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[22:39:59] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[22:40:00] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2760ms)
[22:40:00] [Server thread/INFO]: [iConomyUnlocked] Enabling iConomyUnlocked v0.0.11
[22:40:00] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0
[22:40:00] [Server thread/INFO]: [Vault] Enabling Vault v2.14.0
[22:40:00] [Server thread/INFO]: [Vault] Enabled Version 2.14.0
[22:40:00] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[22:40:00] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.3.3
[22:40:00] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[22:40:00] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.4-SNAPSHOT-1010;e0db69c
[22:40:00] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[22:40:00] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[22:40:00] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[22:40:00] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[22:40:00] [Server thread/WARN]: 
**********************************************
** This FastAsyncWorldEdit version does not fully support your version of Bukkit.
** You can fix this by:
** - Updating your server version (Check /version to see how many versions you are behind)
** - Updating FAWE
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**********************************************

[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=0]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=1]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=2]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=3]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=4]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=5]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=6]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=7]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=8]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=9]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=10]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=11]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=12]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=13]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=14]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=15]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=north]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=south]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=west]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=east]. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown block: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this block.
[22:40:01] [Server thread/ERROR]: Unknown item: minecraft:grass. Neither the DataFixer nor defaulting worked to recognize this item.
[22:40:01] [Server thread/ERROR]: Unknown item: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this item.
[22:40:01] [Server thread/ERROR]: Unknown item: minecraft:sign. Neither the DataFixer nor defaulting worked to recognize this item.
[22:40:01] [Server thread/ERROR]: Unknown item: minecraft:rose_red. Neither the DataFixer nor defaulting worked to recognize this item.
[22:40:01] [Server thread/ERROR]: Unknown item: minecraft:cactus_green. Neither the DataFixer nor defaulting worked to recognize this item.
[22:40:01] [Server thread/ERROR]: Unknown item: minecraft:dandelion_yellow. Neither the DataFixer nor defaulting worked to recognize this item.
[22:40:01] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.21.8-v1-SNAPSHOT
[22:40:01] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paper (1.21.8-617c5f0 | mojmap) : (Unknown) (Minecraft 1.21.8)
[22:40:01] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[22:40:01] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[22:40:01] [ForkJoinPool.commonPool-worker-5/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 151 build(s) out of date.
You are running build 1010, the latest version is build 1161.
Update at https://www.spigotmc.org/resources/13932/
[22:40:01] [Server thread/INFO]: [BKCommonLib] JDK17+ incubator vector maths are enabled. Will use it for loading MapDisplay textures.
[22:40:02] [Server thread/INFO]: [BKCommonLib] Includes records and ways to change them!
[22:40:02] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.21.8-v1-SNAPSHOT (build: 1908) enabled! (0.988s)
[22:40:02] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.9
[22:40:02] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[22:40:02] [Server thread/INFO]: [eco] Enabling eco v6.76.3
[22:40:02] [Server thread/INFO]: [eco] Loading eco
[22:40:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eco [6.76.3]
[22:40:02] [Server thread/INFO]: [eco] Loaded integrations: Vulcan, Denizen, MythicMobs, PlaceholderAPI, Towny, ExecutableItems, HeadDatabase, ModelEngine, Vault, FancyHolograms, PlayerPoints, WorldGuard, ItemsAdder
[22:40:02] [Server thread/INFO]: [eco] Scanning for conflicts...
[22:40:02] [Server thread/INFO]: [eco] No conflicts found!
[22:40:02] [Server thread/INFO]: [Hoarder] Enabling Hoarder v1.0.5
[22:40:02] [Server thread/INFO]: [Hoarder] Loading SQLITE as storage type...
[22:40:02] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[22:40:02] [Server thread/INFO]: [Hoarder] Successfully registered 1 command aliases
[22:40:02] [Server thread/INFO]: [Hoarder] Successfully hooked into PlaceholderAPI!
[22:40:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hoarder [1.0.5]
[22:40:02] [Server thread/INFO]: [EcoEnchants] Enabling EcoEnchants v12.24.0
[22:40:02] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants
[22:40:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoenchants [12.24.0]
[22:40:02] [Server thread/INFO]: [EcoBits] Enabling EcoBits v1.9.0
[22:40:02] [Server thread/INFO]: [EcoBits] Loading EcoBits
[22:40:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecobits [1.9.0]
[22:40:02] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[22:40:02] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[22:40:02] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[22:40:02] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[22:40:02] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[22:40:02] [Server thread/INFO]: Preparing level "world"
[22:40:02] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:02] [Server thread/WARN]: Failed to load biomes via adapter (not present). Will load via bukkit
[22:40:02] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:02] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:02] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[22:40:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:03] [Server thread/INFO]: Time elapsed: 612 ms
[22:40:03] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[22:40:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:03] [Server thread/INFO]: Time elapsed: 52 ms
[22:40:03] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[22:40:03] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:03] [Server thread/INFO]: Time elapsed: 29 ms
[22:40:03] [Server thread/INFO]: [ResetPoints] Enabling ResetPoints v1.0-SNAPSHOT
[22:40:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ResetPoints [1.0.0]
[22:40:03] [Server thread/INFO]: [ResetPoints] PlaceholderAPI support enabled!
[22:40:03] [Server thread/INFO]: [ResetPoints] ResetPoints has been enabled!
[22:40:03] [Server thread/INFO]: [EventStaffManager] Enabling EventStaffManager v1.0-SNAPSHOT
[22:40:03] [Server thread/INFO]: [EventStaffManager] EventStaffManager has been enabled!
[22:40:03] [Server thread/INFO]: [JetsRepairTokens] Enabling JetsRepairTokens v3.13
[22:40:03] [Server thread/INFO]: [JetsRepairTokens] [STDOUT] 
[RepairToken] Initializing Plugin
[22:40:03] [Server thread/WARN]: Nag author(s): '[jet315]' of 'JetsRepairTokens v3.13' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[22:40:03] [Server thread/INFO]: [JetsRepairTokens] Config.yml found, loading!
[22:40:03] [Server thread/INFO]: [JetsRepairTokens] [STDOUT] [RepairToken] Initializing Complete - Time took 14Ms

[22:40:03] [Server thread/INFO]: [FreedomChat] Enabling FreedomChat v1.7.5
[22:40:03] [Server thread/INFO]: [AxShulkers] Enabling AxShulkers v1.20.0
[22:40:03] [Server thread/INFO]: [AxShulkers] Loaded plugin! Using H2 database to store data!
[22:40:04] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.4.2
[22:40:04] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.7-1.21.8 (772)
[22:40:04] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[22:40:04] [Server thread/WARN]: [ViaVersion] ViaVersion only supports newer client versions. Use ViaBackwards to allow older versions (ViaRewind for 1.7/1.8) to join.
[22:40:04] [Server thread/WARN]: [ViaVersion] Get setup help at https://viaversion.com/setup or download ViaBackwards/ViaRewind directly at https://ci.viaversion.com/
[22:40:04] [Server thread/WARN]: [ViaVersion] Need more help? Join our Discord at https://viaversion.com/discord
[22:40:04] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[22:40:04] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[22:40:04] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.15.1
[22:40:04] [Server thread/INFO]: [NBTAPI] Checking bindings...
[22:40:04] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[22:40:04] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[22:40:04] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[22:40:04] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[22:40:04] [Server thread/INFO]: [SurvivalInvisiframes] Enabling SurvivalInvisiframes v2.1.0
[22:40:04] [Server thread/INFO]: [AntiVillagerLag] Enabling AntiVillagerLag v3.0.4
[22:40:04] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.7.6
[22:40:04] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.8-617c5f0 (MC: 1.21.8)
[22:40:04] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R5
[22:40:04] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[22:40:04] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[22:40:04] [Server thread/INFO]: [InventoryRollbackPlus] Tests completed: 5, Skipped: 0, Failed: 0
[22:40:04] [Server thread/INFO]: [InventoryRollbackPlus] All tests passed successfully.
[22:40:04] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.36
[22:40:04] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[22:40:04] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[22:40:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vaultunlocked [2.13.1]
[22:40:04] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.16.3
[22:40:04] [Server thread/INFO]: [LiteBans] Using system locale (en)
[22:40:04] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[22:40:04] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql 8.0.29 (com.mysql.cj.jdbc.Driver)
[22:40:04] [Server thread/INFO]: [LiteBans] Connecting to database...
[22:40:04] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (70.7 ms).
[22:40:04] [Server thread/INFO]: [LiteBans] Database connection fully initialized (80.6 ms).
[22:40:04] [Server thread/INFO]: [LiteBans] v2.16.3 enabled. Startup took 218 ms.
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Enabling ItsMyConfig v4.0.0
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loading ItsMyConfig...
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-text-serializer-bungeecord
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-api
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-key
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loading library examination-api
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loading library examination-string
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loading library annotations
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-text-serializer-legacy
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loading library adventure-text-serializer-gson
[22:40:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: imc [4.0.0]
[22:40:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itsmyconfig [4.0.0]
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Loaded all 21 Placeholders in 14ms
[22:40:04] [Server thread/INFO]: [ItsMyConfig] Registering Kick Listener
[22:40:04] [Server thread/INFO]: [ItsMyConfig] ItsMyConfig loaded in 258ms
[22:40:04] [Server thread/INFO]: [AxVaults] Enabling AxVaults v2.9.2
[22:40:05] [Server thread/INFO]: [AxVaults] Hooked into PlaceholderAPI!
[22:40:05] [Server thread/INFO]: [AxVaults] Loaded plugin!
[22:40:05] [Server thread/INFO]: [ModernShowcase] Enabling ModernShowcase v1.7.1
[22:40:05] [Server thread/INFO]: ModernShowcase is enabled.
[22:40:05] [Server thread/INFO]: [PrismaXPStorage] Enabling PrismaXPStorage v1.0-SNAPSHOT
[22:40:05] [Server thread/INFO]: [PrismaFixes] Enabling PrismaFixes v1.0-SNAPSHOT
[22:40:05] [Server thread/INFO]: [PrismaFixes] PrismaFixes has been enabled!
[22:40:05] [Server thread/INFO]: [PrismaFixes] Anti-spam disconnect prevention: ENABLED
[22:40:05] [Server thread/INFO]: [TAB-Bridge] Enabling TAB-Bridge v6.0.2
[22:40:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [6.0.2]
[22:40:05] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.30.7
[22:40:05] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.2.0
[22:40:05] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.13-beta-2+5c4848b
[22:40:05] [Server thread/INFO]: [ChestSort] Use permissions: true
[22:40:05] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[22:40:05] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:false
[22:40:05] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[22:40:05] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[22:40:05] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:false
[22:40:05] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[22:40:05] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[22:40:05] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[22:40:05] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[22:40:05] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[22:40:05] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[22:40:05] [Server thread/INFO]: [ChestSort]   |- Double-Click: false
[22:40:05] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[22:40:05] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[22:40:05] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[22:40:05] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[22:40:05] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[22:40:05] [Server thread/INFO]: [ChestSort] Check for updates: true
[22:40:05] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[22:40:05] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[22:40:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.2.0]
[22:40:05] [Server thread/INFO]: [packetevents] Enabling packetevents v2.9.4
[22:40:05] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[22:40:05] [Server thread/INFO]: [DailyRewardsPlus] Enabling DailyRewardsPlus v1.4.8
[22:40:05] [Server thread/INFO]: [DailyRewards+] Starting DailyRewards+!
[22:40:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: daily [1.0.0]
[22:40:05] [Server thread/INFO]: [DailyRewards+] Detected Placeholder API. Successfully enabled plugin support.
[22:40:05] [Server thread/INFO]: [DailyRewards+] Cleaning up...
[22:40:05] [Server thread/INFO]: [DailyRewards+] Accumulating player data for LeaderBoard placeholders, this task will run asynchronously.
[22:40:05] [Server thread/INFO]: [DailyRewards+] Detected version group as V1.20.5+[1218]. Applying necessary settings.
[22:40:05] [Server thread/INFO]: [DailyRewards+] Has started successfully!
[22:40:05] [Server thread/INFO]: [FancyNpcs] Enabling FancyNpcs v2.7.1
[22:40:05] [Server thread/WARN]: [org.mineskin.MineSkinClient] Creating MineSkinClient without API key
[22:40:05] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.9.4)
[22:40:05] [FancyLogger/INFO]: [FancyNpcs] (Server thread) INFO: FancyNpcs (2.7.1) has been enabled.
[22:40:05] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.6.3
[22:40:06] [Server thread/INFO]: Server version: v1_21_R5 - 1.21.8 - paper  1.21.8-617c5f0 (MC: 1.21.8)
[22:40:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.6.3]
[22:40:06] [Server thread/INFO]: PlaceholderAPI hooked.
[22:40:06] [Server thread/INFO]: Updated (EN) language file. Took 16ms
[22:40:06] [Server thread/INFO]: [HexNicks] Enabling HexNicks v3.1.2
[22:40:06] [Server thread/INFO]: [HexNicks] Successfully loaded nicknames from Json storage.
[22:40:06] [Server thread/INFO]: [HexNicks] Hooking into PlaceholderAPI...
[22:40:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hexnicks [3.1.2]
[22:40:06] [Server thread/INFO]: [HexNicks] Hooking into Vault...
[22:40:06] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v2.3.0
[22:40:06] [Server thread/INFO]: [AdvancedPortals] Loading Advanced Portals Core v2.3.0 for MC: 1.21.8
[22:40:06] [Server thread/INFO]: [AdvancedPortals] Advanced portals have been enabled!
[22:40:06] [Server thread/INFO]: [Topper] Enabling Topper v3.10.2
[22:40:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: topper [3.10.2]
[22:40:06] [Server thread/INFO]: [PlayerReferrals] Enabling PlayerReferrals v1.3.3
[22:40:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerreferrals [1.0.0]
[22:40:06] [Server thread/INFO]: [ChatGames-Premium] Enabling ChatGames-Premium v1.9.8
[22:40:06] [ForkJoinPool.commonPool-worker-1/INFO]: [Topper] You are using the latest version
[22:40:07] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ChatGamesHikariPool - Starting...
[22:40:07] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ChatGamesHikariPool - Start completed.
[22:40:07] [Server thread/INFO]: [ChatGames-Premium] Connected to the database successfully.
[22:40:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[22:40:07] [Server thread/INFO]: [ChatGames-Premium] PlaceholderAPI Hooked!
[22:40:07] [Server thread/INFO]: [FastAsyncVoxelSniper] Enabling FastAsyncVoxelSniper v3.2.2
[22:40:07] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.30.7
[22:40:07] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.13-beta-2+5c4848b
[22:40:07] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[22:40:07] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[22:40:07] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[22:40:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[22:40:07] [Server thread/INFO]: [WorldGuard] Loading region data...
[22:40:07] [Server thread/INFO]: [BKCommonLib] [RegionFlagTracker] Region flags will be tracked from WorldGuard
[22:40:07] [Server thread/INFO]: [MobFarmManager] Enabling MobFarmManager v3.0.4.0
[22:40:07] [Server thread/INFO]: MobFarmManager Version 3.0.4.0 has been enabled
[22:40:07] [Server thread/INFO]: [MFM] Using EN locale
[22:40:07] [Server thread/INFO]: [MFM] Entity spawn check enabled
[22:40:07] [Server thread/INFO]: [MFM] Auto clean enabled with 120 second interval
[22:40:07] [Server thread/INFO]: [MFM] Ignoring from clean: Armor stands with items, Entities with picked items, Item frames with items, Tames animals, Named animals, Entities with sadle, Baby animals 
[22:40:07] [Server thread/INFO]: [MFM] Ignored worlds: Test
[22:40:07] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.2
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[22:40:07] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[22:40:07] [Server thread/INFO]: [MilkyPixelart] Enabling MilkyPixelart v2.7.0
[22:40:07] [Server thread/INFO]: [MilkyPixelart] [ACF] Enabled Asynchronous Tab Completion Support!
[22:40:07] [Server thread/INFO]: [MilkyPixelart] Loaded 0 blacklist entries from the savefile!
[22:40:07] [Server thread/INFO]: [MilkyPixelart] Enabling bStats
[22:40:07] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[22:40:07] [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:280) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:612) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:732) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1151) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:312) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[22:40:07] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[22:40:07] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.67.8
[22:40:07] [Server thread/INFO]: [PinataParty] Loading data...
[22:40:07] [Server thread/INFO]: [PinataParty] Registering hooks...
[22:40:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pinataparty [2.67.8]
[22:40:07] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[22:40:07] [Server thread/INFO]: [PinataParty] NuVotifier or VotifierPlus not installed! Download and install it from here: https://www.spigotmc.org/resources/13449/ or https://www.spigotmc.org/resources/74040/
[22:40:07] [Server thread/INFO]: [PinataParty] Hooked into Vault
[22:40:07] [Server thread/INFO]: [PinataParty] Registering commands...
[22:40:07] [Server thread/INFO]: [PinataParty] Registering listeners...
[22:40:07] [Server thread/INFO]: [PinataParty] Starting tasks...
[22:40:07] [Server thread/INFO]: [PinataParty] Starting metrics...
[22:40:07] [Server thread/INFO]: [PinataParty] Plugin registered to 640596 | -160960043
[22:40:07] [Server thread/INFO]: [PinataParty] Done and enabled in 14.92ms
[22:40:07] [Server thread/INFO]: [Towny] Enabling Towny v0.101.2.0
[22:40:07] [Server thread/INFO]: ====================      Towny      ========================
[22:40:08] [Server thread/INFO]: [Towny] Successfully loaded translations for 43 languages.
[22:40:08] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
[22:40:08] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[22:40:08] [Server thread/INFO]: [Towny] Database: Loaded in 711ms.
[22:40:08] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Cleaning up old backups...
[22:40:08] [Folia Async Scheduler Thread #3/INFO]: [Towny] Time until a New Day: 13 hours, 19 minutes, 52 seconds
[22:40:08] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Successfully cleaned backups.
[22:40:08] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Making backup...
[22:40:08] [Server thread/WARN]: [Towny] Error: TownMob: creaking is not an acceptable class.
[22:40:08] [Server thread/WARN]: [Towny] Error: TownMob: creaking is not an acceptable class.
[22:40:08] [Folia Async Scheduler Thread #4/INFO]: [Towny] Checking for updates...
[22:40:09] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[22:40:09] [Server thread/INFO]: [Towny] Plugins found: 
[22:40:09] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.145 via Vault
[22:40:09] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.145 via Vault
[22:40:09] [Server thread/INFO]: [Towny]   Economy: iConomyUnlocked via VaultUnlocked
[22:40:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: townyadvanced [0.101.2.0]
[22:40:09] [Server thread/INFO]: [Towny] Enabled LuckPerms contexts: towny:king, towny:istownconquered, towny:insidetown, towny:nationrank, towny:insideowntown, towny:nation_resident, towny:resident, towny:townrank, towny:town, towny:insideownplot, towny:mayor, towny:nation
[22:40:09] [Server thread/INFO]: [Towny]   Add-ons: WorldGuard-Towny v${project.version}, TownyCamps
                           v0.0.51, TownyHistories v0.0.35, PlaceholderAPI
                           v2.11.6, LuckPerms v5.4.145
[22:40:09] [Folia Async Scheduler Thread #4/INFO]: [Towny] New update available: 0.101.2.3 | Current version: 0.101.2.0
[22:40:09] [Folia Async Scheduler Thread #4/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.101.2.3
[22:40:09] [Server thread/INFO]: =============================================================
[22:40:09] [Server thread/INFO]: [Towny] Version: 0.101.2.0 - Plugin Enabled
[22:40:09] [Server thread/INFO]: =============================================================
[22:40:09] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.64.2
[22:40:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.64.2]
[22:40:09] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.64.2
[22:40:09] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[22:40:09] [Server thread/INFO]: There is a new version available. (4.66.1)
[22:40:09] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/conditionalevents
[22:40:09] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.21.1
[22:40:09] [Folia Async Scheduler Thread #8/WARN]: [Towny] Your towny\data\townblocks\ folder contains a folder named 'resource_overworld' which doesn't appear to exist on your Bukkit server!
[22:40:09] [Folia Async Scheduler Thread #8/WARN]: [Towny] Towny will load the townblocks regardless, but if this world no longer exists please delete the folder.
[22:40:09] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[22:40:09] [Server thread/INFO]: [HeadDatabase] Economy successfully setup using CURRENCY!
[22:40:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.21.1]
[22:40:09] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.7.0
[22:40:09] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully enabled FancyHolograms version 2.7.0
[22:40:09] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v11.0.7
[22:40:09] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-11.0.7-Premium.jar
[22:40:09] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R5) (MC: 1.21.8)
[22:40:09] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1612
[22:40:09] [Server thread/INFO]: [LibsDisguises] Build Date: 05/08/2025 08:25
[22:40:09] [Server thread/INFO]: [LibsDisguises] Registered to: 942879 (39)
[22:40:09] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[22:40:09] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'SCALED', LD will scale down (when possible) oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[22:40:09] [Folia Async Scheduler Thread #9/INFO]: [HeadDatabase] Successfully loaded 88346 heads!
[22:40:09] [Folia Async Scheduler Thread #9/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[22:40:09] [Folia Async Scheduler Thread #11/WARN]: [HeadDatabase] You are using an outdated version!
[22:40:09] [Folia Async Scheduler Thread #11/WARN]: [HeadDatabase] Latest version: 4.21.2. You are on version: 4.21.1.
[22:40:09] [Folia Async Scheduler Thread #11/WARN]: [HeadDatabase] Update here: https://www.spigotmc.org/resources/head-database.14280/
[22:40:10] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Loading block mappings for V_1_21_6/19...
[22:40:10] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Finished loading block mappings for V_1_21_6/19 in 161.74397ms
[22:40:10] [Server thread/ERROR]: [LibsDisguises] Error while trying to register modded entity Librarian
[22:40:10] [Server thread/WARN]: java.lang.IllegalStateException: This registry can't create intrusive holders
[22:40:10] [Server thread/WARN]:     at net.minecraft.core.MappedRegistry.createIntrusiveHolder(MappedRegistry.java:345)
[22:40:10] [Server thread/WARN]:     at net.minecraft.world.entity.EntityType.<init>(EntityType.java:184)
[22:40:10] [Server thread/WARN]:     at LibsDisguises-11.0.7-Premium.jar//me.libraryaddict.disguise.utilities.reflection.v1_21_R5.ReflectionManager.registerEntityType(ReflectionManager.java:345)
[22:40:10] [Server thread/WARN]:     at LibsDisguises-11.0.7-Premium.jar//me.libraryaddict.disguise.utilities.reflection.ReflectionManager.registerEntityType(ReflectionManager.java:1244)
[22:40:10] [Server thread/WARN]:     at LibsDisguises-11.0.7-Premium.jar//me.libraryaddict.disguise.utilities.modded.ModdedManager.registerModdedEntity(ModdedManager.java:139)
[22:40:10] [Server thread/WARN]:     at LibsDisguises-11.0.7-Premium.jar//me.libraryaddict.disguise.DisguiseConfig.loadModdedDisguiseTypes(DisguiseConfig.java:977)
[22:40:10] [Server thread/WARN]:     at LibsDisguises-11.0.7-Premium.jar//me.libraryaddict.disguise.DisguiseConfig.loadConfig(DisguiseConfig.java:681)
[22:40:10] [Server thread/WARN]:     at LibsDisguises-11.0.7-Premium.jar//me.libraryaddict.disguise.LibsDisguises.onEnable(LibsDisguises.java:249)
[22:40:10] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:40:10] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:40:10] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:40:10] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:40:10] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:40:10] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:612)
[22:40:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:732)
[22:40:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:40:10] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290)
[22:40:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1151)
[22:40:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:312)
[22:40:10] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:40:10] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[22:40:10] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise KermXYZ
[22:40:10] [Server thread/INFO]: [LibsDisguises] Loaded 2 custom disguises
[22:40:10] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[22:40:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[22:40:10] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[22:40:10] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[22:40:10] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[22:40:10] [Server thread/INFO]: [WorldGuard-Towny] Enabling WorldGuard-Towny v${project.version}
[22:40:10] [Server thread/INFO]: [Lootin] Enabling Lootin v13.1
[22:40:10] [Server thread/INFO]: [Lootin] [PriLib] Running 1.21.8 minecraft version
[22:40:10] [Server thread/INFO]: [Lootin] Running PaperMC...
[22:40:10] [Server thread/INFO]: [Lootin] [ACF] Enabled Asynchronous Tab Completion Support!
[22:40:10] [Server thread/INFO]: [Lootin] Config file reloaded
[22:40:10] [Server thread/INFO]: [Lootin] Found ProtocolLib, trying to register meta data packet listener...
[22:40:10] [Server thread/INFO]: [Lootin] Enabling bstats...
[22:40:10] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.20
[22:40:10] [Server thread/INFO]: [SuperVanish] Hooked into PaperSpigot for server list ping support
[22:40:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.20]
[22:40:10] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[22:40:10] [Server thread/INFO]: [TownyCamps] Enabling TownyCamps v0.0.51
[22:40:10] [Server thread/INFO]: 
           *   )                            (                             
         ` )  /(     (  (           (       )\      )     )               
          ( )(_))(   )\))(    (     )\ )  (((_)  ( /(    (     `  )   (   
         (_<>(_()) )\ ((_)()\   )\ ) (()/(  )\___  )(_))   )\  ' /(/(   )\
         |_   _|((_)_(()((_) _(_/(  )(_))((/ __|((_)_  _((_)) ((_)_\ ((_)
           | | / _ \\ V  V /| ' \))| || | | (__ / _` || '  \()| '_ \)(_-<
           |_| \___/ \_/\_/ |_||_|  \_, |  \___|\__,_||_|_|_| | .__/ /__/
                                    |__/                      |_|        
                                      By LlmDl 
[22:40:10] [Server thread/INFO]: [TownyCamps] Successfully loaded translations for 2 languages.
[22:40:10] [Server thread/INFO]: [Towny] Loaded additional language files for plugin: TownyCamps
[22:40:10] [Server thread/INFO]: [TownyCamps] Config.yml loaded successfully.
[22:40:10] [Server thread/INFO]: [TownyCamps] Towny version 0.101.2.0 found.
[22:40:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: townycamps [0.0.51]
[22:40:10] [Server thread/INFO]: [TownyCamps] Found PlaceholderAPI plugin...
[22:40:10] [Server thread/INFO]: [TownyCamps] TownyCamps 0.0.51 Enabled.
[22:40:10] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.30.7
[22:40:10] [Server thread/INFO]: [SCore] Enabling SCore v5.25.8.20
[22:40:10] [Server thread/INFO]: SCore The library part of SCore is initializing ... (by SCore)
[22:40:10] [Server thread/INFO]: SCore ExecutableItems hooked !  (7.25.8.20) Load After
[22:40:10] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (5.25.8.20) Load After
[22:40:10] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[22:40:10] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.13-beta-2+5c4848b)  Load Before
[22:40:10] [Server thread/INFO]: SCore Vault hooked !  (2.14.0)  Load Before
[22:40:10] [Server thread/INFO]: SCore Towny hooked !  (0.101.2.0)  Load Before
[22:40:10] [Server thread/INFO]: SCore packetevents hooked !  (2.9.4)  Load Before
[22:40:10] [Server thread/INFO]: SCore ProtocolLib hooked !
[22:40:10] [Server thread/INFO]: SCore Locale setup: EN
[22:40:10] [Server thread/INFO]: SCore NBTAPI hooked !  (2.15.1)  Load Before
[22:40:10] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.21.1)  Load Before
[22:40:10] [Server thread/INFO]: SCore MythicMobs hooked !  (5.10.0-SNAPSHOT-ee9efe77) Load After
[22:40:10] [Server thread/INFO]: SCore ItemsAdder hooked !  (4.0.12) Load After
[22:40:10] [Server thread/INFO]: SCore RoseLoot hooked !  (1.3.1) Load After
[22:40:10] [Server thread/INFO]: SCore RoseStacker hooked !  (1.5.36) Load After
[22:40:10] [Server thread/INFO]: SCore EcoSkills hooked !  (3.65.0) Load After
[22:40:10] [Server thread/INFO]: SCore WorldEdit hooked !  (2.12.4-SNAPSHOT-1010;e0db69c)  Load Before
[22:40:10] [Server thread/INFO]: SCore Language of the editor setup on EN
[22:40:10] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[22:40:10] [Server thread/INFO]: SCore Connection to the db...
[22:40:10] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[22:40:10] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[22:40:10] [Server thread/INFO]: SCore Creating table Commands if not exists...
[22:40:10] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[22:40:10] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[22:40:10] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[22:40:10] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[22:40:10] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[22:40:10] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[22:40:10] [Server thread/INFO]: ================ SCore ================
[22:40:10] [Server thread/INFO]: SCore is running on Folia
[22:40:10] [Server thread/INFO]: SCore is running on Paper or fork
[22:40:10] [Server thread/INFO]: SCore Version of the server 1.21.8-617c5f0 (MC: 1.21.8) !
[22:40:10] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[22:40:10] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[22:40:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[22:40:10] [Server thread/INFO]: ================ SCore ================
[22:40:11] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.10.0-SNAPSHOT-ee9efe77
[22:40:11] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.8)...
[22:40:11] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[22:40:11] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[22:40:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[22:40:11] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[22:40:11] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[22:40:11] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[22:40:12] [Server thread/INFO]: [MythicMobs] Loading Packs...
[22:40:13] [Server thread/INFO]: [MythicMobs] Loading Items...
[22:40:13] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[22:40:13] [Server thread/INFO]: [MythicMobs] Loading Skills...
[22:40:13] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[22:40:13] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[22:40:13] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[22:40:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 193 mobs.
[22:40:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1 vanilla mob overrides.
[22:40:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[22:40:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 410 skills.
[22:40:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 240 random spawns.
[22:40:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 7 mythic items.
[22:40:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[22:40:13] [Server thread/INFO]: [MythicMobs] ✓ Loaded 41 mob spawners.
[22:40:13] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[22:40:13] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[22:40:13] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.10.0 ( build ee9efe77 ) has been successfully loaded!
[22:40:14] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[22:40:14] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[22:40:14] [Server thread/INFO]: [Quests] Enabling Quests v3.15.2-5b4752e
[22:40:14] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[22:40:14] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[22:40:14] [Server thread/INFO]: [Quests] Your server is running version 1.21
[22:40:14] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[22:40:14] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.21.8-v1-SNAPSHOT
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'RunicConstruct_1'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:runicconstruct_1
[22:40:14] [Server thread/INFO]: Time elapsed: 1 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_1) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_1) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_1) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_1) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'RunicConstruct_1'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world RunicConstruct_1
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'RunicConstruct_2'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:runicconstruct_2
[22:40:14] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_2) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_2) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_2) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_2) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'RunicConstruct_2'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world RunicConstruct_2
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'RunicConstruct_3'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:runicconstruct_3
[22:40:14] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_3) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_3) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_3) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_3) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'RunicConstruct_3'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world RunicConstruct_3
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'FlatWorld'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:flatworld
[22:40:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:14] [Server thread/INFO]: Time elapsed: 72 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (FlatWorld) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (FlatWorld) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (FlatWorld) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (FlatWorld) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'FlatWorld'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world FlatWorld
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'RunicConstruct_4'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:runicconstruct_4
[22:40:14] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_4) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_4) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_4) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_4) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'RunicConstruct_4'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world RunicConstruct_4
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'mapart' using chunk generator: ':3;1*minecraft:glass,1*minecraft:cobblestone;2;nostructures'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:mapart
[22:40:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:14] [Server thread/INFO]: Time elapsed: 28 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (mapart) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (mapart) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (mapart) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (mapart) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mapart'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world mapart
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'RunicConstruct_0'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:runicconstruct_0
[22:40:14] [Server thread/INFO]: Time elapsed: 1 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_0) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_0) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_0) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (RunicConstruct_0) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'RunicConstruct_0'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world RunicConstruct_0
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'resource_overworld'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:resource_overworld
[22:40:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:14] [Server thread/INFO]: Time elapsed: 35 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_overworld) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_overworld) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_overworld) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_overworld) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'resource_overworld'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world resource_overworld
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'halloween'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:halloween
[22:40:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:14] [Server thread/INFO]: Time elapsed: 24 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (halloween) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (halloween) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (halloween) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (halloween) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'halloween'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world halloween
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'mob_arena' using chunk generator: ':minecraft:air;minecraft:the_void;nostructures'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:mob_arena
[22:40:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:14] [Server thread/INFO]: Time elapsed: 21 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (mob_arena) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (mob_arena) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (mob_arena) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (mob_arena) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mob_arena'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world mob_arena
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'resource_the_end'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:resource_the_end
[22:40:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:14] [Server thread/INFO]: Time elapsed: 19 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_the_end) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_the_end) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_the_end) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_the_end) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'resource_the_end'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world resource_the_end
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'WraithwoodManor_0'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:wraithwoodmanor_0
[22:40:14] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_0) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_0) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_0) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_0) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WraithwoodManor_0'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world WraithwoodManor_0
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'resource_nether'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:resource_nether
[22:40:14] [Server thread/INFO]: Preparing spawn area: 0%
[22:40:14] [Server thread/INFO]: Time elapsed: 25 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_nether) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_nether) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_nether) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (resource_nether) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'resource_nether'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world resource_nether
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'WraithwoodManor_1'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:wraithwoodmanor_1
[22:40:14] [Server thread/INFO]: Time elapsed: 1 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_1) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_1) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_1) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_1) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WraithwoodManor_1'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world WraithwoodManor_1
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'WraithwoodManor_2'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:wraithwoodmanor_2
[22:40:14] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_2) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_2) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_2) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_2) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WraithwoodManor_2'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world WraithwoodManor_2
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'WraithwoodManor_3'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:wraithwoodmanor_3
[22:40:14] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_3) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_3) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_3) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (WraithwoodManor_3) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WraithwoodManor_3'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world WraithwoodManor_3
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'GoblinDen_0'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:goblinden_0
[22:40:14] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (GoblinDen_0) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (GoblinDen_0) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (GoblinDen_0) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (GoblinDen_0) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GoblinDen_0'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world GoblinDen_0
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'goblinden_10'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:goblinden_10
[22:40:14] [Server thread/INFO]: Time elapsed: 1 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (goblinden_10) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (goblinden_10) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (goblinden_10) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (goblinden_10) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'goblinden_10'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world goblinden_10
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'GoblinDen_2'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:goblinden_2
[22:40:14] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:14] [Server thread/INFO]: [WorldGuard] (GoblinDen_2) TNT ignition is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (GoblinDen_2) Lighters are PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (GoblinDen_2) Lava fire is PERMITTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] (GoblinDen_2) Fire spread is UNRESTRICTED.
[22:40:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GoblinDen_2'
[22:40:14] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world GoblinDen_2
[22:40:14] [Server thread/INFO]: [My_Worlds] Loading world 'GoblinDen_1'
[22:40:14] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:14] [Server thread/INFO]: Preparing start region for dimension minecraft:goblinden_1
[22:40:15] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_1) TNT ignition is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_1) Lighters are PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_1) Lava fire is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_1) Fire spread is UNRESTRICTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GoblinDen_1'
[22:40:15] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world GoblinDen_1
[22:40:15] [Server thread/INFO]: [My_Worlds] Loading world 'GoblinDen_4'
[22:40:15] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:15] [Server thread/INFO]: Preparing start region for dimension minecraft:goblinden_4
[22:40:15] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_4) TNT ignition is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_4) Lighters are PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_4) Lava fire is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_4) Fire spread is UNRESTRICTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GoblinDen_4'
[22:40:15] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world GoblinDen_4
[22:40:15] [Server thread/INFO]: [My_Worlds] Loading world 'GoblinDen_3'
[22:40:15] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:15] [Server thread/INFO]: Preparing start region for dimension minecraft:goblinden_3
[22:40:15] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_3) TNT ignition is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_3) Lighters are PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_3) Lava fire is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_3) Fire spread is UNRESTRICTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GoblinDen_3'
[22:40:15] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world GoblinDen_3
[22:40:15] [Server thread/INFO]: [My_Worlds] Loading world 'GoblinDen_6'
[22:40:15] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:15] [Server thread/INFO]: Preparing start region for dimension minecraft:goblinden_6
[22:40:15] [Server thread/INFO]: Time elapsed: 1 ms
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_6) TNT ignition is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_6) Lighters are PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_6) Lava fire is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_6) Fire spread is UNRESTRICTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GoblinDen_6'
[22:40:15] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world GoblinDen_6
[22:40:15] [Server thread/INFO]: [My_Worlds] Loading world 'GoblinDen_5'
[22:40:15] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:15] [Server thread/INFO]: Preparing start region for dimension minecraft:goblinden_5
[22:40:15] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_5) TNT ignition is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_5) Lighters are PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_5) Lava fire is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_5) Fire spread is UNRESTRICTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GoblinDen_5'
[22:40:15] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world GoblinDen_5
[22:40:15] [Server thread/INFO]: [My_Worlds] Loading world 'GoblinDen_7'
[22:40:15] [Server thread/ERROR]: [MapSerializer] Could not deserialize key potion into net.minecraft.world.entity.EntityType<?> at [chunks, entity-per-chunk-save-limit]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:entity_type] (Stable)] with key minecraft:potion
[22:40:15] [Server thread/INFO]: Preparing start region for dimension minecraft:goblinden_7
[22:40:15] [Server thread/INFO]: Time elapsed: 0 ms
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_7) TNT ignition is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_7) Lighters are PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_7) Lava fire is PERMITTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] (GoblinDen_7) Fire spread is UNRESTRICTED.
[22:40:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'GoblinDen_7'
[22:40:15] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loading holograms for world GoblinDen_7
[22:40:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.21.8-v1-SNAPSHOT]
[22:40:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.21.8-v1-SNAPSHOT]
[22:40:15] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[22:40:15] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.21.8-v1-SNAPSHOT (build: 332) enabled! (1.021s)
[22:40:15] [Server thread/INFO]: [GSit] Enabling GSit v2.4.2
[22:40:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.4.2]
[22:40:15] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[22:40:15] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[22:40:15] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[22:40:15] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[22:40:15] [Server thread/INFO]: [BetterHud] Enabling BetterHud v1.13.2
[22:40:17] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v2.0.1-SNAPSHOT
[22:40:17] [Server thread/INFO]: [MythicDungeons] Using PaperListener...
[22:40:17] [Server thread/INFO]: [MythicDungeons] [STDOUT] Using default parties! Enabled party support.
[22:40:17] [Server thread/WARN]: Nag author(s): '[MarcatoSound]' of 'MythicDungeons v2.0.1-SNAPSHOT' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[22:40:17] [Server thread/INFO]: [MythicDungeons] MythicMobs plugin found! Enabled MythicMobs support.
[22:40:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: md [2.0.1]
[22:40:18] [Server thread/INFO]: [MythicDungeons] * Loaded 37 functions.
[22:40:18] [Server thread/INFO]: [MythicDungeons] * Loaded 14 triggers.
[22:40:18] [Server thread/INFO]: [MythicDungeons] * Loaded 9 conditions.
[22:40:18] [Server thread/INFO]: [MythicDungeons] GUI menus initialized!
[22:40:18] [Server thread/INFO]: [MythicDungeons] Mythic Dungeons v2.0.1 initialized! Happy dungeon-ing!
[22:40:18] [Server thread/INFO]: [My_Worlds] Mythic Dungeons detected: dungeon instances will automatically share inventory settings
[22:40:18] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.8.0
[22:40:18] [Server thread/INFO]: [PlayerWarps] This plugin is licensed to Kerm (942879) from Spigot!
[22:40:18] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[22:40:18] [Server thread/INFO]: [PlayerWarps] Found 25 config files to load!
[22:40:19] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[22:40:19] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (iConomyUnlocked)
[22:40:19] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[22:40:19] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[22:40:19] [Server thread/INFO]: [PlayerWarps] Found XP Currency integrating support...
[22:40:19] [Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[22:40:19] [Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[22:40:19] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[22:40:19] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[22:40:19] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[22:40:19] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.25.8.20
[22:40:19] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[22:40:19] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[22:40:19] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[22:40:19] [Server thread/WARN]: [ExecutableItems] No pack found in the folder __textures__
[22:40:20] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 244
[22:40:20] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[22:40:20] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[22:40:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[22:40:20] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v5.25.8.20
[22:40:20] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[22:40:20] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the integer value of cooldown from config, value: 0.5 (Block: elevator_coal_block)
[22:40:20] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the integer value of cooldown from config, value: 0.5 (Block: elevator_coal_block)
[22:40:21] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the integer value of cooldown from config, value: 0.5 (Block: elevator_mycelium)
[22:40:21] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the integer value of cooldown from config, value: 0.5 (Block: elevator_mycelium)
[22:40:21] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the integer value of cooldown from config, value: 0.5 (Block: elevator_red_mushroom_block)
[22:40:21] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the integer value of cooldown from config, value: 0.5 (Block: elevator_red_mushroom_block)
[22:40:21] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the integer value of cooldown from config, value: 0.5 (Block: elevator_tuff_bricks)
[22:40:21] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the integer value of cooldown from config, value: 0.5 (Block: elevator_tuff_bricks)
[22:40:21] [Server thread/INFO]: ExecutableBlocks Amount of Executable Blocks configurations loaded: 111
[22:40:21] [Server thread/INFO]: ExecutableBlocks There are: 615 ExecutableBlock placed configs to load.
[22:40:21] [Server thread/INFO]: ExecutableBlocks 0/615 blocks loaded.
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 00b3c770-973b-4d28-9fe7-1f8b7ec83adf (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 00b3c770-973b-4d28-9fe7-1f8b7ec83adf the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 00ba963c-5a0a-4ae5-aa40-c247e8a44fd2 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 00ba963c-5a0a-4ae5-aa40-c247e8a44fd2 the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 051bef8c-6e74-4e21-b1a0-643162a46e4a (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 051bef8c-6e74-4e21-b1a0-643162a46e4a the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 090dcbb9-650e-4a8c-b04f-e5f063c49a60 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 090dcbb9-650e-4a8c-b04f-e5f063c49a60 the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 10b9c701-a572-44bc-8ac0-160b57a912f8 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 10b9c701-a572-44bc-8ac0-160b57a912f8 the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 184719b6-a3ac-4946-967a-b01dd908a691 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 184719b6-a3ac-4946-967a-b01dd908a691 the EB config associated is not loaded !
[22:40:21] [Server thread/INFO]: ExecutableBlocks 61/615 blocks loaded.
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 1c5b284f-4856-4897-9d42-9cc49c7a7cd9 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 1c5b284f-4856-4897-9d42-9cc49c7a7cd9 the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 283e72ef-c338-4a0f-9975-a244b971c16e (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 283e72ef-c338-4a0f-9975-a244b971c16e the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 284ca39e-f058-434d-a933-7478ac28c8da (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 284ca39e-f058-434d-a933-7478ac28c8da the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 2e7afbc0-d735-43ec-990a-837246ab4a06 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 2e7afbc0-d735-43ec-990a-837246ab4a06 the EB config associated is not loaded !
[22:40:21] [Server thread/INFO]: ExecutableBlocks 122/615 blocks loaded.
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 3dbbd935-9e44-417c-8bd7-cb72dc390f5f (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 3dbbd935-9e44-417c-8bd7-cb72dc390f5f the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 43c8abf1-02e3-409b-9269-2600dd81097b (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 43c8abf1-02e3-409b-9269-2600dd81097b the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 44726aef-26b6-4751-bffb-7537f7b4d14f (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 44726aef-26b6-4751-bffb-7537f7b4d14f the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 454d2959-a8a9-487b-8d8a-7b4ac316d929 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 454d2959-a8a9-487b-8d8a-7b4ac316d929 the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 456d2a99-4ef7-4ffb-b2ac-b418e11bc914 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 456d2a99-4ef7-4ffb-b2ac-b418e11bc914 the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 4c8d761c-041b-483d-b664-7a62de3f9d4d (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 4c8d761c-041b-483d-b664-7a62de3f9d4d the EB config associated is not loaded !
[22:40:21] [Server thread/INFO]: ExecutableBlocks 183/615 blocks loaded.
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 4fa32a79-e6d5-4121-bbe2-6c1fd18d745a (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 4fa32a79-e6d5-4121-bbe2-6c1fd18d745a the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 61d2908c-6e91-418c-a6cf-49c769c620f4 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 61d2908c-6e91-418c-a6cf-49c769c620f4 the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 63c9f799-a5f4-4d28-83e5-a9d657635ec0 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 63c9f799-a5f4-4d28-83e5-a9d657635ec0 the EB config associated is not loaded !
[22:40:21] [Server thread/INFO]: ExecutableBlocks 244/615 blocks loaded.
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 76ce7009-eb03-4e8f-b966-067d9737220a (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 76ce7009-eb03-4e8f-b966-067d9737220a the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 8281e0bf-cf9d-4f8c-b8f1-22ebd18dfeee (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 8281e0bf-cf9d-4f8c-b8f1-22ebd18dfeee the EB config associated is not loaded !
[22:40:21] [Server thread/INFO]: ExecutableBlocks 305/615 blocks loaded.
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 9507789a-499a-418a-8857-fbe02ef9dca5 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: 9507789a-499a-418a-8857-fbe02ef9dca5 the EB config associated is not loaded !
[22:40:21] [Server thread/INFO]: ExecutableBlocks 366/615 blocks loaded.
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: a7fb9623-9f8b-4ca2-8514-96dc90f8c35f (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: a7fb9623-9f8b-4ca2-8514-96dc90f8c35f the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: a9311131-1417-43bc-a48f-9999366efc37 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: a9311131-1417-43bc-a48f-9999366efc37 the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: ae342a12-9d98-4ba6-8dad-85b28424715d (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: ae342a12-9d98-4ba6-8dad-85b28424715d the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: b5d34531-a025-4e82-85c3-f27ddc553257 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: b5d34531-a025-4e82-85c3-f27ddc553257 the EB config associated is not loaded !
[22:40:21] [Server thread/INFO]: ExecutableBlocks 427/615 blocks loaded.
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: bb523973-25f6-48f2-a86e-4e5bdd3ee5ab (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: bb523973-25f6-48f2-a86e-4e5bdd3ee5ab the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: bbdb61f7-fc7d-45f6-9df4-c8e19c279ddd (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: bbdb61f7-fc7d-45f6-9df4-c8e19c279ddd the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: bdbe95f0-ff73-4dc2-bdb5-9d42c06a719d (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: bdbe95f0-ff73-4dc2-bdb5-9d42c06a719d the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: c51b2c7e-931d-4d8b-9c90-c60a0431e1fc (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: c51b2c7e-931d-4d8b-9c90-c60a0431e1fc the EB config associated is not loaded !
[22:40:21] [Server thread/INFO]: ExecutableBlocks 488/615 blocks loaded.
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: d6a1b8c5-bd5a-4b20-b2d5-a1b2a05f90ea (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: d6a1b8c5-bd5a-4b20-b2d5-a1b2a05f90ea the EB config associated is not loaded !
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: dbbee200-7bfb-42e6-9e04-115683ce3d55 (world problem / world unloaded / world deleted)
[22:40:21] [Server thread/ERROR]: [ExecutableBlocks] Error for the placed block: dbbee200-7bfb-42e6-9e04-115683ce3d55 the EB config associated is not loaded !
[22:40:21] [Server thread/INFO]: ExecutableBlocks 549/615 blocks loaded.
[22:40:21] [Server thread/INFO]: ExecutableBlocks 610/615 blocks loaded.
[22:40:21] [Server thread/INFO]: ExecutableBlocks 583 ExecutableBlock(s)Placed loaded !
[22:40:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableBlocks [1.0.0]
[22:40:21] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[22:40:21] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.21.8
[22:40:21] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.8 Plugin Loading...
[22:40:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [1.0.0]
[22:40:22] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.8 Plugin Loaded!
[22:40:22] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.10
[22:40:22] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[22:40:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.10]
[22:40:22] [Server thread/INFO]: [ArtMap] Enabling ArtMap v3.9.23
[22:40:22] [Server thread/INFO]: [ArtMap] Loading 'english' language file
[22:40:22] [Server thread/INFO]: [ArtMap] Sabre Factions not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Grief Defender not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Grief Prevention not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Red Protect not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] ASkyBlock not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] uSkyBlock not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] BentoBox/BSkyBlock not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Plot Squared 4 not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Plot Squared 5 not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Plot Squared 6 not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Plot Squared 7 not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Residence not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Marriage Master not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] CMI not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] Essentials not detected.  Hooks skipped.
[22:40:22] [Server thread/INFO]: [ArtMap] WorldGuard hooks enabled.
[22:40:22] [Server thread/INFO]: [ArtMap] Towny hooks enabled.
[22:40:22] [Server thread/INFO]: [ArtMap] Using ProtocolLib PacketReciever.
[22:40:22] [Server thread/INFO]: [ArtMap]  MC version: v1_20_2
[22:40:22] [Server thread/INFO]: [BetterTownyFriends] Enabling BetterTownyFriends v1.0-SNAPSHOT
[22:40:22] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.6
[22:40:22] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[22:40:22] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[22:40:22] [Server thread/INFO]: [TownyHistories] Enabling TownyHistories v0.0.35
[22:40:22] [Server thread/INFO]: [TownyHistories] Successfully loaded translations for 2 languages.
[22:40:22] [Server thread/INFO]: [Towny] Loaded additional language files for plugin: TownyHistories
[22:40:22] [Server thread/INFO]: [TownyHistories] Config.yml loaded successfully.
[22:40:22] [Server thread/INFO]: [TownyHistories] Searching for ruins...
[22:40:22] [Server thread/INFO]: [TownyHistories] Loading ruins list...
[22:40:22] [Server thread/INFO]: [TownyHistories] 31 ruins found.
[22:40:22] [Server thread/INFO]: [TownyHistories] Loading ruins...
[22:40:22] [Server thread/INFO]: [TownyHistories] Loaded ruins: iridescence, moonview, cerium, slimbabwe, sniffertown, averia, wisteria, achelous, veldera, dove, cat_civilization, witchy, monkeyville, wrefferidge_farms, capital_city, joels_domain, tricksters_hollow, biocity, the_foundry, yellowstone, home, endveil, finix, masters_cave, gnomegarden, atlantica, yorknew_city, evenknight, forjaneva, crustycooper, dyslexictown
[22:40:22] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[22:40:22] [Server thread/INFO]: [BetterRTP] Cooldown = 150
[22:40:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[22:40:22] [Server thread/INFO]: [RealisticSeasons] Enabling RealisticSeasons v11.8.2
[22:40:22] [Server thread/INFO]: [VentureChat] Enabling VentureChat v3.8.0
[22:40:22] [Server thread/INFO]: [VentureChat] - Initializing...
[22:40:22] [Server thread/INFO]: [VentureChat] - Config found! Loading file.
[22:40:22] [Server thread/INFO]: [VentureChat] - Checking for Vault...
[22:40:22] [Server thread/INFO]: [VentureChat] - Loading player data
[22:40:23] [Server thread/INFO]: [VentureChat] - Registering Listeners
[22:40:23] [Server thread/INFO]: [VentureChat] - Attaching to Executors
[22:40:23] [Server thread/INFO]: [VentureChat] - Establishing BungeeCord
[22:40:23] [Server thread/INFO]: [VentureChat] - Enabling Towny Formatting
[22:40:23] [Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[22:40:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: venturechat [3.8.0]
[22:40:23] [Server thread/INFO]: [VentureChat] - Enabled Successfully
[22:40:23] [Server thread/INFO]: [PrismaWelcome] Enabling PrismaWelcome v1.0-SNAPSHOT
[22:40:23] [Server thread/INFO]: [PrismaWelcome] ==============================================
[22:40:23] [Server thread/INFO]: [PrismaWelcome] PrismaWelcome Plugin has been enabled!
[22:40:23] [Server thread/INFO]: [PrismaWelcome] Author: KermX
[22:40:23] [Server thread/INFO]: [PrismaWelcome] Version: 1.0-SNAPSHOT
[22:40:23] [Server thread/INFO]: [PrismaWelcome] ==============================================
[22:40:23] [Server thread/INFO]: [PrismaUtils] Enabling PrismaUtils v1.0-SNAPSHOT
[22:40:23] [Server thread/INFO]: [PrismaUtils] Merged any missing keys into config.yml (if needed).
[22:40:23] [Server thread/INFO]: [PrismaUtils] Merged any missing keys into messages.yml (if needed).
[22:40:23] [Server thread/INFO]: [PrismaUtils] Merged any missing keys into death_messages.yml (if needed).
[22:40:23] [Server thread/INFO]: [PrismaUtils] Merged any missing keys into warps.yml (if needed).
[22:40:23] [Server thread/INFO]: [PrismaUtils] Merged any missing keys into afk.yml (if needed).
[22:40:23] [Server thread/INFO]: [PrismaUtils] AFK configuration loaded successfully.
[22:40:23] [Server thread/INFO]: [PrismaUtils] Merged any missing keys into chat.yml (if needed).
[22:40:23] [Server thread/INFO]: [PrismaUtils] GSit integration enabled
[22:40:23] [Server thread/INFO]: [PrismaUtils] Towny integration enabled
[22:40:23] [Server thread/INFO]: [PrismaUtils] Compiled 2 chat filters.
[22:40:23] [Server thread/INFO]: [PrismaUtils] Loaded 80 emojis from 8 categories.
[22:40:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minify [1.0]
[22:40:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: unixlocaltime [1.0]
[22:40:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: afk [1.0]
[22:40:23] [Server thread/INFO]: [Codex] Enabling Codex v2.5.3
[22:40:23] [Server thread/INFO]: [WorldGuard] Registering session handler cx.ajneb97.managers.dependencies.worldguard.WorldGuardEntryManager
[22:40:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: codex [2.5.3]
[22:40:23] [Server thread/INFO]: [Codex] Has been enabled! Version: 2.5.3
[22:40:23] [Server thread/INFO]: [Codex] Thanks for using my plugin!   ~Ajneb97
[22:40:23] [Server thread/INFO]: [PrismaParticles] Enabling PrismaParticles v1.0-SNAPSHOT
[22:40:23] [Server thread/INFO]: [eGlow] Enabling eGlow v3.4.2
[22:40:23] [Server thread/INFO]: [eGlow]: Loading main config.
[22:40:23] [Server thread/INFO]: [eGlow]: Loading messages config.
[22:40:23] [Server thread/INFO]: [eGlow]: Loading customeffects config.
[22:40:23] [Server thread/INFO]: eGlow Successfully loaded Playerdata database.
[22:40:23] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.7.2
[22:40:23] [Server thread/INFO]: [Vulcan] Starting Vulcan. Server Version: .1.21.8 detected!
[22:40:23] [Server thread/INFO]: [Vulcan] LibsDisguises found. Enabling hook!
[22:40:23] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[22:40:23] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[22:40:23] [Server thread/INFO]: [Vulcan] BStats enabled!
[22:40:23] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[22:40:23] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[22:40:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.7.2]
[22:40:23] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[22:40:23] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.12
[22:40:23] [Server thread/INFO]: [ItemsAdder] InteractiveChat detected, disabling `cache_font_images_and_effects_replacements`.
[22:40:23] [Server thread/WARN]: [ItemsAdder] Using default server address: 0.0.0.0. Consider setting it in the `config.yml`
[22:40:23] [Server thread/WARN]: [ItemsAdder] Using default server port: 25565. Consider setting it in the `config.yml`
[22:40:23] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.12
  ___  ___        __        __   __   ___  __      ProtocolLib 5.4.0
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     UniverseSpigot 1.21.8-617c5f0 (MC: 1.21.8)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-07-22_16.57.44
                                                   Java Version: 21.0.7
                                                   OS: Linux 6.1.0-37-amd64                                               
[22:40:24] [Server thread/INFO]: [ItemsAdder] Loading GlowingEntities API
[22:40:24] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.8
[22:40:24] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[22:40:24] [Server thread/WARN]: [ItemsAdder] 
[22:40:24] [Server thread/WARN]: [ItemsAdder] ViaVersion detected.
[22:40:24] [Server thread/WARN]: [ItemsAdder] Joining via different game versions can cause issues and some are not fixable due to game limitations.
[22:40:24] [Server thread/WARN]: [ItemsAdder] Make sure that you are aware of these limitations before reporting issues.
[22:40:24] [Server thread/WARN]: [ItemsAdder] Info: https://a.devs.beer/ia-via-load
[22:40:24] [Server thread/WARN]: [ItemsAdder] 
[22:40:24] [Server thread/ERROR]: [ItemsAdder] Error while hooking into Denizen
[22:40:24] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/denizenscript/denizen/objects/ItemTag
[22:40:24] [Server thread/WARN]:     at ItemsAdder_4.0.12.jar//dev.lone.itemsadder.Core.OtherPlugins.Denizen.DenizenHook.hook(SourceFile:22)
[22:40:24] [Server thread/WARN]:     at ItemsAdder_4.0.12.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:346)
[22:40:24] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280)
[22:40:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[22:40:24] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[22:40:24] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[22:40:24] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657)
[22:40:24] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:612)
[22:40:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:732)
[22:40:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488)
[22:40:24] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290)
[22:40:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1151)
[22:40:24] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:312)
[22:40:24] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:40:24] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.objects.ItemTag
[22:40:24] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:206)
[22:40:24] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:173)
[22:40:24] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[22:40:24] [Server thread/WARN]:     ... 14 more
[22:40:24] [Server thread/WARN]: [ItemsAdder]  
[22:40:24] [Server thread/WARN]: [ItemsAdder] 'no-host' selected. You have to handle the pack upload and apply manually or using another plugin.
[22:40:24] [Server thread/WARN]: [ItemsAdder]  
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'mlm_galoshes' with layers: prisma:armor/pride25/pride25_mlm_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_mlm_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_mlm_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'poly_galoshes' with layers: prisma:armor/pride25/pride25_poly_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_poly_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_poly_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'copper_armor' with layers: prisma:armor/copper_armor/copper_armor_layer_1.png, prisma:armor/copper_armor/copper_armor_layer_2.png. File: /contents/prisma/configs/items/armor/craftables/copper_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'trans_galoshes' with layers: prisma:armor/pride25/pride25_trans_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_trans_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_trans_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'lesbian_galoshes' with layers: prisma:armor/pride25/pride25_lesbian_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_lesbian_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_lesbian_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'fisherman_armor' with layers: prisma:armor/fisherman_armor/layer_1.png, prisma:armor/fisherman_armor/layer_2.png. File: /contents/prisma/configs/items/cosmetics/fisherman_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'angler_armor' with layers: prisma:armor/angler_armor/layer_1.png, prisma:armor/angler_armor/layer_2.png. File: /contents/prisma/configs/items/armor/special/angler_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'pan_galoshes' with layers: prisma:armor/pride25/pride25_pan_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_pan_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_pan_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'nonbinary_galoshes' with layers: prisma:armor/pride25/pride25_nonbinary_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_nonbinary_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_nonbinary_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'cosmetic_knight_armor' with layers: prisma:armor/cosmetic_knight_armor/knight_armor_layer_1.png, prisma:armor/cosmetic_knight_armor/knight_armor_layer_2.png. File: /contents/prisma/configs/items/cosmetics/cosmetic_knight_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'jade_armor' with layers: prisma:armor/jade_armor/jade_armor_layer_1.png, prisma:armor/jade_armor/jade_armor_layer_2.png. File: /contents/prisma/configs/items/armor/craftables/jade_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_shark_tooth_necklace' with layers: prisma:armor/summer_2025_shark_tooth_necklace/layer_1.png, prisma:armor/summer_2025_shark_tooth_necklace/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_shark_tooth_necklace.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'ruby_armor' with layers: prisma:armor/ruby_armor/ruby_armor_layer_1.png, prisma:armor/ruby_armor/ruby_armor_layer_2.png. File: /contents/prisma/configs/items/armor/craftables/ruby_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'onyx_armor' with layers: prisma:armor/onyx_armor/onyx_armor_layer_1.png, prisma:armor/onyx_armor/onyx_armor_layer_2.png. File: /contents/prisma/configs/items/armor/craftables/onyx_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'green_tie' with layers: prisma:armor/green_tie/armor_layer_1.png, prisma:armor/green_tie/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/green_tie.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_orange' with layers: prisma:armor/summer_2025_hat_flower_crown_orange/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_orange/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_orange.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_cyan' with layers: prisma:armor/summer_2025_hat_flower_crown_cyan/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_cyan/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_cyan.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_purple' with layers: prisma:armor/summer_2025_hat_flower_crown_purple/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_purple/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_purple.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'rainbow_galoshes' with layers: prisma:armor/pride25/pride25_rainbow_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_rainbow_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_rainbow_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'resetshop_prismatic_crown' with layers: prisma:armor/prismatic_crown/layer_1.png, prisma:armor/prismatic_crown/layer_2.png. File: /contents/prisma/configs/items/armor/special/resetshop_prismatic_crown.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'leprechaun_boots' with layers: prisma:armor/leprechaun_boots/armor_layer_1.png, prisma:armor/leprechaun_boots/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/leprechaun_boots.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_yellow' with layers: prisma:armor/summer_2025_hat_flower_crown_yellow/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_yellow/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_yellow.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_red' with layers: prisma:armor/summer_2025_hat_flower_crown_red/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_red/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_red.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_wither' with layers: prisma:armor/summer_2025_hat_flower_crown_wither/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_wither/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_wither.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_shirt_staff_blue' with layers: prisma:armor/summer_2025_shirt_staff_blue/layer_1.png, prisma:armor/summer_2025_shirt_staff_blue/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_shirt_staff_blue.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_white' with layers: prisma:armor/summer_2025_hat_flower_crown_white/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_white/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_white.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_blue' with layers: prisma:armor/summer_2025_hat_flower_crown_blue/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_blue/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_blue.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'asexual_galoshes' with layers: prisma:armor/pride25/pride25_asexual_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_asexual_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_asexual_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'legendary_bunny_bouncers' with layers: prisma:armor/legendary_bunny_bouncers/layer_1.png, prisma:armor/legendary_bunny_bouncers/layer_2.png. File: /contents/prisma/configs/items/armor/legendaries/2025_april.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_scout_shirt' with layers: prisma:armor/summer_2025_scout_shirt/layer_1.png, prisma:armor/summer_2025_scout_shirt/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_scout_shirt.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_fish_flops' with layers: prisma:armor/summer_2025_fish_flops/layer_1, prisma:armor/summer_2025_fish_flops/layer_2. File: /contents/prisma/configs/events/summer/summer_2025_fish_flops.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_rainbow' with layers: prisma:armor/summer_2025_hat_flower_crown_rainbow/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_rainbow/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_rainbow.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'grasshopper_leggings' with layers: prisma:armor/grasshopper_leggings/armor_layer_1.png, prisma:armor/grasshopper_leggings/armor_layer_2.png. File: /contents/prisma/configs/items/armor/craftables/grasshopper_leggings.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'angler_armor' with layers: prisma:armor/angler_armor/layer_1.png, prisma:armor/angler_armor/layer_2.png. File: /contents/prisma/configs/items/cosmetics/angler_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'earthshaker_boots' with layers: prisma:armor/earthshaker_boots/layer_1.png, prisma:armor/earthshaker_boots/layer_2.png. File: /contents/prisma/configs/items/armor/special/earthshaker_boots.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'resetshop_prisma_steppers' with layers: prisma:armor/prisma_steppers/armor_layer_1.png, prisma:armor/prisma_steppers/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/resetshop_prisma_steppers.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'bi_galoshes' with layers: prisma:armor/pride25/pride25_bi_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_bi_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_bi_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'easter25_bunny_shirt' with layers: prisma:armor/easter25_bunny_shirt/layer_1.png, prisma:armor/easter25_bunny_shirt/layer_2.png. File: /contents/prisma/configs/items/armor/special/easter25_bunny_shirt.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_shirt_camper_purple' with layers: prisma:armor/summer_2025_shirt_camper_purple/layer_1.png, prisma:armor/summer_2025_shirt_camper_purple/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_shirt_camper_purple.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'aromantic_galoshes' with layers: prisma:armor/pride25/pride25_aromantic_galoshes/armor_layer_1.png, prisma:armor/pride25/pride25_aromantic_galoshes/armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/pride25_aromantic_galoshes.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_pink' with layers: prisma:armor/summer_2025_hat_flower_crown_pink/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_pink/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_pink.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_hat_flower_crown_magenta' with layers: prisma:armor/summer_2025_hat_flower_crown_magenta/layer_1.png, prisma:armor/summer_2025_hat_flower_crown_magenta/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_hat_flower_crown_magenta.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'sapphire_armor' with layers: prisma:armor/sapphire_armor/sapphire_armor_layer_1.png, prisma:armor/sapphire_armor/sapphire_armor_layer_2.png. File: /contents/prisma/configs/items/armor/craftables/sapphire_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'starter_armor' with layers: prisma:armor/starter_armor/starter_armor_layer_1.png, prisma:armor/starter_armor/starter_armor_layer_2.png. File: /contents/prisma/configs/items/armor/special/starter_armor.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_watermelon_boots' with layers: prisma:armor/summer_2025_watermelon_boots/layer_1, prisma:armor/summer_2025_watermelon_boots/layer_2. File: /contents/prisma/configs/events/summer/summer_2025_watermelon_boots.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'frog_shirt' with layers: prisma:armor/frog_shirt/layer_1.png, prisma:armor/frog_shirt/layer_2.png. File: /contents/prisma/configs/items/armor/special/frog_shirt.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_shirt_camper_blue' with layers: prisma:armor/summer_2025_shirt_camper_blue/layer_1.png, prisma:armor/summer_2025_shirt_camper_blue/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_shirt_camper_blue.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_star_chart_pantaloons' with layers: prisma:armor/summer_2025_star_chart_pantaloons/layer_1.png, prisma:armor/summer_2025_star_chart_pantaloons/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_star_chart_pantaloons.yml
[22:40:24] [Server thread/INFO]: [ItemsAdder] [Items] Registered equipment 'summer_2025_shirt_staff_purple' with layers: prisma:armor/summer_2025_shirt_staff_purple/layer_1.png, prisma:armor/summer_2025_shirt_staff_purple/layer_2.png. File: /contents/prisma/configs/events/summer/summer_2025_shirt_staff_purple.yml
[22:40:25] [Server thread/INFO]: [ForcePack] Enabling ForcePack v1.3.73
[22:40:25] [Server thread/INFO]: [ForcePack] Generated en_gb.yml
[22:40:25] [Server thread/INFO]: [ForcePack] Generated es_es.yml
[22:40:25] [Server thread/INFO]: [ForcePack] Generated zh_cn.yml
[22:40:25] [Server thread/INFO]: [ForcePack] Generated zh_tw.yml
[22:40:25] [Server thread/WARN]: [ForcePack] [packetevents] We currently do not support the Minecraft version 1.21.8, so things might break. PacketEvents will behave as if the Minecraft version were 1.21.7!
[22:40:25] [Server thread/INFO]: [PrismaFoodAddition] Enabling PrismaFoodAddition v1.0-SNAPSHOT
[22:40:25] [Server thread/INFO]: [PrismaFoodAddition] Loaded recipe: MILK_BUCKET -> prisma:food_cheese (Duration: 1800s)
[22:40:25] [Server thread/INFO]: [PrismaFoodAddition] Loaded recipe: prisma:plant_cornitem -> prisma:food_dried_corn (Duration: 180s)
[22:40:25] [Server thread/INFO]: [PrismaFoodAddition] Loaded recipe: PORKCHOP -> prisma:food_ham (Duration: 2400s)
[22:40:25] [Server thread/INFO]: [PrismaFoodAddition] Loaded recipe: ROTTEN_FLESH -> LEATHER (Duration: 90s)
[22:40:25] [Server thread/INFO]: [PrismaFoodAddition] Loaded 4 recipes with 0 errors
[22:40:25] [Server thread/INFO]: [PrismaFoodAddition] Loaded 2 ice boxes
[22:40:25] [Server thread/INFO]: [PrismaFoodAddition] PrismaFoodAddition has been enabled!
[22:40:25] [Server thread/INFO]: [InvUnload] Enabling InvUnload v5.2.0
[22:40:25] [Server thread/WARN]: [InvUnload] Specified sound effect "ENTITY_PLAYER_LEVELUP" does not exist! Please check your config.yml
[22:40:25] [Server thread/INFO]: [InvUnload] groups.yml does not exist, skipping custom group settings.
[22:40:25] [Server thread/INFO]: [InvUnload] Succesfully hooked into ChestSort
[22:40:25] [Server thread/INFO]: [EcoItems] Enabling EcoItems v5.64.0
[22:40:25] [Server thread/INFO]: [EcoItems] Loading EcoItems
[22:40:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoitems [5.64.0]
[22:40:25] [Server thread/INFO]: [EcoCrates] Enabling EcoCrates v1.13.10
[22:40:25] [Server thread/INFO]: [EcoCrates] Loading EcoCrates
[22:40:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecocrates [1.13.10]
[22:40:25] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.3.2.0
[22:40:27] [Server thread/INFO]: [InteractiveChat] No custom ProtocolProvider provided, using default ProtocolLib provider.
[22:40:27] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[22:40:27] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[22:40:27] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Eco (Core)!
[22:40:27] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[22:40:27] [Server thread/INFO]: [InteractiveChat] InteractiveChat has injected into VentureChat!
[22:40:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.3.2.0]
[22:40:27] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v2.0.10
[22:40:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[22:40:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[22:40:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'EvenMoreFish' to create a bStats instance!
[22:40:27] [Server thread/INFO]: [CommandAPI] Hooked into Paper ServerResourcesReloadedEvent
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Successfully loaded all configurations
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Economy attempting to hook into Vault.
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Economy hooked into Vault.
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Economy attempting to hook into PlayerPoints.
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Economy hooked into PlayerPoints.
[22:40:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: emf [2.0.10]
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Loaded Addon Java 17 Addons 1.1.0 by [EvenMoreFish]
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Loaded Addon Java 21 Addons 1.1.0 by [EvenMoreFish]
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Loaded Addon Internal Addons 1.0.0 by [EvenMoreFish]
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Database is disabled in config
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Loaded FishManager with 2 Rarities and 218 Fish.
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Loaded 7 baits successfully.
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Loaded RodManager with 1 Custom Rods.
[22:40:27] [Server thread/INFO]: [EvenMoreFish] Loaded 9 competition file(s) and 111 scheduled competitions.
[22:40:27] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Enabled
[22:40:27] [Server thread/INFO]: [Boosters] Enabling Boosters v5.75.0
[22:40:27] [Server thread/INFO]: [Boosters] Loading Boosters
[22:40:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: boosters [5.75.0]
[22:40:27] [Server thread/INFO]: [KermLibreforge] Enabling KermLibreforge v1.0.0
[22:40:27] [Server thread/INFO]: [KermLibreforge] Loading KermLibreforge
[22:40:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: kermlibreforge [1.0.0]
[22:40:27] [Server thread/INFO]: [KermLibreforge] Loaded integrations: PickupFilter
[22:40:27] [Server thread/INFO]: [EcoSkills] Enabling EcoSkills v3.65.0
[22:40:27] [Server thread/INFO]: [EcoSkills] Loading EcoSkills
[22:40:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoskills [3.65.0]
[22:40:27] [Server thread/INFO]: [Aurora] Enabling Aurora v2.3.4
[22:40:27] [Server thread/INFO]: [Aurora] [ACF] Enabled Asynchronous Tab Completion Support!
[22:40:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aurora [1.0]
[22:40:27] [Server thread/INFO]: Aurora | Loaded 3 economy providers. Vault, PlayerPoints, EcoBits
[22:40:27] [Server thread/INFO]: Aurora | Using Vault as the default economy provider.
[22:40:27] [Server thread/INFO]: Aurora | Registered item resolver eb with priority 190
[22:40:27] [Server thread/INFO]: Aurora | Registered item resolver ei with priority 170
[22:40:27] [Server thread/INFO]: Aurora | Registered item resolver mythicmobs with priority 150
[22:40:27] [Server thread/INFO]: Aurora | Registered item resolver eco with priority 140
[22:40:27] [Server thread/INFO]: Aurora | Registered item resolver ia with priority 110
[22:40:27] [Server thread/INFO]: Aurora | Registered item resolver aurora with priority 80
[22:40:27] [Server thread/INFO]: Aurora | Registered item resolver hdb with priority 90
[22:40:27] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Starting...
[22:40:27] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.pool.HikariPool] aurora-leaderboard-pool - Added connection org.sqlite.jdbc4.JDBC4Connection@11d5295e
[22:40:27] [Server thread/INFO]: [gg.auroramc.aurora.libs.hikari.HikariDataSource] aurora-leaderboard-pool - Start completed.
[22:40:28] [Server thread/INFO]: [WorldGuard] Registering session handler gg.auroramc.aurora.expansions.worldguard.WorldGuardEntryAndLeaveHandler
[22:40:28] [Server thread/INFO]: [Actions] Enabling Actions v2.75.0
[22:40:28] [Server thread/INFO]: [Actions] Loading Actions
[22:40:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: actions [2.75.0]
[22:40:28] [Server thread/INFO]: [BreweryX] Enabling BreweryX v3.4.10;HEAD
[22:40:28] [Server thread/INFO]: [BreweryX] Using language: en.yml
[22:40:28] [Server thread/INFO]: [BreweryX] [GuiEditor] Loading GuiEditor - vBX3.4.3 by Jsinco
[22:40:28] [Server thread/INFO]: [BreweryX] Loaded 1 addon(s)
[22:40:28] [Server thread/INFO]: [BreweryX] Minecraft version: 1.21
[22:40:28] [Server thread/INFO]: [BreweryX] DataManager created: FlatFile
[22:40:28] [Server thread/INFO]: [ArtMap] Created Artmap map initialize queue task.
[22:40:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: breweryx [3.4.10;HEAD]
[22:40:29] [Server thread/INFO]: [BreweryX] Using scheduler: PaperScheduler
[22:40:29] [Server thread/INFO]: [BreweryX] Environment: Paper
[22:40:29] [Server thread/INFO]: [BreweryX] BreweryX enabled!
[22:40:29] [Server thread/INFO]: [ItemPredicateParser] Enabling ItemPredicateParser v0.0.22
[22:40:29] [Server thread/INFO]: [ItemPredicateParser] Applied pre-processor input en_us.txt to plugins/ItemPredicateParser/config/config.yml
[22:40:29] [Server thread/INFO]: [ItemPredicateParser] Saved read-only pre-processed version of plugins/ItemPredicateParser/config/config.yml at plugins/ItemPredicateParser/config/result.en_us.yml
[22:40:29] [Server thread/INFO]: [ItemPredicateParser] Loaded resolver for EcoEnchants
[22:40:29] [Server thread/INFO]: [ItemPredicateParser] Created folder to house language files
[22:40:29] [Server thread/INFO]: [ItemPredicateParser] Downloading language-file fr_fr
[22:40:30] [Server thread/INFO]: [ItemPredicateParser] Loaded 1597 entries for language fr_fr
[22:40:30] [Server thread/INFO]: [ItemPredicateParser] Downloading language-file en_us
[22:41:08] [Server thread/INFO]: [ItemPredicateParser] Loaded 1597 entries for language en_us
[22:41:08] [Server thread/INFO]: [ItemPredicateParser] Downloading language-file en_gb
[22:41:08] [Server thread/INFO]: [ItemPredicateParser] Loaded 1597 entries for language en_gb
[22:41:08] [Server thread/INFO]: [ItemPredicateParser] Downloading language-file zh_cn
[22:41:08] [Server thread/INFO]: [ItemPredicateParser] Loaded 1597 entries for language zh_cn
[22:41:08] [Server thread/INFO]: [ItemPredicateParser] Downloading language-file tr_tr
[22:41:09] [Server thread/INFO]: [ItemPredicateParser] Loaded 1597 entries for language tr_tr
[22:41:09] [Server thread/INFO]: [ItemPredicateParser] Downloading language-file de_de
[22:41:09] [Server thread/INFO]: [ItemPredicateParser] Loaded 1597 entries for language de_de
[22:41:09] [Server thread/INFO]: [ItemPredicateParser] Downloading language-file de_at
[22:41:10] [Server thread/INFO]: [ItemPredicateParser] Loaded 1597 entries for language de_at
[22:41:10] [Server thread/INFO]: [ItemPredicateParser] Downloading language-file de_ch
[22:41:10] [Server thread/INFO]: [ItemPredicateParser] Loaded 1597 entries for language de_ch
[22:41:10] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.6.3
[22:41:10] [Server thread/INFO]: ------------- Jobs -------------
[22:41:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.6.3]
[22:41:10] [Server thread/INFO]: PlaceholderAPI hooked.
[22:41:10] [Server thread/INFO]: Connected to database (SqLite)
[22:41:10] [Server thread/INFO]: Loaded 8 titles
[22:41:10] [Server thread/INFO]: Loaded 1 restricted areas!
[22:41:10] [Server thread/INFO]: Loaded 74 protected blocks timers
[22:41:10] [Server thread/INFO]: Loaded 1568 custom item names
[22:41:10] [Server thread/INFO]: Loaded 86 custom entity names
[22:41:10] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[22:41:10] [Server thread/INFO]: Loaded 128 custom enchant names
[22:41:10] [Server thread/INFO]: Loaded 46 custom enchant names
[22:41:10] [Server thread/INFO]: Loaded 16 custom color names
[22:41:10] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[22:41:10] [Server thread/INFO]: Loaded 4 shop items
[22:41:10] [Server thread/INFO]: Update Carpenter jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[22:41:10] [Server thread/INFO]: Loaded 12 jobs
[22:41:10] [Server thread/INFO]: Loaded 0 boosted items
[22:41:10] [Server thread/INFO]: Loaded 3470 furnace for reassigning.
[22:41:10] [Server thread/INFO]: Loaded 769 brewing for reassigning.
[22:41:10] [Server thread/INFO]: Loaded 1332 blastfurnace for reassigning.
[22:41:10] [Server thread/INFO]: Loaded 1079 smoker for reassigning.
[22:41:10] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[22:41:10] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[22:41:10] [Server thread/INFO]: Loaded 1 schedulers!
[22:41:10] [Server thread/INFO]: Preloaded 2481 players data in 0.03
[22:41:10] [Server thread/INFO]: WorldGuard detected.
[22:41:10] [Server thread/INFO]: MythicMobs detected.
[22:41:10] [Server thread/INFO]: Registering listeners...
[22:41:10] [Server thread/INFO]: Registered MythicMobs listener.
[22:41:10] [Server thread/INFO]: Listeners registered successfully
[22:41:10] [Server thread/INFO]: Plugin has been enabled successfully.
[22:41:10] [Server thread/INFO]: ------------------------------------
[22:41:10] [Server thread/INFO]: [PickupFilter] Enabling PickupFilter v1.1.3
[22:41:11] [Server thread/INFO]: [Talismans] Enabling Talismans v6.75.0
[22:41:11] [Server thread/INFO]: [Talismans] Loading Talismans
[22:41:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: talismans [6.75.0]
[22:41:11] [Server thread/INFO]: [EcoScrolls] Enabling EcoScrolls v1.11.0
[22:41:11] [Server thread/INFO]: [EcoScrolls] Loading EcoScrolls
[22:41:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoscrolls [1.11.0]
[22:41:11] [Server thread/INFO]: [StatTrackers] Enabling StatTrackers v6.36.0
[22:41:11] [Server thread/INFO]: [StatTrackers] Loading StatTrackers
[22:41:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: stattrackers [6.36.0]
[22:41:11] [Server thread/INFO]: [EcoPets] Enabling EcoPets v2.74.0
[22:41:11] [Server thread/INFO]: [EcoPets] Loading EcoPets
[22:41:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecopets [2.74.0]
[22:41:11] [Server thread/INFO]: [EcoPets] Loaded integrations: ModelEngine
[22:41:11] [Server thread/INFO]: [AuroraCrafting] Enabling AuroraCrafting v2.1.6
[22:41:11] [Server thread/INFO]: [AuroraCrafting] [ACF] Enabled Asynchronous Tab Completion Support!
[22:41:11] [Server thread/INFO]: AuroraCrafting | Hooked into Quests (by LMBishop) to progress crafting tasks
[22:41:11] [Server thread/INFO]: AuroraCrafting | Failed to enable hook QuestsHook: me/pikamug/quests/BukkitQuestsPlugin
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.10
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Contributors: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Displays. Attempting to initialize packet factory...
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[22:41:11] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[22:41:11] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Database upgrade script running... Current Database Version: 16
[22:41:11] [Server thread/INFO]: [QuickShop-Hikari] Data upgrading: Creating a new column... encoded for enhanced item storage.
[22:41:21] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[22:41:21] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[22:41:21] [Server thread/WARN]: [QuickShop-Hikari] Unrecommended use of display-auto-despawn. This feature may have a heavy impact on the server's performance!
[22:41:21] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[22:41:21] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[22:41:21] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[22:41:21] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[22:41:21] [Server thread/INFO]: [QuickShop-Hikari] Used 80ms to fetch 6255 shops from database.
[22:41:21] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[22:41:21] [ForkJoinPool-11-worker-2/ERROR]: [org.bukkit.configuration.serialization.ConfigurationSerialization] Could not call method 'public static org.bukkit.inventory.meta.ItemMeta org.bukkit.craftbukkit.inventory.SerializableMeta.deserialize(java.util.Map) throws java.lang.Throwable' of class org.bukkit.craftbukkit.inventory.SerializableMeta for deserialization
java.lang.IllegalStateException: Not a list: {modifiers:[],show_in_tooltip:0b} missed input: {"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b}}; Not a list: {modifiers:[],show_in_tooltip:0b} missed input: {"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b}}; Not a list: {modifiers:[],show_in_tooltip:0b} missed input: {"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b}}; Not a list: {modifiers:[],show_in_tooltip:0b} missed input: {"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b}}; Not a list: {modifiers:[],show_in_tooltip:0b} missed input: {"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b}}; Not a list: {modifiers:[],show_in_tooltip:0b} missed input: {"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b}} missed input: {"minecraft:container":[{item:{components:{"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b},"minecraft:custom_data":{PublicBukkitValues:{"survivaltweaks:copyright":"c94a6dc7-263a-4b97-89cf-3e44b4a38b31","survivaltweaks:copyrightname":"LunaEmerald"}},"minecraft:custom_name":'{"extra":[{"italic":true,"text":"Thanksgiving 1"}],"italic":false,"text":""}',"minecraft:lore":['{"color":"#FFFF99","italic":false,"text":"Protected from duplication"}','{"color":"#FFFF99","extra":[{"color":"#9AFF0F","text":"LunaEmerald"}],"italic":false,"text":"© "}'],"minecraft:map_id":99},count:1,id:"minecraft:filled_map"},slot:0},{item:{components:{"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b},"minecraft:custom_data":{PublicBukkitValues:{"survivaltweaks:copyright":"c94a6dc7-263a-4b97-89cf-3e44b4a38b31","survivaltweaks:copyrightname":"LunaEmerald"}},"minecraft:custom_name":'{"extra":[{"italic":true,"text":"Thanksgiving 4"}],"italic":false,"text":""}',"minecraft:lore":['{"color":"#FFFF99","italic":false,"text":"Protected from duplication"}','{"color":"#FFFF99","extra":[{"color":"#9AFF0F","text":"LunaEmerald"}],"italic":false,"text":"© "}'],"minecraft:map_id":102},count:1,id:"minecraft:filled_map"},slot:1},{item:{components:{"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b},"minecraft:custom_data":{PublicBukkitValues:{"survivaltweaks:copyright":"c94a6dc7-263a-4b97-89cf-3e44b4a38b31","survivaltweaks:copyrightname":"LunaEmerald"}},"minecraft:custom_name":'{"extra":[{"italic":true,"text":"Thanksgiving 2"}],"italic":false,"text":""}',"minecraft:lore":['{"color":"#FFFF99","italic":false,"text":"Protected from duplication"}','{"color":"#FFFF99","extra":[{"color":"#9AFF0F","text":"LunaEmerald"}],"italic":false,"text":"© "}'],"minecraft:map_id":100},count:1,id:"minecraft:filled_map"},slot:9},{item:{components:{"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b},"minecraft:custom_data":{PublicBukkitValues:{"survivaltweaks:copyright":"c94a6dc7-263a-4b97-89cf-3e44b4a38b31","survivaltweaks:copyrightname":"LunaEmerald"}},"minecraft:custom_name":'{"extra":[{"italic":true,"text":"Thanksgiving 5"}],"italic":false,"text":""}',"minecraft:lore":['{"color":"#FFFF99","italic":false,"text":"Protected from duplication"}','{"color":"#FFFF99","extra":[{"color":"#9AFF0F","text":"LunaEmerald"}],"italic":false,"text":"© "}'],"minecraft:map_id":103},count:1,id:"minecraft:filled_map"},slot:10},{item:{components:{"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b},"minecraft:custom_data":{PublicBukkitValues:{"survivaltweaks:copyright":"c94a6dc7-263a-4b97-89cf-3e44b4a38b31","survivaltweaks:copyrightname":"LunaEmerald"}},"minecraft:custom_name":'{"extra":[{"italic":true,"text":"Thanksgiving 3"}],"italic":false,"text":""}',"minecraft:lore":['{"color":"#FFFF99","italic":false,"text":"Protected from duplication"}','{"color":"#FFFF99","extra":[{"color":"#9AFF0F","text":"LunaEmerald"}],"italic":false,"text":"© "}'],"minecraft:map_id":101},count:1,id:"minecraft:filled_map"},slot:18},{item:{components:{"minecraft:attribute_modifiers":{modifiers:[],show_in_tooltip:0b},"minecraft:custom_data":{PublicBukkitValues:{"survivaltweaks:copyright":"c94a6dc7-263a-4b97-89cf-3e44b4a38b31","survivaltweaks:copyrightname":"LunaEmerald"}},"minecraft:custom_name":'{"extra":[{"italic":true,"text":"Thanksgiving 6"}],"italic":false,"text":""}',"minecraft:lore":['{"color":"#FFFF99","italic":false,"text":"Protected from duplication"}','{"color":"#FFFF99","extra":[{"color":"#9AFF0F","text":"LunaEmerald"}],"italic":false,"text":"© "}'],"minecraft:map_id":104},count:1,id:"minecraft:filled_map"},slot:19}]}
    at com.mojang.serialization.DataResult$Error.getOrThrow(DataResult.java:287) ~[datafixerupper-8.0.16.jar:?]
    at com.mojang.serialization.DataResult.getOrThrow(DataResult.java:81) ~[datafixerupper-8.0.16.jar:?]
    at org.bukkit.craftbukkit.inventory.CraftMetaBlockState.lambda$deserializeInternal$6(CraftMetaBlockState.java:208) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at java.base/java.util.Optional.ifPresent(Optional.java:178) ~[?:?]
    at org.bukkit.craftbukkit.inventory.CraftMetaBlockState.deserializeInternal(CraftMetaBlockState.java:207) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.craftbukkit.inventory.CraftMetaItem.<init>(CraftMetaItem.java:754) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.craftbukkit.inventory.CraftMetaBlockState.<init>(CraftMetaBlockState.java:137) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at org.bukkit.craftbukkit.inventory.SerializableMeta.deserialize(SerializableMeta.java:80) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?]
    at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeViaMethod(ConfigurationSerialization.java:87) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserialize(ConfigurationSerialization.java:129) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.configuration.serialization.ConfigurationSerialization.deserializeObject(ConfigurationSerialization.java:209) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:58) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:576) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:210) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:552) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:597) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConstructor$ConstructCustomObject.construct(YamlConstructor.java:49) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:264) ~[snakeyaml-2.2.jar:?]
    at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:247) ~[snakeyaml-2.2.jar:?]
    at org.bukkit.configuration.file.YamlConstructor.construct(YamlConstructor.java:37) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.configuration.file.YamlConfiguration.fromNodeTree(YamlConfiguration.java:164) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:121) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at QuickShop-Hikari-6.2.0.10.jar/com.ghostchu.quickshop.util.Util.deserialize(Util.java:406) ~[QuickShop-Hikari-6.2.0.10.jar:?]
    at QuickShop-Hikari-6.2.0.10.jar/com.ghostchu.quickshop.shop.ShopLoader$DataRawDatabaseInfo.deserializeItem(ShopLoader.java:365) ~[QuickShop-Hikari-6.2.0.10.jar:?]
    at QuickShop-Hikari-6.2.0.10.jar/com.ghostchu.quickshop.shop.ShopLoader$DataRawDatabaseInfo.<init>(ShopLoader.java:357) ~[QuickShop-Hikari-6.2.0.10.jar:?]
    at QuickShop-Hikari-6.2.0.10.jar/com.ghostchu.quickshop.shop.ShopLoader.loadSingleShop(ShopLoader.java:172) ~[QuickShop-Hikari-6.2.0.10.jar:?]
    at QuickShop-Hikari-6.2.0.10.jar/com.ghostchu.quickshop.shop.ShopLoader.lambda$loadShopFromShopRecord$3(ShopLoader.java:124) ~[QuickShop-Hikari-6.2.0.10.jar:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) ~[?:?]
[22:41:22] [Server thread/INFO]: [QuickShop-Hikari] Used 650ms to load 42 shops into memory (6213 shops will be loaded after chunks/world loaded).
[22:41:22] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[22:41:22] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[22:41:22] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[22:41:22] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[22:41:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.10]
[22:41:22] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[22:41:22] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[22:41:22] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete. (10706ms)
[22:41:22] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.150.0
[22:41:22] [Server thread/INFO]:  
[22:41:22] [Server thread/INFO]: =============================
[22:41:22] [Server thread/INFO]: AuctionHouse 2.150.0 by Kiran Hart
[22:41:22] [Server thread/INFO]: Action: Enabling...
[22:41:22] [Server thread/INFO]: [TweetyCore] Hooked into AuctionHouse.
[22:41:22] [pool-251-thread-1/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.8! Trying to find NMS support
[22:41:22] [pool-251-thread-1/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R5' loaded!
[22:41:22] [pool-251-thread-1/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuctionHouse' to create a bStats instance!
[22:41:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionhouse [1.0.0]
[22:41:22] [Server thread/INFO]: =============================
[22:41:22] [Server thread/INFO]:  
[22:41:22] [Server thread/INFO]: [Tweakin] Enabling Tweakin v9.0.0
[22:41:22] [Server thread/INFO]: [Tweakin] Running papermc..
[22:41:22] [Server thread/INFO]: [Tweakin] Towny grief plugin enabled, initializing compat
[22:41:22] [Server thread/INFO]: [Tweakin] Running Vulcan, registering listener for reacharound
[22:41:22] [Server thread/INFO]: [Tweakin] [PriLib] Running 1.21.8 minecraft version
[22:41:22] [Server thread/INFO]: [Tweakin] [ACF] Enabled Asynchronous Tab Completion Support!
[22:41:22] [Server thread/INFO]: [Tweakin] Loading tweakin...
[22:41:22] [Server thread/INFO]: [Tweakin] Using 0,16,0 as color for reach-around, due to other color channels being removed after 1.17
[22:41:22] [Server thread/INFO]: [Tweakin] Registered 25 tweaks successfully
[22:41:22] [Server thread/INFO]: [Tweakin] Registering permissions
[22:41:22] [Server thread/INFO]: [Tweakin] Registered 66 permissions
[22:41:22] [Server thread/INFO]: [Tweakin] Enabling bstats...
[22:41:22] [pool-251-thread-1/INFO]: [AuctionHouse] Loaded & Updated Items In 197 ms
[22:41:22] [Server thread/INFO]: [Tweakin] Tweakin loaded successfully
[22:41:22] [pool-251-thread-1/WARN]: ca.tweetzy.auctionhouse.flight.nbtapi.NbtApiException: [?][2.15.2-SNAPSHOT]Exception while converting NBTCompound to NMS ItemStack! {components:{"minecraft:custom_data":{AuctionDupeTracking:[I;-1815129389,-364820344,-2118992508,-2032881651]},"minecraft:damage":15,"minecraft:enchantments":{levels:{"minecraft:knockback":255,"minecraft:wind_burst":255}}},count:1,id:"minecraft:mace"}
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.nbtapi.NBTReflectionUtil.convertNBTCompoundtoNMSItem(NBTReflectionUtil.java:261)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.nbtapi.NBTItem.convertNBTtoItem(NBTItem.java:361)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.nbtapi.NBT.itemStackFromNBT(NBT.java:495)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.utils.SerializeUtil.stringToItem(SerializeUtil.java:87)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.utils.QuickItem.getItem(QuickItem.java:541)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.database.DataManager.extractTransaction(DataManager.java:1143)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.database.DataManager.lambda$getTransactions$24(DataManager.java:540)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.database.SQLiteConnector.connect(SQLiteConnector.java:76)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.database.DataManager.lambda$getTransactions$25(DataManager.java:536)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.database.DataManagerAbstract.lambda$runAsync$0(DataManagerAbstract.java:121)
[22:41:22] [pool-251-thread-1/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[22:41:22] [pool-251-thread-1/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[22:41:22] [pool-251-thread-1/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[22:41:22] [pool-251-thread-1/WARN]: Caused by: ca.tweetzy.auctionhouse.flight.nbtapi.NbtApiException: [?][2.15.2-SNAPSHOT]Failed to convert NBT to ItemStack. DataResult.Error['Not a number; Failed to get element minecraft:levels missed input: {levels:{"minecraft:knockback":255,"minecraft:wind_burst":255}} missed input: {"minecraft:enchantments":{levels:{"minecraft:knockback":255,"minecraft:wind_burst":255}}}': 1 minecraft:mace] {components:{"minecraft:custom_data":{AuctionDupeTracking:[I;-1815129389,-364820344,-2118992508,-2032881651]},"minecraft:damage":15,"minecraft:enchantments":{levels:{"minecraft:knockback":255,"minecraft:wind_burst":255}}},count:1,id:"minecraft:mace"}
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.nbtapi.utils.nmsmappings.CodecHelper.convertNbtToItemStack(CodecHelper.java:31)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.nbtapi.NBTReflectionUtil.convertNBTCompoundtoNMSItem(NBTReflectionUtil.java:247)
[22:41:22] [pool-251-thread-1/WARN]:     ... 12 more
[22:41:22] [pool-251-thread-1/WARN]: Caused by: java.util.NoSuchElementException: No value present
[22:41:22] [pool-251-thread-1/WARN]:     at java.base/java.util.Optional.get(Optional.java:143)
[22:41:22] [pool-251-thread-1/WARN]:     at AuctionHouse - v2.150.0.jar//ca.tweetzy.auctionhouse.flight.nbtapi.utils.nmsmappings.CodecHelper.convertNbtToItemStack(CodecHelper.java:29)
[22:41:22] [pool-251-thread-1/WARN]:     ... 13 more
[22:41:22] [Server thread/INFO]: [qscompat-itemsadder] Enabling qscompat-itemsadder v6.2.0.10
[22:41:22] [Server thread/INFO]: [qscompat-itemsadder] Register ItemsAdder ItemExpressionHandler successfully!
[22:41:22] [Server thread/INFO]: [qscompat-itemsadder] Enabling...
[22:41:22] [Server thread/INFO]: [QuickShopSearch] Enabling QuickShopSearch v0.0.53
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Extended 94 new keys on the pre-processor input zh_cn.txt
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Extended 94 new keys on the pre-processor input tr_tr.txt
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Extended 94 new keys on the pre-processor input en_us.txt
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Extended 94 new keys on the pre-processor input de_de.txt
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Extended 44 new keys on the configuration config.yml
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Applied pre-processor input en_us.txt to plugins/QuickShopSearch/config/config.yml
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Saved read-only pre-processed version of plugins/QuickShopSearch/config/config.yml at plugins/QuickShopSearch/config/result.en_us.yml
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Using language en_us for predicate parsing
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Detected QuickShop-Hikari version 6.2.0.10
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Loaded remote-interaction-support for > QuickShop-Hikari 6.2.0.8
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Getting all globally existing shops... This may take a while!
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Found 6255 shops in total
[22:41:24] [Server thread/INFO]: [QuickShopSearch] Loaded listener-support for > QuickShop-Hikari 6.2.0.8
[22:41:24] [Server thread/INFO]: [EcoUnenchanter] Enabling EcoUnenchanter v1.6
[22:41:24] [Server thread/INFO]: [EcoUnenchanter] Loading EcoUnenchanter
[22:41:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecounenchanter [1.6]
[22:41:24] [Server thread/INFO]: [IncomeHistory] Enabling IncomeHistory v1.0
[22:41:24] [Server thread/INFO]: [qscompat-towny] Enabling qscompat-towny v6.2.0.10
[22:41:24] [Server thread/INFO]: [qscompat-towny] Enabling...
[22:41:24] [Server thread/INFO]: [qscompat-ecoenchants] Enabling qscompat-ecoenchants v6.2.0.10
[22:41:24] [Server thread/INFO]: [qscompat-ecoenchants] Found 86 enchantments from EcoEnchants
[22:41:24] [Server thread/INFO]: [qscompat-ecoenchants] Initialized 86 EcoEnchants translation keys
[22:41:24] [Server thread/INFO]: [qscompat-ecoenchants] Enabling...
[22:41:24] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.1.1 (build 882)
[22:41:24] [Server thread/ERROR]: Error occurred while enabling Depenizen v2.1.1 (build 882) (Is it up to date?)
java.lang.NoClassDefFoundError: com/denizenscript/denizencore/utilities/debugging/Debug
    at Depenizen-2.1.1-b882.jar/com.denizenscript.depenizen.bukkit.Depenizen.onEnable(Depenizen.java:32) ~[Depenizen-2.1.1-b882.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:280) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:612) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:732) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1151) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:312) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizencore.utilities.debugging.Debug
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:206) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:173) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 13 more
[22:41:24] [Server thread/INFO]: [Depenizen] Disabling Depenizen v2.1.1 (build 882)
[22:41:24] [Server thread/ERROR]: Error occurred while disabling Depenizen v2.1.1 (build 882)
java.lang.NoClassDefFoundError: com/denizenscript/denizencore/tags/TagRunnable$RootForm
    at Depenizen-2.1.1-b882.jar/com.denizenscript.depenizen.bukkit.Depenizen.onDisable(Depenizen.java:53) ~[Depenizen-2.1.1-b882.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:286) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:657) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:612) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:732) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:488) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1151) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:312) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizencore.tags.TagRunnable$RootForm
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:206) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:173) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 16 more
[22:41:24] [Server thread/INFO]: [EcoShop] Enabling EcoShop v1.36.0
[22:41:24] [Server thread/INFO]: [EcoShop] Loading EcoShop
[22:41:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ecoshop [1.36.0]
[22:41:25] [Server thread/INFO]: [qsaddon-discount] Enabling qsaddon-discount v6.2.0.10
[22:41:25] [Server thread/INFO]: [qsaddon-discount] Registering the per shop permissions...
[22:41:25] [Server thread/INFO]: [qsaddon-discount] Registering the listeners...
[22:41:25] [Server thread/INFO]: [qssuite-limited] Enabling qssuite-limited v6.2.0.10
[22:41:25] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.36
[22:41:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.36]
[22:41:25] [Server thread/INFO]: [ClueScrolls] Enabling ClueScrolls v5.1.1
[22:41:25] [Server thread/INFO]: [ClueScrolls] ==============================================================
[22:41:25] [Server thread/INFO]: [ClueScrolls] Loaded 252 rewards
[22:41:25] [Server thread/INFO]: [ClueScrolls] Warning: '' for clue 'summer9' in tier 'summer' is not a valid number or range. Skipping loading this clue.
[22:41:25] [Server thread/INFO]: [ClueScrolls] Warning: '' for clue 'summer10' in tier 'summer' is not a valid number or range. Skipping loading this clue.
[22:41:25] [Server thread/INFO]: [ClueScrolls] Loaded 6 tiers
[22:41:25] [Server thread/INFO]: [ClueScrolls] Database connected using h2
[22:41:25] [Server thread/INFO]: [ClueScrolls] Statistics loaded successfully
[22:41:25] [Server thread/INFO]: [ClueScrolls] Cooldowns connected successfully
[22:41:25] [Server thread/INFO]: [ClueScrolls] Scroll chest inventories connected successfully
[22:41:26] [Server thread/INFO]: [ClueScrolls] Block tracking: None
[22:41:26] [Server thread/INFO]: [ClueScrolls] Successfully hooked into ItemsAdder.
[22:41:26] [Server thread/INFO]: [ClueScrolls] Successfully hooked into MythicMobs.
[22:41:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cluescrolls [5.1.1]
[22:41:26] [Server thread/INFO]: [ClueScrolls] ==============================================================
[22:41:26] [Server thread/INFO]: [SeedBags] Enabling SeedBags v1.0-SNAPSHOT
[22:41:26] [Server thread/INFO]: [RoseLoot] Enabling RoseLoot v1.3.1
[22:41:26] [Server thread/INFO]: [RoseLoot] Data handler connected using SQLite.
[22:41:26] [Server thread/INFO]: [SafariNet] Enabling SafariNet v1.16.25-SNAPSHOT
[22:41:26] [Server thread/INFO]: [SafariNet] Using v1_21_R5
[22:41:26] [Server thread/INFO]: [SafariNet] [SafariNet] WorldGuard found and using it.
[22:41:26] [Server thread/INFO]: [SafariNet] [SafariNet] MythicMobs found and using it.
[22:41:26] [Server thread/INFO]: [SafariNet] [SafariNet] Towny found and using it.
[22:41:26] [Server thread/INFO]: [libreforge] Enabling libreforge v4.77.0
[22:41:26] [Server thread/INFO]: [libreforge] Loading libreforge
[22:41:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libreforge [4.77.0]
[22:41:26] [Server thread/INFO]: [libreforge] Loaded integrations: Jobs, FancyNpcs, ModelEngine, Vault, WorldGuard
[22:41:26] [Server thread/INFO]: [libreforge] 
[22:41:26] [Server thread/INFO]: [libreforge] Hey, what's this plugin doing here? I didn't install it!
[22:41:26] [Server thread/INFO]: [libreforge] libreforge is the effects system for plugins like EcoEnchants,
[22:41:26] [Server thread/INFO]: [libreforge] EcoJobs, EcoItems, etc. If you're looking for config options for
[22:41:26] [Server thread/INFO]: [libreforge] things like cooldown messages, lrcdb, and stuff like that, you'll
[22:41:26] [Server thread/INFO]: [libreforge] find it under /plugins/libreforge
[22:41:26] [Server thread/INFO]: [libreforge] 
[22:41:26] [Server thread/INFO]: [libreforge] Don't worry about updating libreforge, it's handled automatically!
[22:41:26] [Server thread/INFO]: [libreforge] 
[22:41:26] [Server thread/INFO]: [spark] Starting background profiler...
[22:41:26] [Server thread/WARN]: Could not register alias t invite accept because it contains illegal characters
[22:41:26] [Server thread/WARN]: Could not register alias fly because it contains commands that do not exist: tfly
[22:41:26] [Server thread/WARN]: Could not register alias warriorshop because it contains commands that do not exist: warriorshop
[22:41:26] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[22:41:26] [Server thread/INFO]: [BetterHud] Minecraft version: 1.21.8, NMS version: V1_21_R5
[22:41:26] [Server thread/INFO]: [BetterHud] Platform: Paper
[22:41:26] [Server thread/INFO]: [BetterHud] Plugin enabled.
[22:41:26] [Server thread/INFO]: Done preparing level "world" (84.413s)
[22:41:26] [Server thread/INFO]: Running delayed init tasks
[22:41:26] [ForkJoinPool.commonPool-worker-15/INFO]: [ModelEngine] [A] 
[22:41:26] [ForkJoinPool.commonPool-worker-15/INFO]: [ModelEngine] [A] [Importing models]
[22:41:26] [Craft Scheduler Thread - 13 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[22:41:26] [Craft Scheduler Thread - 14 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[22:41:26] [ForkJoinPool.commonPool-worker-15/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[22:41:26] [Craft Scheduler Thread - 52 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[22:41:26] [Craft Scheduler Thread - 86 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[22:41:26] [Craft Scheduler Thread - 88 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] [Shop Purger] Scanning and removing shops....
[22:41:26] [Craft Scheduler Thread - 71 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[22:41:26] [Craft Scheduler Thread - 115 - LiteBans/INFO]: [LiteBans] A plugin update is available! Your version: 2.16.3, latest version: ${}
[22:41:26] [Craft Scheduler Thread - 115 - LiteBans/INFO]: [LiteBans] Updates can be downloaded from here:
[22:41:26] [Craft Scheduler Thread - 115 - LiteBans/INFO]: [LiteBans] https://www.spigotmc.org/resources/litebans.3715/
[22:41:26] [Craft Scheduler Thread - 57 - ArtMap/INFO]: [ArtMap] Async load of 25 artists started. 2,469 retrieved from disk cache.
[22:41:26] [Craft Scheduler Thread - 43 - FastAsyncVoxelSniper/INFO]: [com.thevoxelbox.voxelsniper.VoxelSniperPlugin] An update for FastAsyncVoxelSniper is available.
[22:41:26] [Craft Scheduler Thread - 43 - FastAsyncVoxelSniper/INFO]: [com.thevoxelbox.voxelsniper.VoxelSniperPlugin] You are running version 3.2.2, the latest version is 3.2.3
[22:41:26] [Craft Scheduler Thread - 43 - FastAsyncVoxelSniper/INFO]: [com.thevoxelbox.voxelsniper.VoxelSniperPlugin] Update at https://dev.bukkit.org/projects/favs/
[22:41:26] [Craft Scheduler Thread - 44 - PinataParty/INFO]: [PinataParty] v2.68.3 is available! You are running v2.67.8!
[22:41:26] [Craft Scheduler Thread - 44 - PinataParty/INFO]: [PinataParty] Download it here: https://www.spigotmc.org/resources/59318/
[22:41:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.3.3]
[22:41:27] [Craft Scheduler Thread - 65 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: Kerm (942879)
[22:41:27] [Craft Scheduler Thread - 14 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[22:41:27] [Craft Scheduler Thread - 54 - CommandPanels/INFO]: [CommandPanels] Could not access GitHub to check for updates.
[22:41:27] [Craft Scheduler Thread - 93 - RoseStacker/INFO]: [RoseStacker] Fetched 137 translation locales.
[22:41:27] [Craft Scheduler Thread - 107 - RoseLoot/INFO]: [RoseLoot] An update for RoseLoot (v1.3.2) is available! You are running v1.3.1.
[22:41:27] [Craft Scheduler Thread - 118 - AuctionHouse/INFO]: [AH] Is running the latest version!
[22:41:27] [Craft Scheduler Thread - 42 - ChatGames-Premium/INFO]: [CHAT GAMES] There is a new update available on Spigot!
[22:41:27] [Craft Scheduler Thread - 85 - EcoPets/WARN]: [EcoPets] EcoPets is out of date! (Version 2.74.0)
[22:41:27] [Craft Scheduler Thread - 85 - EcoPets/WARN]: [EcoPets] The newest version is 2.76.0
[22:41:27] [Craft Scheduler Thread - 85 - EcoPets/WARN]: [EcoPets] Download the new version!
[22:41:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[22:41:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[22:41:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.TownyFeature] Plugin 'Towny' found. Using it now.
[22:41:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'Towny'
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/ERROR]: [ItemsAdder] Invalid furniture 'plant_wisteria_blue' for 'place_furniture' action of item 'prisma:plant_wisteria_blueitem'. File: /contents/prisma/configs/furniture/plants/flowers/plants_extra.yml
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/ERROR]: [ItemsAdder] Invalid furniture 'plant_wisteria_red' for 'place_furniture' action of item 'prisma:plant_wisteria_reditem'. File: /contents/prisma/configs/furniture/plants/flowers/plants_extra.yml
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/ERROR]: [ItemsAdder] Invalid furniture 'plant_wisteria_purple' for 'place_furniture' action of item 'prisma:plant_wisteria_purpleitem'. File: /contents/prisma/configs/furniture/plants/flowers/plants_extra.yml
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/ERROR]: [ItemsAdder] Invalid furniture 'plant_wisteria_pink' for 'place_furniture' action of item 'prisma:plant_wisteria_pinkitem'. File: /contents/prisma/configs/furniture/plants/flowers/plants_extra.yml
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/ERROR]: [ItemsAdder] Invalid furniture 'plant_wisteria_green' for 'place_furniture' action of item 'prisma:plant_wisteria_greenitem'. File: /contents/prisma/configs/furniture/plants/flowers/plants_extra.yml
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/ERROR]: [ItemsAdder] Invalid furniture 'plant_wisteria_cream' for 'place_furniture' action of item 'prisma:plant_wisteria_creamitem'. File: /contents/prisma/configs/furniture/plants/flowers/plants_extra.yml
[22:41:27] [Craft Scheduler Thread - 20 - DailyRewardsPlus/INFO]: [DailyRewards+] Successfully acquired all player data for LeaderBoard.
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/ERROR]: [ItemsAdder] Invalid furniture 'seashells' for 'place_furniture' action of item 'prisma:currency_seashell'. File: /contents/prisma/configs/utility/currency.yml
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 2206 items
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder] Used Blocks IDs:
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder]  - REAL 33/188
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_NOTE 0/750
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_WIRE 85/127
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder] Used Font Images: 152/6608
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing butterfly_emerald.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing mantis.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing butterfly_red.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing cockroach.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing kodama_2.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing snail.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing kodama_1.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing dragonfly_red.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing crab_blue.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing spider_black_widow.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing slug_yellow.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing slug_orange.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing slug_black.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing dragonfly_green.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing walking_stick.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing grasshopper_green.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing ant_black.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing kodama_4.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing centipede_red.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing butterfly_yellow.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing gila_monster_baby.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing earthworm.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing kodama_3.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing butterfly_blue.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing gila_monster.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing ant_red.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing mole.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing grasshopper_brown.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing jerboa.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing giant_mosquito.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing roly_poly.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing jerboa_baby.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing dragonfly_blue.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing hedgehog.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing ladybug.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing crab_red.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing vulture.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing tiger_white_baby.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing snowy_owl.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing honey_badger.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing beaver_baby.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing brown_owl.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing squirrel.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing squirrel_baby.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing porcupine_baby.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing tiger_white.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing tiger_bengal.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing honey_badger_baby.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing deer_european_fallow.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing penguin_baby.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing meerkat_baby.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing porcupine.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing lr_trainingdummy_2.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing bear_grizzly_baby.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing bear_grizzly.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing brown_raccoon.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing squirrel_snow.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing penguin.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing moose_baby.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing beaver.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing moose.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing raccoon.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing deer_tall_white.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing tiger_bengal_baby.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing pet_rock.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing meerkat.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing deer_european_fallow_baby.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing squirrel_snow_baby.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing nm_alligator_baby.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing pet_summer_cactus.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing pet_eye.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing pet_bat.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing pet_spider.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing pet_rock_gem_cluster.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing pet_dragon_golden.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing ruins_golem.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing pet_ice_fairy.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing pet_summer_manta_ray.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing pet_moth.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing pet_chicken.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing pet_moth_luna.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing pet_raincloud.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing nm_alligator.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing pet_pegasus.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing pet_mouse.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing pet_bubble_guy.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing pet_dumbo_octopus.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing pet_summer_manta_ray_starry_night.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing pet_fox.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing pet_ufo.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing pet_automaton.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing pet_death_star.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing pet_skully.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing pet_summer_whale.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing pet_dragon.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing runic_construct_titan_rocks.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing pet_summer_whale_winged.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing pet_geode.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing runic_construct_specter.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing pet_tinkerer.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing pet_wisp.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing runic_construct_knight.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing runic_construct_rockling.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing runic_construct_brute.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing runic_construct_falling_rocks.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing hermit_crab_boss_anchor.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing runic_construct_rock_bear.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing runic_construct_rock_dog.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing killer_rabbit_carrot.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing coralfish.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing pet_wisp_inflamed.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing nm_shark_hammerhead.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing summer_jellyfish_blue.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing cowfish.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing anthias.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing chromis.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing runic_construct_titan.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing minnow.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing carp.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing muskellunge.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing perch.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing nile_tilapia.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing brown_trout.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing alligator_gar.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing bluegill.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing lamprey.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing rainbow_fish.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing seapig.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing bear_grizzly_boss.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing pet_fish_in_a_bowl.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing ghost_shark.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing moon_minnow.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing hermit_crab_boss.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing red_shrooma.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing coelacanth.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing brown_shrooma.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing warped_shrimp.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing herring.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing killer_rabbit.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing giant_isopod.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing anglerfish.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing rainbow_trout.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing horseshoe_crab.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing giant_grenadier.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing blackfish.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing lobster.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing pollock.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing sea_slug_white.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing mola_mola.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing halibut.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing shrimp.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing scallop.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing sea_slug_blue.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing nm_shark_hammerhead.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing starfish.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing manta_ray.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing yellowfin_tuna.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing peacock_cichlid.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing jellyfish.bbmodel.
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing convict_cichlid.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing leopard_fish.bbmodel.
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-10/INFO]: [ModelEngine] [A] Importing mudskipper.bbmodel.
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-5/INFO]: [ModelEngine] [A] Importing lrd_concussed_stars.bbmodel.
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-8/INFO]: [ModelEngine] [A] Importing arapaima.bbmodel.
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-6/INFO]: [ModelEngine] [A] Importing nm_shark_great_white.bbmodel.
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-1/INFO]: [ModelEngine] [A] Importing bayad.bbmodel.
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-9/INFO]: [ModelEngine] [A] Importing red_grouper.bbmodel.
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-2/INFO]: [ModelEngine] [A] Importing ork_nil_ground_fx.bbmodel.
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-3/INFO]: [ModelEngine] [A] Importing pet_summer_cactus_guy.bbmodel.
[22:41:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.8.0]
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-7/INFO]: [ModelEngine] [A] Importing ork_nil_rage.bbmodel.
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:27] [pool-43-thread-4/INFO]: [ModelEngine] [A] Importing ork_nil.bbmodel.
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 30 categories
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder] [Content] Contents loaded successfully!
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder] ResourcePack
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder]  - Path: /container/plugins/ItemsAdder/output/generated.zip
[22:41:27] [Craft Scheduler Thread - 67 - ItemsAdder/INFO]: [ItemsAdder]  - Size: 6 MB/250 MB (2%)
[22:41:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rs [1.0.0]
[22:41:27] [Server thread/INFO]: [RealisticSeasons] Total biomes registered on server: 399
[22:41:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eglow [3.4.2]
[22:41:27] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (iConomyUnlocked)
[22:41:27] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[22:41:28] [pool-43-thread-4/INFO]: [ModelEngine] [A] 
[22:41:28] [pool-43-thread-4/INFO]: [ModelEngine] [A] Resource pack zipped.
[22:41:28] [pool-43-thread-4/INFO]: [ModelEngine] [A] Generator Profiled:
[22:41:28] [pool-43-thread-4/INFO]: [ModelEngine] [A]  - Import Phase: 555.7ms
[22:41:28] [pool-43-thread-4/INFO]: [ModelEngine] [A]  - Assets Phase: 248.0ms
[22:41:28] [pool-43-thread-4/INFO]: [ModelEngine] [A]  - Zipping Phase: 838.9ms
[22:41:28] [Craft Scheduler Thread - 108 - BetterHud/INFO]: [BetterHud] File packed: 4.148MB -> 4.148MB
[22:41:35] [Server thread/WARN]: [QuickShop-Hikari] Failed to load shop: 2;16614;-19;9456;world: com.ghostchu.quickshop.shop.ContainerShop: Inventory is null
[22:41:35] [Server thread/WARN]: [QuickShop-Hikari] Unloading shops from memory, set `debug.delete-corrupt-shops` to true to delete corrupted shops.
[22:41:35] [Server thread/ERROR]: [QuickShopSearch] Encountered a shop without its corresponding sign at (16614, -19, 9456) in world "world"
[22:41:35] [Server thread/WARN]: [ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup] Entity uuid already exists: 5284f7da-2d8b-4f88-885f-70dc872f97d0, mapped to Guardian['Guardian'/916, uuid='5284f7da-2d8b-4f88-885f-70dc872f97d0', l='ServerLevel[world]', x=5423.94, y=56.65, z=-207.96, cpos=[338, -13], tl=0, v=true], can't add Guardian['Guardian'/7015, uuid='5284f7da-2d8b-4f88-885f-70dc872f97d0', l='ServerLevel[world]', x=5424.23, y=56.52, z=-207.75, cpos=[339, -13], tl=0, v=false]
[22:41:37] [Craft Scheduler Thread - 57 - ArtMap/INFO]: [ArtMap] Loaded 24 from disk cache, 0 from server, and 0 from mojang out of 24 artists with 1 failures
[22:41:37] [Craft Scheduler Thread - 57 - ArtMap/INFO]: [ArtMap] Remaining artists will be loaded when needed.
[22:41:38] [Server thread/INFO]: [RoseLoot] Registered 221 loot table conditions.
[22:41:38] [Server thread/INFO]: [RoseLoot] Registered 11 loot table types.
[22:41:38] [Server thread/INFO]: [RoseLoot] Registered 22 loot item types.
[22:41:38] [Server thread/INFO]: [RoseLoot] Loaded 53 loot tables.
[22:41:39] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop nil_sword
[22:41:39] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[22:41:39] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[22:41:39] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop nil_head
[22:41:39] [Server thread/WARN]: [MythicMobs] --| File: DropItemMechanic
[22:41:39] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[22:41:39] [Server thread/INFO]: [MythicDungeons] Loading dungeon: TrainingCamp
[22:41:39] [Server thread/INFO]: [MythicDungeons] Loading dungeon: RunicConstruct
[22:41:40] [Server thread/INFO]: [MythicDungeons] Loading dungeon: CreakingKeep
[22:41:40] [Server thread/INFO]: [MythicDungeons] Loading dungeon: TheBog
[22:41:40] [Server thread/INFO]: [MythicDungeons] Loading dungeon: WraithwoodManor
[22:41:40] [Server thread/INFO]: [MythicDungeons] Loading dungeon: GoblinDen
[22:41:42] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: iConomyUnlocked
[22:41:42] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Economy Processor
[22:41:42] [Server thread/INFO]: --------------------------------------------------------
[22:41:42] [Server thread/INFO]: 
[22:41:42] [Server thread/INFO]: Thank you for purchasing Auction House, it means a lot
[22:41:42] [Server thread/INFO]:  - Kiran Hart
[22:41:42] [Server thread/INFO]: 
[22:41:42] [Server thread/INFO]: --------------------------------------------------------
[22:41:42] [Server thread/INFO]: [qscompat-ecoenchants] Found 86 enchantments from EcoEnchants
[22:41:42] [Server thread/INFO]: [qscompat-ecoenchants] Initialized 86 EcoEnchants translation keys
[22:41:42] [Server thread/WARN]: java.net.UnknownHostException: api.jeff-media.de
[22:41:42] [Server thread/WARN]:     at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567)
[22:41:42] [Server thread/WARN]:     at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
[22:41:42] [Server thread/WARN]:     at java.base/java.net.Socket.connect(Socket.java:751)
[22:41:42] [Server thread/WARN]:     at java.base/sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:304)
[22:41:42] [Server thread/WARN]:     at java.base/sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:181)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:183)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:377)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:193)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1252)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1138)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:179)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1690)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1614)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[22:41:42] [Server thread/WARN]:     at ChestSort-14.2.0.jar//de.jeff_media.chestsort.updatechecker.UpdateChecker.lambda$checkNow$5(UpdateChecker.java:273)
[22:41:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[22:41:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[22:41:42] [Server thread/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[22:41:42] [Server thread/WARN]:     at java.base/java.util.concurrent.ThreadPerTaskExecutor$TaskRunner.run(ThreadPerTaskExecutor.java:314)
[22:41:42] [Server thread/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[22:41:42] [Server thread/WARN]: [ChestSort] Could not check for updates.
[22:41:42] [Server thread/WARN]: java.net.UnknownHostException: api.jeff-media.com
[22:41:42] [Server thread/WARN]:     at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:567)
[22:41:42] [Server thread/WARN]:     at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
[22:41:42] [Server thread/WARN]:     at java.base/java.net.Socket.connect(Socket.java:751)
[22:41:42] [Server thread/WARN]:     at java.base/sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:304)
[22:41:42] [Server thread/WARN]:     at java.base/sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:181)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:183)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:377)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:193)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1252)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1138)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:179)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1690)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1614)
[22:41:42] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:223)
[22:41:42] [Server thread/WARN]:     at InvUnload.jar//de.jeff_media.InvUnload.updatechecker.UpdateChecker.E(Unknown Source)
[22:41:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[22:41:42] [Server thread/WARN]:     at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[22:41:42] [Server thread/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[22:41:42] [Server thread/WARN]:     at java.base/java.util.concurrent.ThreadPerTaskExecutor$TaskRunner.run(ThreadPerTaskExecutor.java:314)
[22:41:42] [Server thread/WARN]:     at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)
[22:41:42] [Server thread/WARN]: [InvUnload] Could not check for updates.
[22:41:42] [Server thread/INFO]: [SuperVanish] Your current version of SuperVanish is outdated - New version: '6.2.21'; Currently: '6.2.20'
[22:41:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[22:41:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[22:41:42] [Server thread/INFO]: [ForcePack] Hooked into Items Adder data load
[22:41:42] [Server thread/INFO]: [ForcePack] Enabling web server...
[22:41:42] [Server thread/INFO]: [ForcePack] Downloading required dependencies, this might take a while! Subsequent startups will be faster.
[22:41:43] [Server thread/INFO]: [ForcePack] Finished downloading required dependencies.
[22:41:43] [Server thread/INFO]: [org.eclipse.jetty.server.Server] jetty-11.0.23; built: 2024-08-14T01:40:17.906Z; git: 6fcf5ccaebd7ca13a0cb96c96adca699a24080a0; jvm 21.0.7+6-LTS
[22:41:43] [Server thread/INFO]: [org.eclipse.jetty.server.session.DefaultSessionIdManager] Session workerName=node0
[22:41:43] [Server thread/INFO]: [org.eclipse.jetty.server.handler.ContextHandler] Started o.e.j.s.ServletContextHandler@4839694f{/,null,AVAILABLE}
[22:41:43] [Server thread/INFO]: [org.eclipse.jetty.server.AbstractConnector] Started ServerConnector@6a9b73a9{HTTP/1.1, (http/1.1)}{0.0.0.0:43500}
[22:41:43] [Server thread/INFO]: [org.eclipse.jetty.server.Server] Started Server@3dea9a3f{STARTING}[11.0.23,sto=0] @143126ms
[22:41:43] [Server thread/INFO]: [ForcePack] Started web server.
[22:41:43] [Server thread/INFO]: [ForcePack] Auto-generating resource pack hash.
[22:41:43] [Server thread/INFO]: [ForcePack] Size of resource pack: 0 MB
[22:41:43] [Server thread/INFO]: [ForcePack] Auto-generated resource pack hash: 88C6C32A2B7876B74B769C2B505FA94CAF85471D
[22:41:43] [Server thread/INFO]: [ForcePack] Performing version size check...
[22:41:43] [Server thread/INFO]: 1.8-1.15 (50 MB): Supported.
[22:41:43] [Server thread/INFO]: 1.16-1.17 (100 MB): Supported.
[22:41:43] [Server thread/INFO]: 1.18+ (250 MB): Supported.
[22:41:43] [Server thread/INFO]: Hash verification complete.
[22:41:43] [Server thread/INFO]: [ForcePack] Generated resource pack (http://45.59.171.117:43500/serve/88c6c32a2b7876b74b769c2b505fa94caf85471d.zip#88C6C32A2B7876B74B769C2B505FA94CAF85471D) for version all with id e91bc1b0-77ce-312a-a428-b7816ba36232
[22:41:43] [Server thread/INFO]: [ForcePack] Auto-generating resource pack hash.
[22:41:43] [Server thread/INFO]: [ForcePack] Size of resource pack: 0 MB
[22:41:43] [Server thread/INFO]: [ForcePack] Auto-generated resource pack hash: 3F7FC4434D8CAFC5D5B922D9484A1BCDC11F0D8F
[22:41:43] [Server thread/INFO]: [ForcePack] Performing version size check...
[22:41:43] [Server thread/INFO]: 1.8-1.15 (50 MB): Supported.
[22:41:43] [Server thread/INFO]: 1.16-1.17 (100 MB): Supported.
[22:41:43] [Server thread/INFO]: 1.18+ (250 MB): Supported.
[22:41:43] [Server thread/INFO]: Hash verification complete.
[22:41:43] [Server thread/INFO]: [ForcePack] Generated resource pack (http://45.59.171.117:43500/serve/3f7fc4434d8cafc5d5b922d9484a1bcdc11f0d8f.zip#3F7FC4434D8CAFC5D5B922D9484A1BCDC11F0D8F) for version all with id ce6ddf75-8a3f-315f-8f4e-ff7bab6cd71c
[22:41:43] [Server thread/INFO]: [ForcePack] Completed loading resource packs.
[22:41:43] [Server thread/INFO]: [EvenMoreFish] Detected that ItemsAdder has finished loading all items...
[22:41:43] [Server thread/INFO]: [EvenMoreFish] Reloading EMF.
[22:41:43] [Server thread/INFO]: [EvenMoreFish] Successfully reloaded all configurations
[22:41:44] [Server thread/INFO]: [EvenMoreFish] Loaded FishManager with 2 Rarities and 218 Fish.
[22:41:44] [Server thread/INFO]: [EvenMoreFish] Loaded 7 baits successfully.
[22:41:44] [Server thread/INFO]: [EvenMoreFish] Loaded RodManager with 1 Custom Rods.
[22:41:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[22:41:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[22:41:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[22:41:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[22:41:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[22:41:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[22:41:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.8]
[22:41:44] [Server thread/WARN]: [PlaceholderAPI] Task #7737 for PlaceholderAPI v2.11.6 generated an exception
java.lang.IllegalStateException: No supported plugin found
    at org.metadevs.buycraftapi.BuyCraftAPI.getProvider(BuyCraftAPI.java:46) ~[?:?]
    at org.metadevs.buycraftapi.BuyCraftAPI.canRegister(BuyCraftAPI.java:54) ~[?:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.expansion.manager.LocalExpansionManager.register(LocalExpansionManager.java:223) ~[PlaceholderAPI-2.11.6.jar:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.expansion.PlaceholderExpansion.register(PlaceholderExpansion.java:147) ~[PlaceholderAPI-2.11.6.jar:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.expansion.manager.LocalExpansionManager.register(LocalExpansionManager.java:193) ~[PlaceholderAPI-2.11.6.jar:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) ~[?:?]
    at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$registerAll$4(LocalExpansionManager.java:366) ~[PlaceholderAPI-2.11.6.jar:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.util.Futures.lambda$null$0(Futures.java:46) ~[PlaceholderAPI-2.11.6.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:481) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1163) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:312) ~[universe-1.21.8.jar:1.21.8-617c5f0]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[22:41:44] [Server thread/INFO]: Done (135.823s)! For help, type "help"
[22:41:44] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 17173ms or 343 ticks behind
[22:41:44] [Server thread/INFO]: [eco] Loaded eco
[22:41:44] [Server thread/INFO]: [EcoEnchants] Loaded EcoEnchants
[22:41:44] [Server thread/INFO]: [EcoBits] Loaded EcoBits
[22:41:45] [Server thread/INFO]: [EcoItems] Loaded EcoItems
[22:41:45] [Server thread/INFO]: [EcoCrates] Loaded EcoCrates
[22:41:45] [Server thread/INFO]: [Boosters] Loaded Boosters
[22:41:45] [Server thread/INFO]: [KermLibreforge] Loaded KermLibreforge
[22:41:45] [Server thread/INFO]: [EcoSkills] Loaded EcoSkills
[22:41:45] [Server thread/INFO]: [Actions] Loaded Actions
[22:41:45] [Server thread/INFO]: [Talismans] Loaded Talismans
[22:41:45] [Server thread/INFO]: [EcoScrolls] Loaded EcoScrolls
[22:41:45] [Server thread/INFO]: [StatTrackers] Loaded StatTrackers
[22:41:45] [Server thread/INFO]: [EcoPets] Loaded EcoPets
[22:41:45] [Server thread/INFO]: [EcoUnenchanter] Loaded EcoUnenchanter
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'bat_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'bat_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'chicken_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'chicken_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'fox_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'fox_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'mouse_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'mouse_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'spider_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'spider_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'fish_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'fish_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'shadow_moth_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'shadow_moth_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'cloud_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'cloud_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'automaton_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'automaton_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'dragon_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'dragon_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'rock_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'rock_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'ufo_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'ufo_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'wisp_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'wisp_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'dumbo_octopus_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'dumbo_octopus_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'luna_moth_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'luna_moth_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pegasus_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pegasus_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'tinkerer_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'tinkerer_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'golden_dragon_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'golden_dragon_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'crystal_friend_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'crystal_friend_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'mothership_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'mothership_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'inflamed_wisp_pet' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'inflamed_wisp_pet' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'harpoon_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'shepherd_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'sycophant_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'wisdom_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'deflection_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'magnetic_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'replenish_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'instability_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'bleed_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'kinetic_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'snipe_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'toxic_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'blast_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'finishing_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'plunder_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'warpdrive_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'aura_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'infernaltouch_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'slimejump_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'telekinesis_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'drift_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'manatap_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'thrive_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'swarmshot_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'inferno_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'slipstream_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'thor_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'drill_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'marking_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'vein_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'wyvern_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'exhume_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'serrated_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'sushi_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'atrophy_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'criticals_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'lumberjack_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'reforestation_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'prosperity_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'conductor_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'parry_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'soulbound_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'transfuse_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'bosshunter_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'fluxconversion_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'prospector_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'weakening_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'cleave_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'economical_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'proximity_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'splash_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'tripleshot_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'contagion_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'horde_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'rapid_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'streamlining_book' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_cactus' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_cactus' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_manta_ray' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_manta_ray' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_whale' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_whale' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_cactus_guy' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_cactus_guy' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_manta_ray_starry_night' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_manta_ray_starry_night' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_flying_whale' uses deprecated 'commands' buy option. Please switch to 'buy-effects'.
[22:41:46] [Server thread/WARN]: [EcoShop] Shop item 'pet_summer_flying_whale' uses deprecated 'sell.sell-message'. Please switch to 'sell-effects'.
[22:41:46] [Server thread/INFO]: [EcoShop] Loaded EcoShop
[22:41:46] [Server thread/INFO]: [libreforge] Loaded libreforge
[22:41:46] [Server thread/INFO]: [EvenMoreFish] Detected that HeadDatabase has finished loading...
[22:41:46] [Server thread/INFO]: [EvenMoreFish] Reloading EMF.
[22:41:46] [Server thread/INFO]: [EvenMoreFish] Successfully reloaded all configurations
[22:41:46] [Server thread/INFO]: [EvenMoreFish] Loaded FishManager with 2 Rarities and 218 Fish.
[22:41:46] [Server thread/INFO]: [EvenMoreFish] Loaded 7 baits successfully.
[22:41:46] [Server thread/INFO]: [EvenMoreFish] Loaded RodManager with 1 Custom Rods.
[22:41:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15.2-5b4752e]
[22:41:46] [Server thread/INFO]: [Quests] Successfully hooked into iConomyUnlocked economy.
[22:41:46] [Server thread/INFO]: [Quests] 49 task types have been registered.
[22:41:46] [Server thread/INFO]: [Quests] 10 quest items have been registered.
[22:41:46] [Server thread/INFO]: [Quests] 1686 quests have been registered.
[22:41:47] [Server thread/ERROR]: [PlayerParticles] Invalid effect name: 'Block Crumble'!
[22:41:47] [Server thread/ERROR]: [PlayerParticles] Invalid effect name: 'Falling Spore Blossom'!
[22:41:48] [Server thread/INFO]: [JetsRepairTokens] [STDOUT] 
[RepairToken] Detected version MC1_21 (nms v1_21_R1)
[22:41:48] [Server thread/INFO]: Aurora | Registered resolvers: eb:190, ei:170, mythicmobs:150, eco:140, ia:110, hdb:90, aurora:80
[22:41:49] [Server thread/INFO]: AuroraCrafting | -------------------------------------------
[22:41:49] [Server thread/INFO]: AuroraCrafting | Recipe book structure:
[22:41:49] [Server thread/INFO]: AuroraCrafting |   root
[22:41:49] [Server thread/INFO]: AuroraCrafting |     armor
[22:41:49] [Server thread/INFO]: AuroraCrafting |     fishmonger
[22:41:49] [Server thread/INFO]: AuroraCrafting |     foods
[22:41:49] [Server thread/INFO]: AuroraCrafting |     furniture
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_drawer
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_small_candlesticks
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_double_shelf
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_fence_corner
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_chairs
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_small_table
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_bookshelves
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_stools
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_cabinet
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_shelf
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_park_bench
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_fence
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_pride_flags
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_streetlights
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_thrones
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_large_candlesticks
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_cookware
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_workstations
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_table
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_couches
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_trash_can
[22:41:49] [Server thread/INFO]: AuroraCrafting |       furniture_paper
[22:41:49] [Server thread/INFO]: AuroraCrafting |     condensed_items
[22:41:49] [Server thread/INFO]: AuroraCrafting |     consumables
[22:41:49] [Server thread/INFO]: AuroraCrafting |     tools_and_weapons
[22:41:49] [Server thread/INFO]: AuroraCrafting |     talismans
[22:41:49] [Server thread/INFO]: AuroraCrafting |       talismans_brooches
[22:41:49] [Server thread/INFO]: AuroraCrafting |       talismans_rings
[22:41:49] [Server thread/INFO]: AuroraCrafting |       talismans_amulets
[22:41:49] [Server thread/INFO]: AuroraCrafting |     crafting_ingredients
[22:41:49] [Server thread/INFO]: AuroraCrafting |     blocks_and_resources
[22:41:49] [Server thread/INFO]: AuroraCrafting | -------------------------------------------
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:warping_shrimp using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:warping_shrimp in recipe: fishing_rod_end
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:male_anglerfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:male_anglerfish in recipe: fishing_rod_end
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:frilled_trilobite using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:frilled_trilobite in recipe: fishing_rod_end
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:muck_gar using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:muck_gar in recipe: fishing_rod_end
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:hairless_seapig using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:hairless_seapig in recipe: fishing_rod_end
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:red_bellied_piranha using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:red_bellied_piranha in recipe: fishing_rod_coral
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:tropical_clownfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:tropical_clownfish in recipe: fishing_rod_coral
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:golden_pleco using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:golden_pleco in recipe: fishing_rod_coral
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:coral_reef_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:coral_reef_fish in recipe: fishing_rod_coral
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:sparkling_payara using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:sparkling_payara in recipe: fishing_rod_coral
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:moon_jellyfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:moon_jellyfish in recipe: fishing_rod_banjo
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:werewolffish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:werewolffish in recipe: fishing_rod_banjo
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:small_siphonophore using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:small_siphonophore in recipe: fishing_rod_banjo
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:pink_scallop using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:pink_scallop in recipe: fishing_rod_banjo
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:juvenile_whale_shark using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:juvenile_whale_shark in recipe: fishing_rod_banjo
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:green_parapuzosia using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:green_parapuzosia in recipe: fishing_rod_alchemy
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:venomous_viperfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:venomous_viperfish in recipe: fishing_rod_alchemy
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:radioactive_anchovy using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:radioactive_anchovy in recipe: fishing_rod_alchemy
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:poisonous_lionfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:poisonous_lionfish in recipe: fishing_rod_alchemy
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:toxic_oarfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:toxic_oarfish in recipe: fishing_rod_alchemy
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:stone_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:stone_fish in recipe: fishing_rod_gemstone
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:silver_minnow using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:silver_minnow in recipe: fishing_rod_gemstone
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:unicorn_boxfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:unicorn_boxfish in recipe: fishing_rod_gemstone
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:golden_bayad using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:golden_bayad in recipe: fishing_rod_gemstone
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:chrome_chromis using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:chrome_chromis in recipe: fishing_rod_gemstone
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:red_herring using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:red_herring in recipe: fishing_rod_ice
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:blue_grenadier using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:blue_grenadier in recipe: fishing_rod_ice
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:gentle_squid using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:gentle_squid in recipe: fishing_rod_ice
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:dark_halibut using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:dark_halibut in recipe: fishing_rod_ice
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:black_and_yellow_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:black_and_yellow_fish in recipe: fishing_rod_ice
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:extinct_coelacanth using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:extinct_coelacanth in recipe: fishing_rod_sculk
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:blue_isopod using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:blue_isopod in recipe: fishing_rod_sculk
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:bioluminescent_crab using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:bioluminescent_crab in recipe: fishing_rod_sculk
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:dulled_rainbow_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:dulled_rainbow_fish in recipe: fishing_rod_sculk
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:small_siphonophore using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:small_siphonophore in recipe: fishing_rod_sculk
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:bichir using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:bichir in recipe: arid_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:leopard_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:leopard_fish in recipe: arid_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:tiger_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:tiger_fish in recipe: arid_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:peacock_cichlid using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:peacock_cichlid in recipe: arid_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:mudskipper using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:mudskipper in recipe: arid_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:grenadier using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:grenadier in recipe: cold_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:herring using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:herring in recipe: cold_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:vampire_squid using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:vampire_squid in recipe: cold_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:pollock using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:pollock in recipe: cold_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:blackfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:blackfish in recipe: cold_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:rainbow_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:rainbow_fish in recipe: end_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:anglerfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:anglerfish in recipe: end_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:goblin_shark using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:goblin_shark in recipe: end_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:isopod using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:isopod in recipe: end_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:tiny_blobfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:tiny_blobfish in recipe: end_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:alligator_gar using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:alligator_gar in recipe: freshwater_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:minnow using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:minnow in recipe: freshwater_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:alpha_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:alpha_fish in recipe: freshwater_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:nile_tilapia using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:nile_tilapia in recipe: freshwater_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:dwarf_puffer_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:dwarf_puffer_fish in recipe: freshwater_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:manta_ray using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:manta_ray in recipe: ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:mola_mola using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:mola_mola in recipe: ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:horseshoe_crab using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:horseshoe_crab in recipe: ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:stingray using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:stingray in recipe: ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:trilobite using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:trilobite in recipe: ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:arapaima using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:arapaima in recipe: tropical_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:pleco using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:pleco in recipe: tropical_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:blood_leech using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:blood_leech in recipe: tropical_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:piranha using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:piranha in recipe: tropical_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:payara using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:payara in recipe: tropical_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:blue_mahi_mahi using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:blue_mahi_mahi in recipe: warm_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:sea_scorpion using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:sea_scorpion in recipe: warm_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:yellow_bellied_sea_snake using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:yellow_bellied_sea_snake in recipe: warm_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:poisonous_lionfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:poisonous_lionfish in recipe: warm_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:crown_of_thorns_starfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:crown_of_thorns_starfish in recipe: warm_ocean_lure
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:barracuda_by_heart using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:barracuda_by_heart in recipe: hat_angler_helmet
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:parapuzosia using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:parapuzosia in recipe: hat_angler_helmet
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:betta_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:betta_fish in recipe: hat_angler_helmet
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:seahorse using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:seahorse in recipe: chestplate_angler_chestplate
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:brown_trout using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:brown_trout in recipe: chestplate_angler_chestplate
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:stone_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:stone_fish in recipe: chestplate_angler_chestplate
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:toothy_lamprey using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:toothy_lamprey in recipe: leggings_angler_leggings
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:tiny_pacific_octopus using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:tiny_pacific_octopus in recipe: leggings_angler_leggings
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:chromis using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:chromis in recipe: leggings_angler_leggings
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:pelican_eel using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:pelican_eel in recipe: boots_angler_boots
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:starfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:starfish in recipe: boots_angler_boots
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:tullimonstrum using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:tullimonstrum in recipe: boots_angler_boots
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:barb_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:barb_fish in recipe: hat_fisherman_hat
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:snail_snailfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:snail_snailfish in recipe: hat_fisherman_hat
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:ghostshark using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:ghostshark in recipe: hat_fisherman_hat
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:blobfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:blobfish in recipe: chestplate_fisherman_chestplate
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:snapping_turtle using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:snapping_turtle in recipe: chestplate_fisherman_chestplate
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:lionfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:lionfish in recipe: chestplate_fisherman_chestplate
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:whale_shark using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:whale_shark in recipe: leggings_fisherman_leggings
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:brown_shrooma using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:brown_shrooma in recipe: leggings_fisherman_leggings
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:green_land_shark using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:green_land_shark in recipe: leggings_fisherman_leggings
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:striped_discus_fish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:striped_discus_fish in recipe: boots_fisherman_boots
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:dumbo_octopus using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:dumbo_octopus in recipe: boots_fisherman_boots
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:osteostracan using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:osteostracan in recipe: boots_fisherman_boots
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:tuna using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:tuna in recipe: fish
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:alligator_gar using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:alligator_gar in recipe: crate_low_with_fish
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:tuna using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:tuna in recipe: crate_low_with_fish
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:carp using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:carp in recipe: crate_low_with_fish
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:sturgeon using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:sturgeon in recipe: crate_low_with_fish
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:barracuda using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:barracuda in recipe: barrel_with_fish
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:salmonder using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:salmonder in recipe: barrel_with_fish
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:barreleye using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:barreleye in recipe: barrel_with_fish
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:deep_bluegill using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:deep_bluegill in recipe: barrel_with_fish
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:crab using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:crab in recipe: trap_crab
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:crab using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:crab in recipe: trap_crab
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:crab using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:crab in recipe: trap_crab
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:crab using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:crab in recipe: trap_crab
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:crab using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:crab in recipe: trap_crab
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:sailfish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:sailfish in recipe: fish_hanging_post
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:yellowfin_tuna using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:yellowfin_tuna in recipe: fish_hanging_post
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:mahi_mahi using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:mahi_mahi in recipe: fish_hanging_post
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:barbed_fish_hook using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:barbed_fish_hook in recipe: fish_hanging_post
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Curio:fish_of_rope using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Curio:fish_of_rope in recipe: fish_hanging_post
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:ropefish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:ropefish in recipe: fishing_net
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:ropefish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:ropefish in recipe: fishing_net
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:ropefish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:ropefish in recipe: fishing_net
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:ropefish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:ropefish in recipe: fishing_net
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:ropefish using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:ropefish in recipe: fishing_net
[22:41:49] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint banner_bisexual in source: aurora/furniture/furniture_pride_flags, reason: Cannot invoke "dev.lone.itemsadder.api.CustomStack.getItemStack()" because the return value of "dev.lone.itemsadder.api.CustomStack.getInstance(String)" is null
[22:41:49] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint wall_flag_bisexual in source: aurora/furniture/furniture_pride_flags, reason: Cannot invoke "dev.lone.itemsadder.api.CustomStack.getItemStack()" because the return value of "dev.lone.itemsadder.api.CustomStack.getInstance(String)" is null
[22:41:49] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint hand_flag_bisexual in source: aurora/furniture/furniture_pride_flags, reason: Cannot invoke "dev.lone.itemsadder.api.CustomStack.getItemStack()" because the return value of "dev.lone.itemsadder.api.CustomStack.getInstance(String)" is null
[22:41:49] [Server thread/INFO]: AuroraCrafting | Failed to load blueprint hand_flag_asexual: Duplicate recipe ID, skipping... Source: aurora/furniture/furniture_pride_flags other sources: [aurora/furniture/furniture_pride_flags, aurora/furniture/furniture_pride_flags]
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:lobster using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:lobster in recipe: seafood_risotto
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:scallop using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:scallop in recipe: seafood_risotto
[22:41:49] [Server thread/INFO]: Aurora | Failed to resolve item: emf:Common:shrimp using AIR instead.
[22:41:49] [Server thread/INFO]: AuroraCrafting | Can't validate item id: emf:Common:shrimp in recipe: seafood_risotto
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 389 recipes for workbench: default
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 969 vanilla recipes for quick crafting in workbench: default
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 8 recipes for workbench: lapidary
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 28 recipes for workbench: fishmonger
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 0 recipes for workbench: alembic
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 585 recipes for workbench: furniture
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 23 recipes for workbench: cookware_trader
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 76 recipes for workbench: mortar_and_pestle
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 99 recipes for workbench: press
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 10 recipes for workbench: hot_plate
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-smithing-table
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 2 recipes for workbench: vanilla-furnace
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-blast-furnace
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-smoker
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-brewing-stand
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 0 recipes for workbench: vanilla-crafting-table
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-stone-cutter
[22:41:49] [Server thread/INFO]: AuroraCrafting | Registered 1 recipes for workbench: vanilla-campfire
[22:41:50] [Server thread/INFO]: [PrismaUtils] Loaded 15 warps from config.
[22:41:50] [Craft Scheduler Thread - 3961 - AuctionHouse/INFO]: [AH] Auto saved auction items & transactions
[22:41:51] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Total shop 0 has been purged, used 45ms
[22:41:51] [FancyLogger/INFO]: [FancyNpcs] (FancyNpcs-Skins-1) WARN: Could not fetch skin: invalid_image_url: Failed to find image from url: Request failed with status code 404
[22:41:59] [Server thread/INFO]: [ClueScrolls] ==============================================================
[22:41:59] [Server thread/INFO]: [ClueScrolls] Attempting to rehook any failed hooks...
[22:41:59] [Server thread/INFO]: [ClueScrolls] Successfully hooked into ItemsAdder.
[22:41:59] [Server thread/INFO]: [ClueScrolls] Successfully hooked into MythicMobs.
[22:41:59] [Server thread/INFO]: [ClueScrolls] Post load complete
[22:41:59] [Server thread/INFO]: [ClueScrolls] ==============================================================
[22:42:01] [Craft Scheduler Thread - 13234 - ArtMap/WARN]: [ArtMap] Map ID:1142 is corrupted! 
[22:42:01] [Craft Scheduler Thread - 13234 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.
[22:42:23] [Craft Scheduler Thread - 129 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[22:42:29] [Craft Scheduler Thread - 34676 - ArtMap/WARN]: [ArtMap] Map ID:1633 is corrupted! 
[22:42:29] [Craft Scheduler Thread - 34676 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.
[22:42:29] [Craft Scheduler Thread - 34676 - ArtMap/WARN]: [ArtMap] Map ID:1623 is corrupted! 
[22:42:29] [Craft Scheduler Thread - 34676 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.
[22:42:30] [Server thread/INFO]: ℹ Server Plugins (126):
[22:42:30] [Server thread/INFO]: Paper Plugins (5):
[22:42:30] [Server thread/INFO]:  - BKCommonLib, EcoBits, FancyHolograms, FancyNpcs, RoseStacker
[22:42:30] [Server thread/INFO]: Bukkit Plugins (121):
[22:42:30] [Server thread/INFO]:  - Actions, AdvancedPortals, AntiVillagerLag, ArmorStandTools, ArtMap, AuctionHouse, Aurora, AuroraCrafting, AxShulkers, AxVaults
[22:42:30] [Server thread/INFO]:  BetterHud, BetterRTP, BetterTownyFriends, Boosters, BreweryX, ChatGames-Premium, ChestSort, Chunky, ClueScrolls, CMILib
[22:42:30] [Server thread/INFO]:  Codex, CommandPanels, ConditionalEvents, DailyRewardsPlus, Denizen, Depenizen, eco, EcoCrates, EcoEnchants, EcoItems
[22:42:30] [Server thread/INFO]:  EcoPets, EcoScrolls, EcoShop, EcoSkills, EcoUnenchanter, eGlow, EvenMoreFish, EventStaffManager, ExecutableBlocks, ExecutableItems
[22:42:30] [Server thread/INFO]:  FastAsyncVoxelSniper, FastAsyncWorldEdit, ForcePack, FreedomChat, GSit, HeadDatabase, HexNicks, Hoarder, iConomyUnlocked, IncomeHistory
[22:42:30] [Server thread/INFO]:  InteractiveChat, InventoryRollbackPlus, InvSeePlusPlus, InvSeePlusPlus_Clear, InvSeePlusPlus_Give, InvUnload, ItemPredicateParser, ItemsAdder, ItsMyConfig, JetsRepairTokens
[22:42:30] [Server thread/INFO]:  Jobs, KermLibreforge, libreforge, LibsDisguises, LiteBans, Lootin, LuckPerms, MilkyPixelart, MobFarmManager, ModelEngine
[22:42:30] [Server thread/INFO]:  ModernShowcase, My_Worlds, MythicDungeons, MythicMobs, NBTAPI, packetevents, PickupFilter, PinataParty, PlaceholderAPI, PlayerParticles
[22:42:30] [Server thread/INFO]:  PlayerPoints, PlayerReferrals, PlayerWarps, PrismaFixes, PrismaFoodAddition, PrismaParticles, PrismaUtils, PrismaWelcome, PrismaXPStorage, ProtocolLib
[22:42:30] [Server thread/INFO]:  qsaddon-discount, qscompat-ecoenchants, qscompat-itemsadder, qscompat-towny, qssuite-limited, Quests, QuickShop-Hikari, QuickShopSearch, RealisticSeasons, ResetPoints
[22:42:30] [Server thread/INFO]:  RoseLoot, SafariNet, SCore, SeedBags, StatTrackers, SuperVanish, SurvivalInvisiframes, TAB-Bridge, Talismans, Topper
[22:42:30] [Server thread/INFO]:  Towny, TownyCamps, TownyHistories, Tweakin, Vault, VentureChat, ViaVersion, Vulcan, WorldGuard, WorldGuard-Towny
[22:42:30] [Server thread/INFO]:  WorldGuardExtraFlags
[22:42:54] [Craft Scheduler Thread - 53868 - ArtMap/WARN]: [ArtMap] Map ID:2107 is corrupted! 
[22:42:54] [Craft Scheduler Thread - 53868 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.
[22:43:09] [Craft Scheduler Thread - 65378 - ArtMap/WARN]: [ArtMap] Map ID:1641 is corrupted! 
[22:43:09] [Craft Scheduler Thread - 65378 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.
[22:43:15] [Craft Scheduler Thread - 70022 - ArtMap/WARN]: [ArtMap] Map ID:1372 is corrupted! 
[22:43:15] [Craft Scheduler Thread - 70022 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.
[22:43:35] [Craft Scheduler Thread - 85356 - ArtMap/WARN]: [ArtMap] Map ID:1418 is corrupted! 
[22:43:35] [Craft Scheduler Thread - 85356 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.
[22:43:48] [Craft Scheduler Thread - 95319 - ArtMap/WARN]: [ArtMap] Map ID:1711 is corrupted! 
[22:43:48] [Craft Scheduler Thread - 95319 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.
[22:43:53] [Craft Scheduler Thread - 99146 - ArtMap/WARN]: [ArtMap] Map ID:2072 is corrupted! 
[22:43:53] [Craft Scheduler Thread - 99146 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.
[22:43:54] [Craft Scheduler Thread - 99909 - ArtMap/WARN]: [ArtMap] Map ID:2108 is corrupted! 
[22:43:54] [Craft Scheduler Thread - 99909 - ArtMap/WARN]: [ArtMap] Repair flag set attempting to repair.