Paste #121255: DenizenMetaBot Auto-Repaste Of log From c4ptainf0xy

Date: 2024/03/24 08:03:14 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


[14:58:00] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[14:58:01] [ServerMain/INFO]: Loaded 1174 recipes
[14:58:01] [ServerMain/INFO]: Loaded 1271 advancements
[14:58:01] [Server thread/INFO]: Starting minecraft server version 1.20.4
[14:58:01] [Server thread/INFO]: Loading properties
[14:58:01] [Server thread/INFO]: This server is running Paper version git-Paper-461 (MC: 1.20.4) (Implementing API version 1.20.4-R0.1-SNAPSHOT) (Git: b600140)
[14:58:02] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:58:02] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:58:02] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[14:58:02] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 6 worker threads, and gen parallelism of 6 threads
[14:58:02] [Server thread/INFO]: Default game type: SURVIVAL
[14:58:02] [Server thread/INFO]: Generating keypair
[14:58:02] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:26015
[14:58:02] [Server thread/INFO]: Using epoll channel type
[14:58:02] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[14:58:02] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[14:58:03] [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
[14:58:03] [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
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[14:58:03] [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
[14:58:03] [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
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[14:58:03] [Server thread/INFO]: [AzLink] Folia support enabled successfully.
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 1 libraries... please wait
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[14:58:03] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.14.9/byte-buddy-1.14.9.jar
[14:58:03] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[14:58:05] [Server thread/INFO]: [KingdomsX] Checking libraries...
[14:58:05] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loading 8 libraries... please wait
[14:58:06] [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
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/flywaydb/flyway-core/9.19.4/flyway-core-9.19.4.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/flywaydb/flyway-mysql/9.19.4/flyway-mysql-9.19.4.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/commons-codec/commons-codec/1.16.0/commons-codec-1.16.0.jar
[14:58:06] [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
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/junit/junit/4.10/junit-4.10.jar
[14:58:06] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar
[14:58:06] [Server thread/WARN]: Legacy plugin SetLobby v1.3 does not specify an api-version.
[14:58:06] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[14:58:06] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Initializing Terra...
[14:58:06] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config.yml
[14:58:06] [Server thread/INFO]: [com.dfsek.terra.config.PluginConfigImpl] Loading config values from config.yml
[14:58:07] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading 37 Terra addons:
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]+ab60f14ff
        - [email protected]
        - [email protected]
        - [email protected]+ab60f14ff
[14:58:07] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Terra addons successfully loaded.
[14:58:07] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Finished initialization.
[14:58:07] [Server thread/WARN]: Legacy plugin ElytraRacing v1.5.3.18 does not specify an api-version.
[14:58:07] [Server thread/INFO]: [AngelChest] Hooked into WorldGuard 7.0.9+5934e49
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [AnimatedArchitecture] Loading 3 libraries... please wait
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [AnimatedArchitecture] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.12/fastutil-8.5.12.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [AnimatedArchitecture] Loaded library /home/container/libraries/com/alibaba/fastjson/2.0.31/fastjson-2.0.31.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [AnimatedArchitecture] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2-extension/2.0.31/fastjson2-extension-2.0.31.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [AnimatedArchitecture] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2/2.0.31/fastjson2-2.0.31.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [AnimatedArchitecture] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.14.4/byte-buddy-1.14.4.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loading 13 libraries... please wait
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/googlecode/concurrentlinkedhashmap/concurrentlinkedhashmap-lru/1.4.2/concurrentlinkedhashmap-lru-1.4.2.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/io/timeandspace/smoothie-map/2.0.2/smoothie-map-2.0.2.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/io/timeandspace/jpsg-core/1.4/jpsg-core-1.4.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] 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
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/zeroturnaround/zt-zip/1.14/zt-zip-1.14.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.6.6/slf4j-api-1.6.6.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/rhino/js/1.7R2/js-1.7R2.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/bsf/bsf/2.4.0/bsf-2.4.0.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/container/libraries/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar
[14:58:07] [Server thread/ERROR]: Fatal error trying to convert Iris v3.2.0-1.19.2-1.20.4:com/volmit/iris/Iris.class
java.lang.ArrayIndexOutOfBoundsException: Index 13602 out of bounds for length 10533
    at org.objectweb.asm.ClassReader.<init>(ClassReader.java:219) ~[asm-9.5.jar:9.5]
    at org.objectweb.asm.ClassReader.<init>(ClassReader.java:180) ~[asm-9.5.jar:9.5]
    at org.objectweb.asm.ClassReader.<init>(ClassReader.java:166) ~[asm-9.5.jar:9.5]
    at org.bukkit.craftbukkit.v1_20_R3.util.Commodore.convert(Commodore.java:156) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.util.CraftMagicNumbers.processClass(CraftMagicNumbers.java:412) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:220) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.lang.Class.forName(Class.java:513) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:123) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:507) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:58:07] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'Iris-3.2.0-1.19.2-1.20.4.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.ClassFormatError: Truncated class file
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:127) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.loadPlugins(CraftServer.java:507) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassFormatError: Truncated class file
    at java.lang.ClassLoader.defineClass1(Native Method) ~[?:?]
    at java.lang.ClassLoader.defineClass(ClassLoader.java:1027) ~[?:?]
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:243) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.lang.Class.forName(Class.java:513) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:78) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:123) ~[paper-1.20.4.jar:git-Paper-461]
    ... 9 more
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loading 1 libraries... please wait
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loaded library /home/container/libraries/dev/dejvokep/boosted-yaml-spigot/1.3/boosted-yaml-spigot-1.3.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loading 2 libraries... please wait
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/8.0.33/mysql-connector-j-8.0.33.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/org/mariadb/jdbc/mariadb-java-client/3.1.4/mariadb-java-client-3.1.4.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/com/github/waffle/waffle-jna/3.2.0/waffle-jna-3.2.0.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/org/slf4j/jcl-over-slf4j/1.7.36/jcl-over-slf4j-1.7.36.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[14:58:07] [Server thread/INFO]: [SpigotLibraryLoader] [RentIt] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.23.0/checker-qual-3.23.0.jar
[14:58:07] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.3
[14:58:07] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.3 is now loaded. Registering protocol transformers and injecting...
[14:58:07] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[14:58:08] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[14:58:08] [Server thread/INFO]: [ViaBackwards] Loading translations...
[14:58:08] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[14:58:08] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.121
[14:58:08] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[14:58:08] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
[14:58:09] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.9.2-SNAPSHOT-697;5e234a7
[14:58:12] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@281a17a6]
[14:58:12] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[14:58:12] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.20.4-v3
[14:58:15] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[14:58:15] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.20.4-v3
[14:58:15] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.6
[14:58:15] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.2
[14:58:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[14:58:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[14:58:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[14:58:15] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[14:58:15] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3369)
[14:58:15] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.6.1-SNAPSHOT-3261dfe4
[14:58:15] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[14:58:15] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[14:58:15] [Server thread/INFO]: [SCore] Loading server plugin SCore v4.24.3.23
[14:58:15] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.5
[14:58:15] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+73-2cb0af0
[14:58:15] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.45
[14:58:15] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v6.24.3.23
[14:58:15] [Server thread/INFO]: [VendingMachines] Loading server plugin VendingMachines v1.5.5
[14:58:15] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.4.3
[14:58:15] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.5.2
[14:58:15] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[14:58:15] [Server thread/INFO]: [AzLink] Loading server plugin AzLink v1.3.4
[14:58:15] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+73-2cb0af0
[14:58:15] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.3-beta-13
[14:58:15] [Thread-14/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[14:58:15] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.2.3
[14:58:15] [Server thread/INFO]: [PlasmoVoice] Loading server plugin PlasmoVoice v2.0.4
[14:58:15] [Server thread/INFO]: [GPS] Loading server plugin GPS v2.19.27
[14:58:15] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+73-2cb0af0
[14:58:15] [Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v3.6.5
[14:58:15] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.27.0
[14:58:15] [Server thread/INFO]: [AuthMe] Loading server plugin AuthMe v5.6.0-beta2-b2453
[14:58:15] [Server thread/INFO]: [zMenu] Loading server plugin zMenu v1.0.2.8
[14:58:15] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.2
[14:58:15] [Server thread/INFO]: [PlasmoVoiceAddon] Loading server plugin PlasmoVoiceAddon v1.1.0
[14:58:15] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.9.5
[14:58:15] [Server thread/INFO]: [Quests] Loading server plugin Quests v5.0.1-b454
[14:58:15] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.9.0
[14:58:15] [Server thread/INFO]: [OBTeam] Loading server plugin OBTeam v1.3
[14:58:15] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.49
[14:58:15] [Server thread/INFO]: [KingdomsX] Loading server plugin Kingdoms v1.16.20.5
[14:58:16] [Server thread/INFO]: [KingdomsX] Successfully registered WorldGuard flags.
[14:58:16] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.2
[14:58:16] [Server thread/INFO]: [RTUBiomeLib] Loading server plugin RTUBiomeLib v1.9.0
[14:58:16] [Server thread/INFO]: [ExecutableLevers] Loading server plugin ExecutableLevers v1.23.10.25
[14:58:16] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v3.15.3 b834
[14:58:16] [Server thread/INFO]: [zDrawer] Loading server plugin zDrawer v1.0.6
[14:58:16] [Server thread/INFO]: [AdvancedJoinCommands] Loading server plugin AdvancedJoinCommands v1.0.0
[14:58:16] [Server thread/INFO]: [EvenMoreFish] Loading server plugin EvenMoreFish v1.6.11.17
[14:58:16] [Server thread/INFO]: [BoomBox] Loading server plugin BoomBox v2.0
[14:58:16] [Server thread/INFO]: [YamipaPlugin] Loading server plugin YamipaPlugin v1.3.1
[14:58:16] [Server thread/INFO]: [InventorySaver] Loading server plugin InventorySaver v3.8.4-VERSION-1.20
[14:58:16] [Server thread/INFO]: [TreeAssist] Loading server plugin TreeAssist v7.3.51
[14:58:16] [Server thread/INFO]: [TreeAssist] Loading main config file: /config.yml
[14:58:16] [Server thread/INFO]: [FFMpegAPI] Loading server plugin FFMpegAPI v1.0.0
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[14:58:16] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[14:58:16] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[14:58:16] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[14:58:16] [Server thread/INFO]: [SetLobby] Loading server plugin SetLobby v1.3
[14:58:16] [Server thread/INFO]: [HiddenArmor] Loading server plugin HiddenArmor v1.1.2
[14:58:16] [Server thread/INFO]: [Anvil Formatting] Loading server plugin AnvilFormatting v1.0.4-1.17+
[14:58:16] [Server thread/INFO]: [BetterRevive] Loading server plugin BetterRevive v0.9.1-BETA
[14:58:16] [Server thread/INFO]: [BetterRevive] Inventory title with support for more than 32 characters. Skipping..
[14:58:16] [Server thread/INFO]: [BetterRevive] Hex colors are available! Ready for RGB..
[14:58:16] [Server thread/INFO]: [BetterRevive] Old constructor for HoverEvent found! Using it..
[14:58:16] [Server thread/INFO]: [BetterRevive] New sendTitle method found! Using it..
[14:58:16] [Server thread/INFO]: [BetterRevive] New setUnbreakable method found! Using it..
[14:58:16] [Server thread/INFO]: [BetterRevive] New isUnbreakable method found! Using it..
[14:58:16] [Server thread/INFO]: [BetterRevive] WorldGuard found! Registering custom flag(s)..
[14:58:16] [Server thread/INFO]: [BetterRevive] WorldGuard v7.x or newer detected. Using new methods..
[14:58:16] [Server thread/INFO]: [BetterRevive] [WorldGuard] Successfully registered 'betterrevive-can-bleed' flag!
[14:58:16] [Server thread/INFO]: [Cannons] Loading server plugin Cannons v2.5.12
[14:58:16] [Server thread/INFO]: [Vegas] Loading server plugin Vegas v2.0
[14:58:16] [Server thread/INFO]: [ArmorStandEditor] Loading server plugin ArmorStandEditor v1.5.4
[14:58:16] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.5.3
[14:58:16] [Server thread/INFO]: [CraftyVehicles] Loading server plugin CraftyVehicles v1.0.3
[14:58:16] [Server thread/INFO]: [CosmeticsCore] Loading server plugin CosmeticsCore v1.2.3c
[14:58:16] [Server thread/INFO]: [NoPortals] Loading server plugin NoPortals v2.2
[14:58:16] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.7.3
[14:58:16] [Server thread/INFO]: [TutorialCreator] Loading server plugin TutorialCreator v1.26.2
[14:58:16] [Server thread/INFO]: [DirectionalBlock] Loading server plugin DirectionalBlock v1.4.1
[14:58:16] [Server thread/INFO]: [Terra] Loading server plugin Terra v6.4.3-BETA+ab60f14ff
[14:58:16] [Server thread/INFO]: [AutoPluginLoader] Loading server plugin AutoPluginLoader v1.3.1
[14:58:16] [Server thread/INFO]: [SimpleStack] Loading server plugin SimpleStack v1.3.8
[14:58:16] [Server thread/INFO]: [Arceon] Loading server plugin Arceon v0.3.7_1.15+
[14:58:16] [Server thread/INFO]: [AutoCraft] Loading server plugin AutoCraft v1.0.4
[14:58:16] [Server thread/INFO]: [UltraRepair] Loading server plugin UltraRepair v4.1.6
[14:58:16] [Server thread/INFO]: [OpenRP] Loading server plugin OpenRP v2.3.5
[14:58:16] [Server thread/INFO]: [ElytraRacing] Loading server plugin ElytraRacing v1.5.3.18
[14:58:16] [Server thread/INFO]: [ExecutableEvents] Loading server plugin ExecutableEvents v2.24.3.23
[14:58:16] [Server thread/INFO]: [SuperHoppers] Loading server plugin SuperHoppers v1.4.3
[14:58:16] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v3.7.1
[14:58:16] [Server thread/INFO]: [AngelChest] Loading server plugin AngelChest v11.0.1
[14:58:16] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
[14:58:16] [Server thread/INFO]: [CraftyVehiclesModelBuilder] Loading server plugin CraftyVehiclesModelBuilder v1.0.0
[14:58:16] [Server thread/INFO]: [pv-addon-broadcast] Loading server plugin pv-addon-broadcast v1.0.1
[14:58:16] [Server thread/INFO]: [BetterBackpacks] Loading server plugin BetterBackpacks v1.3-BETA-PRO
[14:58:16] [Server thread/INFO]: [BetterBackpacks] New setOwningPlayer method is available!
[14:58:16] [Server thread/INFO]: [BetterBackpacks] Old ItemStack constructor is available!
[14:58:16] [Server thread/INFO]: [BetterBackpacks] Inventory title with support for more than 32 characters. Skipping..
[14:58:16] [Server thread/INFO]: [BetterBackpacks] Hex colors are available! Ready for RGB..
[14:58:16] [Server thread/INFO]: [BetterBackpacks] Old constructor for HoverEvent found! Using it..
[14:58:16] [Server thread/INFO]: [BetterBackpacks] New sendTitle method found! Using it..
[14:58:16] [Server thread/INFO]: [BetterBackpacks] New setUnbreakable method found! Using it..
[14:58:16] [Server thread/INFO]: [BetterBackpacks] New isUnbreakable method found! Using it..
[14:58:16] [Server thread/INFO]: [BetterBackpacks] WorldGuard found! Registering custom flag(s)..
[14:58:16] [Server thread/INFO]: [BetterBackpacks] WorldGuard v7.x or newer detected. Using new methods..
[14:58:16] [Server thread/INFO]: [BetterBackpacks] [WorldGuard] Successfully registered 'betterbackpacks-can-use-backpack' flag!
[14:58:16] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[14:58:16] [Server thread/INFO]: [pv-addon-sculk] Loading server plugin pv-addon-sculk v1.0.0
[14:58:16] [Server thread/INFO]: [JetsMinions] Loading server plugin JetsMinions v7.9.10
[14:58:16] [Server thread/INFO]: [EmployMe] Loading server plugin EmployMe v1.2.3
[14:58:16] [Server thread/INFO]: [Interactions] Loading server plugin Interactions v2.3.1
[14:58:16] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v4.1.2
[14:58:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcpets [1.0.0]
[14:58:16] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[14:58:16] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[14:58:16] [Server thread/INFO]: [MCPets] : mcpets-dismount-flying flag registered successfully !
[14:58:16] [Server thread/INFO]: [MCPets] : mcpets-pet-player-damage flag registered successfully !
[14:58:16] [Server thread/INFO]: [ExecutableBlocks] Loading server plugin ExecutableBlocks v4.24.3.23
[14:58:16] [Server thread/INFO]: [CitizensCMD] Loading server plugin CitizensCMD v2.7.0
[14:58:16] [Server thread/INFO]: [Journey] Loading server plugin Journey v0.1.0-beta
[14:58:16] [Server thread/INFO]: [AnimatedArchitecture] Loading server plugin AnimatedArchitecture v0.5
[14:58:16] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.2.9.0
[14:58:16] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[14:58:16] [Server thread/INFO]: [RealDualWield] Loading server plugin RealDualWield v1.1.37
[14:58:16] [Server thread/INFO]: [CinematicStudio] Loading server plugin CinematicStudio v1.4.4
[14:58:16] [Server thread/INFO]: [AntiCombatLog] Loading server plugin AntiCombatLog v2.6.0
[14:58:16] [Server thread/INFO]: [DungeonMMO] Loading server plugin DungeonMMO v2.2.3
[14:58:16] [Server thread/INFO]: [ItemJoin] Loading server plugin ItemJoin v6.0.5-RELEASE-b928
[14:58:16] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v3.9.47
[14:58:16] [Server thread/INFO]: [RAMCleanerPLUS] Loading server plugin RAMCleanerPLUS v2.0.8
[14:58:16] [Server thread/INFO]: [InteractionVisualizer] Loading server plugin InteractionVisualizer v1.18.8.0
[14:58:16] [Server thread/INFO]: [PlayerKits] Loading server plugin PlayerKits v2.27.1
[14:58:16] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.3
[14:58:16] [Server thread/INFO]: [SmoothTimber] Loading server plugin SmoothTimber v1.25.0
[14:58:16] [Server thread/INFO]: [BigDoorsOpener] Debug logger initialized. Log Level: INFO
[14:58:16] [Server thread/INFO]: [BigDoorsOpener] Loading server plugin BigDoorsOpener v2.5.2
[14:58:16] [Server thread/INFO]: [CustomCrops] Loading server plugin CustomCrops v3.4.3.1
[14:58:16] [Server thread/INFO]: [OreRegenerator] Loading server plugin OreRegenerator v2.3.8
[14:58:16] [Server thread/INFO]: [SimpleGlow] Loading server plugin SimpleGlow v2.0
[14:58:16] [Server thread/INFO]: [Aurora] Loading server plugin Aurora v5.7
[14:58:16] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.12
[14:58:16] [Server thread/INFO]: [NekoTraps] Loading server plugin NekoTraps v1.4.8
[14:58:16] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v7.3
[14:58:16] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[14:58:16] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[14:58:16] [Server thread/INFO]: [PlayerParticlesPremium] Loading server plugin PlayerParticlesPremium v1.0.0-ALPHA
[14:58:16] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.0.0-SNAPSHOT
[14:58:16] [Server thread/INFO]: [BigDoorsPhysics] Loading server plugin BigDoorsPhysics v2.4.2
[14:58:16] [Server thread/INFO]: [DisableSignEdit] Loading server plugin DisableSignEdit v1.1.1
[14:58:16] [Server thread/INFO]: [RentIt] Loading server plugin RentIt v2.9.2
[14:58:16] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:58:16] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.121
[14:58:19] [Server thread/INFO]:         __    
[14:58:19] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.121
[14:58:19] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[14:58:19] [Server thread/INFO]: 
[14:58:19] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:58:20] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[14:58:22] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:58:22] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:58:22] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 6162ms)
[14:58:22] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[14:58:23] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[14:58:23] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[14:58:23] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[14:58:23] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[14:58:23] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
[14:58:23] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.9.2-SNAPSHOT-697;5e234a7
[14:58:23] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[14:58:23] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[14:58:23] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[14:58:23] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[14:58:23] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R3.PaperweightFaweAdapter as the Bukkit adapter
[14:58:24] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.20.4-v3
[14:58:24] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paper (git-Paper-461) : v1_20_R3 (Minecraft 1.20.4)
[14:58:24] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[14:58:24] [ForkJoinPool.commonPool-worker-21/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 1 build(s) out of date.
You are running build 697, the latest version is build 698.
Update at https://www.spigotmc.org/resources/13932/
[14:58:25] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[14:58:26] [Server thread/INFO]: [BKCommonLib] I...I forgot an exclamation mark...*rages internally*
[14:58:26] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.20.4-v3 (build: 1673) enabled! (2.76s)
[14:58:26] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.5
[14:58:27] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.45
[14:58:27] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[14:58:27] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[14:58:27] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[14:58:27] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[14:58:27] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[14:58:27] [Server thread/INFO]: [NexEngine] Plugin loaded in 96 ms!
[14:58:27] [Server thread/INFO]: [PlasmoVoice] Enabling PlasmoVoice v2.0.4
[14:58:27] [Server thread/INFO]: [PlasmoVoice] LuckPerms permissions listener attached
[14:58:27] [Server thread/INFO]: [PlasmoVoice] pv-addon-broadcast v1.0.1 by Apehum loaded
[14:58:27] [Server thread/INFO]: [PlasmoVoice] pv-addon-sculk v1.0.0 by Apehum loaded
[14:58:27] [Server thread/INFO]: [PlasmoVoice] UDP server is started on /[0:0:0:0:0:0:0:0]:26015
[14:58:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plasmovoice [2.0.4]
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v3.6.5
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Powered by: NexEngine
[14:58:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [3.6.5]
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Tiers Loaded: 4
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: auto_reel
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_catch
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: seasoned_angler
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: survivalist
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_drowned
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: river_master
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blast_mining
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: divine_touch
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: silk_chest
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: telekinesis
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: treasures
[14:58:27] [pool-25-thread-1/WARN]: [PlasmoVoice] New version available 2.0.8: https://cdn.modrinth.com/data/1bZhdhsH/versions/TEM54tQl/PlasmoVoice-Paper-2.0.8.jar
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: tunnel
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: veinminer
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blindness
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusion
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cutter
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_death
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exhaust
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_aspect
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: paralyze
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rocket
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: surprise
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: swiper
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: temper
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thrifty
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thunder
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampire
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: venom
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: wither
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cold_steel
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_shield
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: elemental_protection
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: fire_shield
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: self_destruction
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: stopping_force
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bomber
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusing_arrows
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: dragonfire_arrows
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: electrified_arrows
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ender_bow
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: explosive_arrows
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flare
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ghast
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hover
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sniper
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: poisoned_arrows
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampiric_arrows
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: withered_arrows
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_arrows
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_cloak
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_fragility
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_mediocrity
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: soulbound
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: restore
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 78
[14:58:27] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 312 ms!
[14:58:27] [Server thread/INFO]: [Anvil Formatting] Enabling AnvilFormatting v1.0.4-1.17+
[14:58:27] [Server thread/INFO]: [Anvil Formatting] ForceItalic Disabled!
[14:58:27] [Server thread/INFO]: [Anvil Formatting] EnableHexSupport Disabled! Please note that in a future update Hex Support might be enabled by default!
[14:58:27] [Server thread/INFO]: [Terra] Enabling Terra v6.4.3-BETA+ab60f14ff
[14:58:27] [Server thread/INFO]: [com.dfsek.terra.bukkit.TerraBukkitPlugin] Running on Minecraft version v1.20.3 with server implementation Paper.
[14:58:27] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config packs...
[14:58:27] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: default.zip
[14:58:30] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "OVERWORLD:OVERWORLD"
[14:58:32] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "OVERWORLD:OVERWORLD" v1.3.4 by Astrash, Sancires, Aureus in 4397.286233ms.
[14:58:32] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loaded packs.
[14:58:32] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.AwfulBukkitHacks] Hacking biome registry...
[14:58:32] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_20_R3.AwfulBukkitHacks] Doing tag garbage....
[14:58:32] [Server thread/INFO]: [pv-addon-broadcast] Enabling pv-addon-broadcast v1.0.1
[14:58:32] [Server thread/INFO]: [pv-addon-sculk] Enabling pv-addon-sculk v1.0.0
[14:58:32] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v6.0.5-RELEASE-b928
[14:58:32] [Server thread/INFO]: Preparing level "world"
[14:58:33] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[14:58:33] [Server thread/INFO]: Time elapsed: 159 ms
[14:58:33] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[14:58:34] [Server thread/INFO]: Time elapsed: 784 ms
[14:58:34] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[14:58:34] [Server thread/INFO]: Time elapsed: 33 ms
[14:58:34] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.3
[14:58:34] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.3/1.20.4 (765)
[14:58:34] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[14:58:34] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[14:58:34] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[14:58:35] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[14:58:35] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[14:58:35] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[14:58:35] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[14:58:35] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[14:58:35] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[14:58:35] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:58:35] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.20.4-v3
[14:58:35] [Server thread/INFO]: [My_Worlds] Loading world 'model-builder' using chunk generator: 'CraftyVehiclesModelBuilder'
[14:58:35] [Server thread/ERROR]: [My_Worlds] World 'model-builder' could not be created because the chunk generator 'CraftyVehiclesModelBuilder' was not found!
[14:58:35] [Server thread/ERROR]: [My_Worlds] Failed to (pre)load world: model-builder
[14:58:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.20.4-v3]
[14:58:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.20.4-v3]
[14:58:35] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[14:58:35] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.20.4-v3 (build: 268) enabled! (0.308s)
[14:58:35] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.6
[14:58:36] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.2
[14:58:36] [Server thread/INFO]: [NBTAPI] Adding listeners...
[14:58:36] [Server thread/INFO]: [NBTAPI] Checking bindings...
[14:58:36] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[14:58:36] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[14:58:36] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[14:58:36] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[14:58:36] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[14:58:36] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[14:58:36] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[14:58:36] [Server thread/INFO]: --------------------
[14:58:36] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[14:58:36] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[14:58:36] [Server thread/INFO]: --------------------
[14:58:36] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3369)
[14:58:36] [Server thread/INFO]: [Citizens] Loading external libraries
[14:58:37] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[14:58:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[14:58:37] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[14:58:37] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[14:58:37] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.6.1-SNAPSHOT-3261dfe4
[14:58:37] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.4)...
[14:58:37] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[14:58:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[14:58:38] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[14:58:38] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[14:58:38] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[14:58:38] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[14:58:38] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/data
[14:58:38] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/data/worlds
[14:58:40] [Server thread/INFO]: [MythicMobs] Loading Packs...
[14:58:40] [Server thread/INFO]: [MythicMobs] Loading Items...
[14:58:40] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[14:58:40] [Server thread/INFO]: [MythicMobs] Loading Skills...
[14:58:40] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[14:58:40] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[14:58:40] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[14:58:40] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[14:58:40] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[14:58:40] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[14:58:40] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[14:58:40] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[14:58:40] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[14:58:40] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[14:58:40] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[14:58:40] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[14:58:40] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[14:58:40] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.6.1 ( build 3261dfe4 ) has been successfully loaded!
[14:58:40] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[14:58:40] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[14:58:40] [Server thread/INFO]: [SCore] Enabling SCore v4.24.3.23
[14:58:40] [Server thread/INFO]: ================ SCore ================
[14:58:40] [Server thread/INFO]: SCore Version of the server git-Paper-461 (MC: 1.20.4) !
[14:58:40] [Server thread/INFO]: SCore ExecutableItems hooked !  (6.24.3.23) Load After
[14:58:40] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (4.24.3.23) Load After
[14:58:40] [Server thread/INFO]: SCore ExecutableEvents hooked !  (2.24.3.23) Load After
[14:58:40] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.5)  Load Before
[14:58:40] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.9+5934e49)  Load Before
[14:58:40] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[14:58:40] [Server thread/INFO]: SCore CoreProtect hooked !  (22.2)  Load Before
[14:58:40] [Server thread/INFO]: SCore ProtocolLib hooked !
[14:58:40] [Server thread/INFO]: SCore Locale setup: EN
[14:58:40] [Server thread/INFO]: SCore NBTAPI hooked !  (2.12.2)  Load Before
[14:58:40] [Server thread/INFO]: SCore MythicMobs hooked !  (5.6.1-SNAPSHOT-3261dfe4)  Load Before
[14:58:40] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.6)  Load Before
[14:58:40] [Server thread/INFO]: SCore ItemsAdder hooked !  (3.6.3-beta-13) Load After
[14:58:40] [Server thread/INFO]: SCore TAB hooked !  (4.1.2) Load After
[14:58:40] [Server thread/INFO]: SCore Terra hooked !  (6.4.3-BETA+ab60f14ff)  Load Before
[14:58:40] [Server thread/INFO]: SCore JetsMinions hooked !  (7.9.10) Load After
[14:58:40] [Server thread/INFO]: SCore WorldEdit hooked !  (2.9.2-SNAPSHOT-697;5e234a7)  Load Before
[14:58:40] [Server thread/INFO]: SCore Language of the editor setup on EN
[14:58:40] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[14:58:40] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[14:58:40] [Server thread/INFO]: SCore Connection to the db...
[14:58:40] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[14:58:40] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[14:58:40] [Server thread/INFO]: SCore Creating table Commands if not exists...
[14:58:40] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[14:58:40] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[14:58:40] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[14:58:40] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[14:58:40] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[14:58:41] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[14:58:41] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[14:58:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[14:58:41] [Server thread/INFO]: ================ SCore ================
[14:58:41] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+73-2cb0af0
[14:58:41] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[14:58:41] [Server thread/INFO]: [Essentials] No kits found to migrate.
[14:58:41] [Server thread/INFO]: [Essentials] Starting Essentials ban format conversion
[14:58:41] [Server thread/INFO]: [Essentials] Attempting to migrate ignore list to UUIDs
[14:58:41] [Server thread/INFO]: [Essentials] Attempting to migrate legacy userdata keys to Configurate
[14:58:41] [Server thread/INFO]: [Essentials] Loaded 39095 items from items.json.
[14:58:41] [Server thread/INFO]: [Essentials] Using locale en_US
[14:58:41] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[14:58:42] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[14:58:42] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[14:58:42] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[14:58:42] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v6.24.3.23
[14:58:42] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[14:58:42] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[14:58:42] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[14:58:43] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: GRASS (Item: Prem_Grass_Cutter).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[14:58:43] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 105
[14:58:43] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[14:58:43] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[14:58:43] [Server thread/INFO]: [VendingMachines] Enabling VendingMachines v1.5.5
[14:58:43] [Server thread/INFO]: [VendingMachines] [STDOUT]                                 
[14:58:43] [Server thread/WARN]: Nag author(s): '[]' of 'VendingMachines v1.5.5' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:43] [Server thread/INFO]: [VendingMachines] [STDOUT] VendingMachines v1.5.5 is loading...
[14:58:43] [Server thread/INFO]: [VendingMachines] Using ModelEngine! :D
[14:58:43] [Server thread/INFO]: [VendingMachines] VMs ModelEngine config files for VMs found!
[14:58:43] [Server thread/INFO]: [VendingMachines] Using ItemsAdder! :D
[14:58:43] [Server thread/INFO]: [VendingMachines] vending_machine IA content found!
[14:58:43] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.4.3
[14:58:43] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.5.2
[14:58:44] [Server thread/INFO]: Server version: v1_20_R3 - 1.20.4 - paper  git-Paper-461 (MC: 1.20.4)
[14:58:44] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[14:58:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.4.5.2]
[14:58:44] [Server thread/INFO]: PlaceholderAPI hooked.
[14:58:44] [Server thread/INFO]: Updated (EN) language file. Took 33ms
[14:58:44] [Server thread/INFO]: [AzLink] Enabling AzLink v1.3.4
[14:58:44] [Server thread/WARN]: [AzLink] Invalid configuration, please use '/azlink' to setup the plugin.
[14:58:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: azlink [1.3.4]
[14:58:44] [Server thread/INFO]: [AzLink] PlaceholderAPI expansion enabled
[14:58:44] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+73-2cb0af0
[14:58:44] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[14:58:44] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.3-beta-13
[14:58:44] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[14:58:44] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[14:58:45] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.3-beta-13
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.45
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-461 (MC: 1.20.4)
                                               
[14:58:45] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[14:58:45] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.2.3
[14:58:45] [Server thread/INFO]: ------------- Jobs -------------
[14:58:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.2.3]
[14:58:45] [Server thread/INFO]: PlaceholderAPI hooked.
[14:58:45] [Server thread/INFO]: Connected to database (SqLite)
[14:58:45] [Server thread/INFO]: Loaded 8 titles
[14:58:45] [Server thread/INFO]: Loaded 69 protected blocks timers
[14:58:46] [Server thread/INFO]: Loaded 1403 custom item names
[14:58:46] [Server thread/INFO]: Loaded 81 custom entity names
[14:58:46] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[14:58:46] [Server thread/INFO]: Loaded 38 custom enchant names
[14:58:46] [Server thread/INFO]: Loaded 43 custom enchant names
[14:58:46] [Server thread/INFO]: Loaded 16 custom color names
[14:58:46] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[14:58:46] [Server thread/INFO]: Loaded 4 shop items
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Brewer
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Explorer
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Fisherman
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Digger
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Enchanter
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Farmer
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Crafter
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Hunter
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Miner
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Builder
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[14:58:46] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[14:58:46] [Server thread/INFO]: Loaded 12 jobs
[14:58:46] [Server thread/INFO]: Loaded 0 boosted items
[14:58:46] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[14:58:46] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[14:58:46] [Server thread/INFO]: WorldGuard detected.
[14:58:46] [Server thread/INFO]: MythicMobs 5.x detected.
[14:58:46] [Server thread/INFO]: [Jobs] MythicMobs was found - Enabling capabilities.
[14:58:46] [Server thread/INFO]: Plugin has been enabled successfully.
[14:58:46] [Server thread/INFO]: ------------------------------------
[14:58:46] [Server thread/INFO]: [GPS] Enabling GPS v2.19.27
[14:58:46] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin GPS tried to register listener for unknown packet NAMED_ENTITY_SPAWN[PLAY, SERVER, 235, classNames: [net.minecraft.network.protocol.game.PacketPlayOutNamedEntitySpawn, net.minecraft.network.protocol.game.ClientboundNamedEntitySpawnPacket, net.minecraft.network.play.server.SPacketSpawnPlayer] (unregistered)] [direction: from SERVER]
[14:58:46] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin GPS tried to register listener for unknown packet SPAWN_ENTITY_PAINTING[PLAY, SERVER, 243, classNames: [net.minecraft.network.protocol.game.PacketPlayOutSpawnEntityPainting, net.minecraft.network.protocol.game.ClientboundSpawnEntityPaintingPacket, net.minecraft.network.play.server.SPacketSpawnPainting] (unregistered)] [direction: from SERVER]
[14:58:46] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin GPS tried to register listener for unknown packet SPAWN_ENTITY_LIVING[PLAY, SERVER, 244, classNames: [net.minecraft.network.protocol.game.PacketPlayOutSpawnEntityLiving, net.minecraft.network.protocol.game.ClientboundSpawnEntityLivingPacket, net.minecraft.network.play.server.SPacketSpawnMob] (unregistered)] [direction: from SERVER]
[14:58:46] [Server thread/WARN]: [ProtocolLib] [PacketFilterManager] Plugin GPS tried to register listener for unknown packet COMBAT_EVENT[PLAY, SERVER, 247, classNames: [net.minecraft.network.protocol.game.PacketPlayOutCombatEvent, net.minecraft.network.protocol.game.ClientboundCombatEventPacket] (unregistered)] [direction: from SERVER]
[14:58:46] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+73-2cb0af0
[14:58:46] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[14:58:46] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.27.0
[14:58:46] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-beta2-b2453
[14:58:46] [Server thread/INFO]: [AuthMe] SQLite Setup finished
[14:58:46] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] No bot token has been set in the config; a bot token is required to connect to Discord.
[14:58:46] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
[14:58:46] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[14:58:46] [Server thread/INFO]: [AuthMe] Essentials spawn file not found: '/home/container/plugins/Essentials/spawn.yml'
[14:58:46] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0-beta2 build n.2453 successfully enabled!
[14:58:46] [Server thread/INFO]: [zMenu] Enabling zMenu v1.0.2.8
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] === ENABLE START ===
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] Plugin Version V1.0.2.8
[14:58:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zmenu [1.0.2.8]
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] plugins/zMenu/patterns/pattern_example.yml loaded successfully !
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] plugins/zMenu/inventories/basic_inventory.yml loaded successfully !
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] plugins/zMenu/inventories/example_punish.yml loaded successfully !
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] plugins/zMenu/inventories/advanced_inventory.yml loaded successfully !
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] plugins/zMenu/inventories/pro_inventory.yml loaded successfully !
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] plugins/zMenu/website/inventories.yml loaded successfully !
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] Command /punish successfully register.
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] Command /basic_command successfully register.
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] Command /advanced_command successfully register.
[14:58:46] [Server thread/INFO]: [zMenu v1.0.2.8] Command /pro_command successfully register.
[14:58:47] [Server thread/INFO]: [zMenu v1.0.2.8] 
[14:58:47] [Server thread/INFO]: [zMenu v1.0.2.8] You can support zMenu by upgrading your account here: https://minecraft-inventory-builder.com/account-upgrade
[14:58:47] [Server thread/INFO]: [zMenu v1.0.2.8] zMenu’s site includes an inventory editor (under development), a marketplace (already available) is a forum (under development)
[14:58:47] [Server thread/INFO]: [zMenu v1.0.2.8] 
[14:58:47] [Server thread/INFO]: [zMenu v1.0.2.8] Use ComponentMeta
[14:58:47] [Server thread/INFO]: [zMenu v1.0.2.8] Loading 5 commands
[14:58:47] [Server thread/INFO]: [zMenu v1.0.2.8] === ENABLE DONE (175ms) ===
[14:58:47] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.2
[14:58:47] [Server thread/INFO]: [PlasmoVoiceAddon] Enabling PlasmoVoiceAddon v1.1.0
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.9.5
[14:58:47] [pool-63-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (6405e850eea61a4b9bf4f0d0cbb80fe20b3cfb90)
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file.
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 section configs from /sections/
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 shop configs from /shops/
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Updating Shop settings...
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.20.4...
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 17 shop sections.
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider set to AUTO in config
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Failed to automatically find compatible spawner provider, using default...
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[14:58:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Providers not enabled yet, waiting...
[14:58:47] [Server thread/INFO]: [Quests] Enabling Quests v5.0.1-b454
[14:58:47] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[14:58:47] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.33-SNAPSHOT (build 3369)
[14:58:47] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[14:58:47] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.9.0
[14:58:47] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[14:58:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[14:58:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[14:58:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[14:58:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[14:58:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ExcellentEnchants!
[14:58:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[14:58:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.9.0]
[14:58:47] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[14:58:47] [Server thread/INFO]: [OBTeam] Enabling OBTeam v1.3
[14:58:47] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.49
[14:58:48] [Server thread/INFO]: [BigDoors] Power Block Types:
[14:58:48] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[14:58:48] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[14:58:48] [Server thread/INFO]: [BigDoors]  - BEDROCK
[14:58:48] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[14:58:48] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[14:58:48] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[14:58:48] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[14:58:48] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[14:58:48] [Server thread/INFO]: [BigDoors]  - LAVA
[14:58:48] [Server thread/INFO]: [BigDoors]  - WATER
[14:58:48] [Server thread/INFO]: [BigDoors]  - SNOW
[14:58:48] [Server thread/INFO]: [BigDoors]  - FERN
[14:58:48] [Server thread/INFO]: [BigDoors]  - SHORT_GRASS
[14:58:48] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[14:58:48] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[14:58:48] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[14:58:48] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[14:58:48] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[14:58:48] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[14:58:48] [Server thread/INFO]: [KingdomsX] Enabling Kingdoms v1.16.20.5
[14:58:48] [Server thread/INFO]: [KingdomsX] Loading language: EN (version 937728e7c35c84db81db3eb85835f691b97c249b)
[14:58:48] [Server thread/INFO]: [KingdomsX] Default language: EN (English)
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Structure: powercell
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Structure: extractor
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Structure: warppad
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Structure: regulator
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Structure: nexus
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Structure: outpost
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Structure: siege-cannon
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Structure: national-nexus
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: explosive-mine
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: chemical-mine
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: soldier
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: healing
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: spring
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: arrow
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: hellfire
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: heatbeam
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: flame
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: inferno
[14:58:48] [Server thread/INFO]: [Kingdoms] Registering Turret: psionic
[14:58:50] [Server thread/INFO]: [Kingdoms] Successfully registered LuckPerms context.
[14:58:50] [Server thread/INFO]: [Kingdoms] Citizens found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] MyPet not found.
[14:58:50] [Server thread/INFO]: [Kingdoms] MCPets not found.
[14:58:50] [Server thread/INFO]: [Kingdoms] MVdWPlaceholderAPI not found.
[14:58:50] [Server thread/INFO]: [Kingdoms] PlaceholderAPI found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] ProjectKorra not found.
[14:58:50] [Server thread/INFO]: [Kingdoms] WorldGuard found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] WorldEdit found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] Vault found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] AuthMe found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] DiscordSRV found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] LuckPerms found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] MythicMobs found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] Essentials found and hooked.
[14:58:50] [Server thread/INFO]: [Kingdoms] CMI not found.
[14:58:50] [Server thread/INFO]: [Kingdoms] Slimefun not found.
[14:58:50] [Server thread/INFO]: [Kingdoms] dynmap not found.
[14:58:50] [Server thread/INFO]: [Kingdoms] BlueMap not found.
[14:58:50] [Server thread/INFO]: [Kingdoms] squaremap not found.
[14:58:50] [Server thread/INFO]: [Kingdoms] Pl3xMap not found.
[14:58:50] [pool-70-thread-1/INFO]: [Kingdoms] Taking a backup...
[14:58:50] [pool-70-thread-1/INFO]: [Kingdoms] You already have a backup for today!
[14:58:50] [Server thread/INFO]: [KingdomsX] Loading libraries for h2 database...
[14:58:50] [Server thread/INFO]: [KingdomsX] Loaded all libraries.
[14:58:50] [Server thread/INFO]: [KingdomsX] Running H2 SQL Database:
[14:58:50] [Server thread/INFO]: [KingdomsX]    | Driver: H2 JDBC Driver (catalog) | 2.1.214 (2022-06-13)
[14:58:50] [Server thread/INFO]: [KingdomsX]    | Product: H2 | 2.1.214 (2022-06-13)
[14:58:50] [Server thread/INFO]: [KingdomsX]    | JDBC: 4.2
[14:58:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: kingdoms [10.0.0]
[14:58:50] [Server thread/INFO]: [DiscordSRV] API listener org.kingdoms.services.ServiceDiscordSRV subscribed (1 methods)
[14:58:50] [Server thread/INFO]: [KingdomsX] A total of 1058 loaded chunks has been queried.
[14:58:50] [kingdoms-worker-0/INFO]: [Kingdoms] Checking for updates...
[14:58:50] [Server thread/INFO]: [KingdomsX] Loading all players...
[14:58:50] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.2
[14:58:50] [Server thread/INFO]: [RTUBiomeLib] Enabling RTUBiomeLib v1.9.0
[14:58:50] [Server thread/INFO]: [ RTUBiomeLib ] Enable!
[14:58:50] [Server thread/INFO]: [ RTUBiomeLib ] NMS: v1_20_R3
[14:58:50] [Server thread/INFO]: [ExecutableLevers] Enabling ExecutableLevers v1.23.10.25
[14:58:50] [Server thread/INFO]: ================ ExecutableLevers ================
[14:58:50] [Server thread/ERROR]: Error occurred while enabling ExecutableLevers v1.23.10.25 (Is it up to date?)
java.lang.NoClassDefFoundError: com/ssomar/score/sobject/NewSObject
    at com.ssomar.executablelevers.events.EventsHandler.setupEvents(EventsHandler.java:26) ~[ExecutableLevers_Prem-1.23.10.25.jar:?]
    at com.ssomar.executablelevers.events.EventsHandler.setup(EventsHandler.java:21) ~[ExecutableLevers_Prem-1.23.10.25.jar:?]
    at com.ssomar.executablelevers.ExecutableLevers.onEnable(ExecutableLevers.java:28) ~[ExecutableLevers_Prem-1.23.10.25.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.ssomar.score.sobject.NewSObject
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 15 more
[14:58:50] [Server thread/INFO]: [ExecutableLevers] Disabling ExecutableLevers v1.23.10.25
[14:58:50] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v3.15.3 b834
[14:58:50] [Server thread/INFO]: LevelledMobs: Using NMS version v1_20_R3 for nametag support
[14:58:50] [Server thread/INFO]: LevelledMobs: File Loader: Loading files...
[14:58:50] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'rules.yml'...
[14:58:50] [Server thread/INFO]: LevelledMobs: Current rules hash: fc5db7139b4b2e91efed8f75bfdade0448e44365fe0bb4d0d13683615be69840
[14:58:50] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'settings.yml'...
[14:58:50] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'messages.yml'...
[14:58:50] [Server thread/INFO]: LevelledMobs: Listeners: Registering event listeners...
[14:58:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [3.15.3 b834]
[14:58:50] [Server thread/INFO]: LevelledMobs: Commands: Registering commands...
[14:58:50] [Server thread/INFO]: LevelledMobs: Running misc procedures
[14:58:50] [Server thread/INFO]: LevelledMobs: Tasks: Starting async nametag auto update task...
[14:58:50] [Server thread/INFO]: LevelledMobs: File Loader: Loading file 'customdrops.yml'...
[14:58:50] [Server thread/INFO]: LevelledMobs: Start-up complete (took 132ms)
[14:58:50] [Server thread/INFO]: [zDrawer] Enabling zDrawer v1.0.6
[14:58:50] [Server thread/INFO]: [zDrawer] [STDOUT]                                 
[14:58:50] [Server thread/WARN]: Nag author(s): '[Maxlego08]' of 'zDrawer v1.0.6' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zdrawer [1.0.6]
[14:58:50] [Server thread/INFO]: [zDrawer v1.0.6] === ENABLE START ===
[14:58:50] [Server thread/INFO]: [zDrawer v1.0.6] Plugin Version V1.0.6
[14:58:50] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[14:58:50] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[14:58:50] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'zMenu' to create a bStats instance!
[14:58:50] [pool-15-thread-1/INFO]: [zDrawer v1.0.6] Loading 0 drawers.
[14:58:50] [Server thread/INFO]: [zDrawer v1.0.6] Loading 0 inventories
[14:58:50] [Server thread/INFO]: [zDrawer v1.0.6] Loading 1 commands
[14:58:50] [Server thread/INFO]: [zDrawer v1.0.6] === ENABLE DONE (377ms) ===
[14:58:51] [Server thread/INFO]: [AdvancedJoinCommands] Enabling AdvancedJoinCommands v1.0.0
[14:58:51] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v1.6.11.17
[14:58:51] [Server thread/INFO]: [EvenMoreFish] Registered 1 internal addons
[14:58:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[14:58:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[14:58:51] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'EvenMoreFish' to create a bStats instance!
[14:58:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: emf [1.6.11.17]
[14:58:51] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Enabled
[14:58:51] [Server thread/INFO]: [BoomBox] Enabling BoomBox v2.0
[14:58:51] [Server thread/WARN]: Nag author(s): '[]' of 'BoomBox v2.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:51] [Server thread/INFO]: [BoomBox]  - VAULT ENABLED
[14:58:51] [Server thread/INFO]: [YamipaPlugin] Enabling YamipaPlugin v1.3.1
[14:58:51] [Server thread/INFO]: [YamipaPlugin] Enabled image animation support
[14:58:51] [Server thread/INFO]: [YamipaPlugin] [ImageRenderer] No placed fake images configuration file found
[14:58:51] [Server thread/INFO]: [InventorySaver] Enabling InventorySaver v3.8.4-VERSION-1.20
[14:58:51] [Server thread/INFO]: [InventorySaver] [STDOUT]                                 
[14:58:51] [Server thread/WARN]: Nag author(s): '[MrFiliper]' of 'InventorySaver v3.8.4-VERSION-1.20' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:51] [Server thread/INFO]: [InventorySaver] Configuration file found. Loading configuration file.
[14:58:51] [Server thread/INFO]: [InventorySaver] [History - SQLite] Database connection was successful created.
[14:58:51] [Server thread/INFO]: [TreeAssist] Enabling TreeAssist v7.3.51
[14:58:51] [Server thread/INFO]: [TreeAssist] sending full Metrics! You can deactivate this in the config.yml
[14:58:51] [Server thread/INFO]: [TreeAssist] debugging: off
[14:58:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ta [0.0.1]
[14:58:51] [Thread-27/INFO]: [TreeAssist] Checking for updates...
[14:58:51] [Server thread/INFO]: [FFMpegAPI] Enabling FFMpegAPI v1.0.0
[14:58:51] [Server thread/INFO]: [com.tagtraum.ffsampledsp.FFNativeLibraryLoader] Using arch=x86_64
[14:58:51] [Server thread/INFO]: [FFMpegAPI] PlasmoVoiceAddon hooked, added youtube, ffmpeg sound formats support
[14:58:51] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[14:58:52] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[14:58:52] [Server thread/INFO]: [ajLeaderboards] Loaded 0 boards
[14:58:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.8.0]
[14:58:52] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[14:58:52] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[14:58:52] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[14:58:52] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[14:58:53] [Server thread/INFO]: [DeluxeMenus] 3 GUI menus loaded!
[14:58:53] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[14:58:53] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[14:58:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[14:58:53] [Server thread/INFO]: [SetLobby] Enabling SetLobby v1.3*
[14:58:53] [Server thread/INFO]: [SetLobby] Config.yml found, loading!
[14:58:53] [Server thread/INFO]: SetLobby v1.3 has been enabled!
[14:58:53] [Server thread/INFO]: [HiddenArmor] Enabling HiddenArmor v1.1.2
[14:58:53] [Server thread/INFO]: [BetterRevive] Enabling BetterRevive v0.9.1-BETA
[14:58:53] [Server thread/INFO]:   ___      _   _           ___         _         
[14:58:53] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ \_____ _(_)_ _____ 
[14:58:53] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_|   / -_) V / \ V / -_)
[14:58:53] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |_|_\___|\_/|_|\_/\___|
[14:58:53] [Server thread/INFO]: 
[14:58:53] [Server thread/INFO]:    Running plugin BetterRevive v0.9.1-BETA (v2_0)
[14:58:53] [Server thread/INFO]:    Server running Paper version git-Paper-461 (MC: 1.20.4)
[14:58:53] [Server thread/INFO]:    (Implementing API version git-Paper-461 (MC: 1.20.4))
[14:58:53] [Server thread/INFO]:    (Developed by  AlonsoAliaga - Thanks for using my plugin ❤)
[14:58:53] [Server thread/INFO]:    If you loved the plugin consider leaving a review and mentioning your server IP in it!
[14:58:53] [Server thread/INFO]: 
[14:58:53] [Server thread/INFO]: ==============================================================================================
[14:58:53] [Server thread/INFO]: [BetterRevive] This is not a error! This is just a warning to keep in mind if you have issues!
[14:58:53] [Server thread/INFO]: [BetterRevive] You are using a Paper fork (Paper). This plugin was made for Spigot
[14:58:53] [Server thread/INFO]: [BetterRevive] but was (in most cases) tested with different builds of Paper and Purpur.
[14:58:53] [Server thread/INFO]: [BetterRevive] Spigot and forks API are really similar and should be compatible, however there are
[14:58:53] [Server thread/INFO]: [BetterRevive] some cases in which they aren't compatible. If you have issues report them to the
[14:58:53] [Server thread/INFO]: [BetterRevive] developer instead of reviewing 1 star. Thanks in advanced!
[14:58:53] [Server thread/INFO]: [BetterRevive] Join us in our official support server on alonsoaliaga.com/discord
[14:58:53] [Server thread/INFO]: ==============================================================================================
[14:58:53] [Server thread/INFO]: 
[14:58:53] [Server thread/INFO]: [BetterRevive] BungeeCord action bar available. Hooking..
[14:58:53] [Server thread/INFO]: [BetterRevive] ProtocolLib found! Checking..
[14:58:53] [Server thread/INFO]: [Auto-update] Configuration config.yml is up-to-date!
[14:58:53] [Server thread/INFO]: [BetterRevive] Factions hook is enabled but couldn't find any supported faction plugin were found. Disabling hook..
[14:58:53] [Server thread/INFO]: [BetterRevive] Finish off feature has been enabled! Players can finish off other player!
[14:58:53] [Server thread/INFO]: [BetterRevive] Finish off health: 20 | Finish off damage multiplier: 0.5
[14:58:53] [Server thread/INFO]: [BetterRevive] DamageCause for finish off is empty! All damage cause will be allowed to finish off players. (Includes DROWING, FIRE, LAVA, etc)
[14:58:53] [Server thread/INFO]: [BetterRevive] Bleeding mode is 0! Plugin will select the best option for your server!
[14:58:53] [Server thread/INFO]: [BetterRevive] Server version is v2_0. Players will look like swimming while bleeding! (Mode 2)
[14:58:53] [Server thread/INFO]: [BetterRevive] Loaded 1 bleeding effects.
[14:58:53] [Server thread/INFO]: [BetterRevive] Loaded 1 revived effect.
[14:58:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrevive [0.9.1-BETA]
[14:58:53] [Server thread/INFO]: [Cannons] Enabling Cannons v2.5.12
[14:58:53] [Server thread/INFO]: [Cannons] Loading projectile configs
[14:58:53] [Server thread/INFO]: [Cannons] [STDOUT] [Cannons] type: PRIMED_TNT data: {FUSE_TIME=100} min: 1 max: 3 from str: PRIMED_TNT 1-3 {FUSE:100}
[14:58:53] [Server thread/WARN]: Nag author(s): '[DerPavlov]' of 'Cannons v2.5.12' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:53] [Server thread/INFO]: [Cannons] [STDOUT] [Cannons] type: PRIMED_TNT data: {} min: 1 max: 3 from str: PRIMED_TNT 1-3
[14:58:53] [Server thread/INFO]: [Cannons] Loading cannon designs
[14:58:53] [Server thread/INFO]: [Cannons] Cannons plugin v2.5.12 has been enabled
[14:58:53] [Server thread/INFO]: [Vegas] Enabling Vegas v2.0
[14:58:53] [Server thread/INFO]: [Vegas] [STDOUT]                                 
[14:58:53] [Server thread/WARN]: Nag author(s): '[MyShimado]' of 'Vegas v2.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vegas [1.0]
[14:58:53] [Server thread/INFO]: [ArmorStandEditor] Enabling ArmorStandEditor v1.5.4
[14:58:53] [Server thread/INFO]: [ArmorStandEditor] Your version of this plugin is up to date!
[14:58:53] [Server thread/INFO]: [ArmorStandEditor] Plugin successfully enabled.
[14:58:53] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.5.3
[14:58:53] [Server thread/INFO]:  
[14:58:53] [Server thread/INFO]: __________________________________________________________
[14:58:53] [Server thread/INFO]:  
[14:58:53] [Server thread/INFO]:                        TradeSystem [2.5.3]
[14:58:53] [Server thread/INFO]:  
[14:58:53] [Server thread/INFO]: Status:
[14:58:53] [Server thread/INFO]:  
[14:58:53] [Server thread/INFO]: MC-Version: 1.20.4 (R0.1-SNAPSHOT, Paper)
[14:58:53] [Server thread/INFO]:  
[14:58:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[14:58:54] [Server thread/INFO]:   > Loading sounds
[14:58:54] [Server thread/INFO]:   > Loading blacklist
[14:58:54] [Server thread/INFO]:     ...got 3 blocked item(s)
[14:58:54] [Server thread/INFO]:   > Loading layouts
[14:58:54] [Server thread/INFO]:     ...got 4 layout(s)
[14:58:54] [Server thread/INFO]:   > Queuing database initializing task
[14:58:54] [Server thread/INFO]:  
[14:58:54] [Server thread/INFO]: Finished (312ms)
[14:58:54] [Server thread/INFO]:  
[14:58:54] [Server thread/INFO]: __________________________________________________________
[14:58:54] [Server thread/INFO]:  
[14:58:54] [Server thread/INFO]: [CraftyVehicles] Enabling CraftyVehicles v1.0.3
[14:58:54] [Server thread/INFO]: [CraftyVehicles] No custom controllers were loaded!
[14:58:54] [Server thread/INFO]: [CraftyVehicles] 2 recipes were loaded!
[14:58:54] [Server thread/INFO]: [CosmeticsCore] Enabling CosmeticsCore v1.2.3c
[14:58:54] [Server thread/ERROR]: Error occurred while enabling CosmeticsCore v1.2.3c (Is it up to date?)
java.lang.VerifyError: Bad type on operand stack
Exception Details:
  Location:
    dev/lone/cosmeticscore/main/ax.ar()V @249: invokevirtual
  Reason:
    Type 'java/lang/Object' (current frame, stack[0]) is not assignable to 'java/lang/Exception'
  Current Frame:
    bci: @249
    flags: { }
    locals: { 'dev/lone/cosmeticscore/main/ax', 'java/lang/String', 'java/lang/Object' }
    stack: { 'java/lang/Object' }
  Bytecode:
    0000000: 2ab4 001f 9900 f82a b400 402a b400 23b9
    0000010: 00a5 0100 ba00 aa00 0012 46b6 004c 2ab4
    0000020: 0023 b900 a501 00ba 00ad 0000 1246 b600
    0000030: 4c2a b400 23b9 00a5 0100 ba00 b000 0012
    0000040: 46b6 004c 4c2a b400 5fb6 0057 9a00 172a
    0000050: b400 232b b900 b402 002a b400 5fb8 00ba
    0000060: a700 732a b400 2199 006c 2ab4 0023 2bb9
    0000070: 00b4 0200 4d2c c600 5dbb 00bc 592c b200
    0000080: c2b7 00c5 b800 c84e 2d04 b600 ceb9 00d4
    0000090: 0100 3a04 1904 b900 d901 0099 002d 1904
    00000a0: b900 dd01 00c0 0048 3a05 2ab4 0064 1905
    00000b0: b600 e19a 0012 2ab4 0064 1905 2d19 05b6
    00000c0: 00e5 b600 e9a7 ffcf 2ab4 0064 2ab4 005f
    00000d0: b600 ec2a b400 642a b400 5fb6 00ed a700
    00000e0: 1e4d 2ab4 0025 9900 12b2 00f3 2ab4 0040
    00000f0: ba00 f800 00b8 00fd 2cb6 006c b1       
  Exception Handler Table:
    bci [69, 222] => handler: 225
    bci [69, 222] => handler: 225
    bci [69, 222] => handler: 225
  Stackmap Table:
    append_frame(@99,Object[#72])
    append_frame(@148,Object[#255],Object[#123],Object[#214])
    append_frame(@197,Object[#72])
    chop_frame(@200,1)
    chop_frame(@211,3)
    same_locals_1_stack_item_frame(@225,Object[#4])
    append_frame(@248,Object[#4])
    chop_frame(@252,2)

    at dev.lone.cosmeticscore.b.d(SourceFile:190) ~[CosmeticsCore_1.2.3c.jar:?]
    at dev.lone.cosmeticscore.b.b(SourceFile:87) ~[CosmeticsCore_1.2.3c.jar:?]
    at dev.lone.cosmeticscore.Main.onEnable(SourceFile:59) ~[CosmeticsCore_1.2.3c.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:58:54] [Server thread/INFO]: [CosmeticsCore] Disabling CosmeticsCore v1.2.3c
[14:58:54] [Server thread/INFO]: [NoPortals] Enabling NoPortals v2.2
[14:58:54] [Server thread/INFO]: [NoPortals] NoPortals v2.2 enabled
[14:58:54] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.3
[14:58:54] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[14:58:54] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[14:58:54] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[14:58:54] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[14:58:54] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[14:58:54] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Loading marriages ...
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Marriages loaded
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Loading priests ...
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Priests loaded
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Loading players ...
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Players loaded
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Writing marriages into cache ...
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Marriages loaded into cache
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Loading homes ...
[14:58:54] [Thread-30/INFO]: [MarriageMaster] Homes loaded
[14:58:54] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[14:58:54] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[14:58:54] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 827 items.
[14:58:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.7.3]
[14:58:54] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[14:58:54] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[14:58:54] [Server thread/INFO]: [TutorialCreator] Enabling TutorialCreator v1.26.2
[14:58:54] [Server thread/INFO]: [TutorialCreator] [STDOUT]                                 
[14:58:54] [Server thread/WARN]: Nag author(s): '[Freeforever24]' of 'TutorialCreator v1.26.2' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:54] [Server thread/INFO]: [TutorialCreator] Successfully loaded ProtocolLib
[14:58:54] [Server thread/INFO]: [TutorialCreator] Loaded 1 Tutorials successfully.
[14:58:54] [Server thread/INFO]: [DirectionalBlock] Enabling DirectionalBlock v1.4.1
[14:58:54] [Server thread/INFO]: [DirectionalBlock] Loaded 3 directional blocks
[14:58:54] [Server thread/INFO]: [DirectionalBlock] Plugin Enabled
[14:58:54] [Server thread/INFO]: [AutoPluginLoader] Enabling AutoPluginLoader v1.3.1
[14:58:54] [Server thread/INFO]: [AutoPluginLoader] Plugin has successfully loaded. (Took 1ms)
[14:58:55] [Server thread/INFO]: [SimpleStack] Enabling SimpleStack v1.3.8
[14:58:55] [Server thread/ERROR]: [SimpleStack] Unable to register glow enchantment: Illegal or invalid field exception has occurred.
[14:58:55] [Server thread/ERROR]: Error occurred while enabling SimpleStack v1.3.8 (Is it up to date?)
java.lang.NoSuchMethodError: 'void org.bukkit.enchantments.Enchantment.<init>(org.bukkit.NamespacedKey)'
    at com.mikedeejay2.simplestack.internal.mikedeejay2lib.util.enchant.GlowEnchantment.<init>(GlowEnchantment.java:30) ~[SimpleStack-1.3.8.jar:?]
    at com.mikedeejay2.simplestack.internal.mikedeejay2lib.util.enchant.GlowEnchantment.registerGlow(GlowEnchantment.java:141) ~[SimpleStack-1.3.8.jar:?]
    at com.mikedeejay2.simplestack.internal.mikedeejay2lib.BukkitPlugin.onEnable(BukkitPlugin.java:44) ~[SimpleStack-1.3.8.jar:?]
    at com.mikedeejay2.simplestack.Simplestack.onEnable(Simplestack.java:41) ~[SimpleStack-1.3.8.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:58:55] [Server thread/INFO]: [SimpleStack] Disabling SimpleStack v1.3.8
[14:58:55] [Server thread/ERROR]: Error occurred while disabling SimpleStack v1.3.8
java.lang.NullPointerException: Cannot invoke "com.mikedeejay2.simplestack.config.Config.isModified()" because "this.config" is null
    at com.mikedeejay2.simplestack.Simplestack.onDisable(Simplestack.java:96) ~[SimpleStack-1.3.8.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:290) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:223) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:58:55] [Server thread/INFO]: [Arceon] Enabling Arceon v0.3.7_1.15+
[14:58:55] [Server thread/INFO]: [Arceon] Arceon loading...
[14:58:55] [Server thread/WARN]: [Arceon] This version is not supported for Arceon!
[14:58:55] [Server thread/INFO]: [Arceon] Disabling Arceon v0.3.7_1.15+
[14:58:55] [Server thread/INFO]: [AutoCraft] Enabling AutoCraft v1.0.4
[14:58:55] [Server thread/INFO]: [UltraRepair] Enabling UltraRepair v4.1.6
[14:58:55] [Server thread/INFO]: 

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

[14:58:55] [Server thread/INFO]: [UltraRepair] Loading configuration files...
[14:58:55] [Server thread/INFO]: [UltraRepair] Initializing base settings...
[14:58:55] [Server thread/INFO]: [UltraRepair] Checking economy integration...
[14:58:55] [Server thread/INFO]: [UltraRepair] Loading repair manager...
[14:58:55] [Server thread/INFO]: [UltraRepair] Registering commands...
[14:58:55] [Server thread/INFO]: [UltraRepair] Registering listeners...
[14:58:55] [Server thread/INFO]: [UltraRepair] Loading metrics...
[14:58:55] [Server thread/INFO]: [UltraRepair] Checking for updates...
[14:58:55] [Server thread/INFO]: [UltraRepair] UltraRepair v4.1.6 by Demeng has been enabled.
[14:58:55] [Server thread/INFO]: [OpenRP] Enabling OpenRP v2.3.5
[14:58:55] [Server thread/INFO]: [OpenRP] Detected Bukkit Version: 1.20.4-R0.1-SNAPSHOT
[14:58:55] [Server thread/INFO]: [OpenRP] Bukkit Version is 1.16+, hex color code support enabled!
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Chat Channels...
[14:58:55] [Server thread/INFO]: [OpenRP] Reset all fake commands!
[14:58:55] [Server thread/INFO]: [OpenRP] Creating fake command for in-character. . .
[14:58:55] [Server thread/INFO]: [OpenRP] in-character: [ic]
[14:58:55] [Server thread/INFO]: [OpenRP] Creating fake command for local-out-of-character. . .
[14:58:55] [Server thread/INFO]: [OpenRP] local-out-of-character: [looc, l, local]
[14:58:55] [Server thread/INFO]: [OpenRP] Creating fake command for out-of-character. . .
[14:58:55] [Server thread/INFO]: [OpenRP] out-of-character: [ooc, g, global]
[14:58:55] [Server thread/INFO]: [OpenRP] Creating fake command for action. . .
[14:58:55] [Server thread/INFO]: [OpenRP] action: [me]
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Chat Listeners...
[14:58:55] [Server thread/INFO]: [OpenRP] Channel in-character inhibits action behaviour. Implementing. . .
[14:58:55] [Server thread/INFO]: [OpenRP] Chat Loaded!
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Descriptions Fields...
[14:58:55] [Server thread/INFO]: [OpenRP] added : name
[14:58:55] [Server thread/INFO]: [OpenRP] added : description
[14:58:55] [Server thread/INFO]: [OpenRP] added : gender
[14:58:55] [Server thread/INFO]: [OpenRP] added : race
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Descriptions Commands...
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Descriptions Listeners...
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Descriptions Expansions...
[14:58:55] [Server thread/INFO]: [OpenRP] Running Descriptions Default Info Completer. This is Async, but might take a bit...
[14:58:55] [Server thread/INFO]: [OpenRP] Descriptions Loaded!
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Roll Commands...
[14:58:55] [Server thread/INFO]: [OpenRP] Rolls Loaded!
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Time Worlds...
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Time Commands...
[14:58:55] [Server thread/INFO]: [OpenRP] Time Loaded!
[14:58:55] [Server thread/INFO]: [OpenRP] Found PlaceholderAPI. Hooking into it!
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Descriptions Expansions...
[14:58:55] [Server thread/INFO]: [OpenRP] Registering Time Expansions...
[14:58:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: orpdesc [2.3.5]
[14:58:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: orptime [2.3.5]
[14:58:55] [Server thread/INFO]: [ElytraRacing] Enabling ElytraRacing v1.5.3.18*
[14:58:55] [Server thread/WARN]: Nag author(s): '[CHOOSEIT]' of 'ElytraRacing v1.5.3.18' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:55] [Server thread/INFO]: [ElytraRacing] -> Loading autogame: default
[14:58:55] [Server thread/INFO]: [ElytraRacing] Map named: '': can't be found default
[14:58:55] [Server thread/INFO]: [ElytraRacing] Map named: '': can't be found default
[14:58:55] [Server thread/INFO]: [ElytraRacing] Map named: '': can't be found default
[14:58:55] [Server thread/INFO]: [ElytraRacing] No maps found for the autoGame: default
[14:58:55] [Server thread/INFO]: [ElytraRacing] Looking for hooks...
[14:58:55] [Server thread/INFO]: [ElytraRacing] PlaceHolderAPI enabled
[14:58:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: elytraracing [1.5.3.18]
[14:58:55] [Server thread/INFO]: [ElytraRacing] ViaVersion enabled
[14:58:55] [Server thread/INFO]: [ElytraRacing] Server version found: 20
[14:58:55] [Server thread/INFO]: [ElytraRacing] Available particles for your version: [EXPLOSION_NORMAL, EXPLOSION_LARGE, EXPLOSION_HUGE, FIREWORKS_SPARK, WATER_BUBBLE, WATER_SPLASH, WATER_WAKE, SUSPENDED, SUSPENDED_DEPTH, CRIT, CRIT_MAGIC, SMOKE_NORMAL, SMOKE_LARGE, SPELL, SPELL_INSTANT, SPELL_MOB, SPELL_MOB_AMBIENT, SPELL_WITCH, DRIP_WATER, DRIP_LAVA, VILLAGER_ANGRY, VILLAGER_HAPPY, TOWN_AURA, NOTE, PORTAL, ENCHANTMENT_TABLE, FLAME, LAVA, CLOUD, SNOWBALL, SNOW_SHOVEL, SLIME, HEART, ITEM_CRACK, WATER_DROP, MOB_APPEARANCE, DRAGON_BREATH, END_ROD, DAMAGE_INDICATOR, SWEEP_ATTACK, TOTEM, SPIT, SQUID_INK, BUBBLE_POP, CURRENT_DOWN, BUBBLE_COLUMN_UP, NAUTILUS, DOLPHIN, SNEEZE, CAMPFIRE_COSY_SMOKE, CAMPFIRE_SIGNAL_SMOKE, COMPOSTER, FLASH, FALLING_LAVA, LANDING_LAVA, FALLING_WATER, DRIPPING_HONEY, FALLING_HONEY, LANDING_HONEY, FALLING_NECTAR, SOUL_FIRE_FLAME, ASH, CRIMSON_SPORE, WARPED_SPORE, SOUL, DRIPPING_OBSIDIAN_TEAR, FALLING_OBSIDIAN_TEAR, LANDING_OBSIDIAN_TEAR, REVERSE_PORTAL, WHITE_ASH, FALLING_SPORE_BLOSSOM, SPORE_BLOSSOM_AIR, SMALL_FLAME, SNOWFLAKE, DRIPPING_DRIPSTONE_LAVA, FALLING_DRIPSTONE_LAVA, DRIPPING_DRIPSTONE_WATER, FALLING_DRIPSTONE_WATER, GLOW_SQUID_INK, GLOW, WAX_ON, WAX_OFF, ELECTRIC_SPARK, SCRAPE, SONIC_BOOM, SCULK_SOUL, SCULK_CHARGE_POP, CHERRY_LEAVES, EGG_CRACK, DUST_PLUME, WHITE_SMOKE, GUST, GUST_EMITTER, GUST_DUST, TRIAL_SPAWNER_DETECTION]
[14:58:55] [Server thread/INFO]: [ElytraRacing]  
[14:58:55] [Server thread/INFO]: [ElytraRacing] Hi ! CHOOSEIT here thanks for using my plugin <3
[14:58:55] [Server thread/INFO]: [ElytraRacing]  
[14:58:56] [Server thread/INFO]: ParticleCreator >> [INFO] If you are using the showWith system, make sure that the particle you associate with this particle are loaded before ! (put them in the list before this one)
[14:58:56] [Server thread/INFO]: ParticleCreator >> Loading GreenCircle...
[14:58:56] [Server thread/INFO]: -> Valid
[14:58:56] [Server thread/INFO]: ParticleCreator >> Loading RotatingRainbowCircle...
[14:58:56] [Server thread/INFO]: -> Valid
[14:58:56] [Server thread/INFO]: ParticleCreator >> Loading RainbowPoint...
[14:58:56] [Server thread/INFO]: -> Valid
[14:58:56] [Server thread/INFO]: ParticleCreator >> Loading RedPoint...
[14:58:56] [Server thread/INFO]: -> Valid
[14:58:56] [Server thread/INFO]: ParticleCreator >> Loading HorizontalWave...
[14:58:56] [Server thread/INFO]: -> Valid
[14:58:56] [Server thread/INFO]: ParticleCreator >> Loading VerticalWavingPoint...
[14:58:56] [Server thread/INFO]: -> Valid
[14:58:56] [Server thread/INFO]: ParticleCreator >> Loading RainbowTube...
[14:58:56] [Server thread/INFO]: -> Valid
[14:58:56] [Server thread/INFO]: [ExecutableEvents] Enabling ExecutableEvents v2.24.3.23
[14:58:56] [Server thread/INFO]: ========*======== ExecutableEvents ========*========
[14:58:56] [Server thread/INFO]: ExecutableEvents Amount of Executable Events configurations loaded: 0
[14:58:56] [Server thread/INFO]: ========*======== ExecutableEvents ========*========
[14:58:56] [Server thread/INFO]: [SuperHoppers] Enabling SuperHoppers v1.4.3
[14:58:56] [Server thread/INFO]: [SuperHoppers] Using DecentHolograms for holograms
[14:58:56] [Server thread/INFO]: [SuperHoppers] Loaded 3 items!
[14:58:56] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.7.1
[14:58:56] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[14:58:56] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[14:58:56] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_20_R3
[14:58:56] [Server thread/INFO]: [AuctionHouse] Enabled DiscordSRV support
[14:58:56] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[14:58:56] [Server thread/INFO]: [AuctionHouse] Loaded 0 listings
[14:58:56] [Server thread/INFO]: [AngelChest] Enabling AngelChest v11.0.1
[14:58:56] [Server thread/INFO]: [AngelChest] groups.yml does not exist, skipping custom group settings.
[14:58:56] [Server thread/INFO]: [AngelChest] blacklist.yml does not exist, disabling item blacklist.
[14:58:56] [Server thread/INFO]: [AngelChest] No graveyards.yml found, disabling Graveyards feature
[14:58:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: angelchest [GENERIC]
[14:58:56] [Server thread/INFO]: [AngelChest] Successfully hooked into Vault and the EconomyProvider, enabling economy functions.
[14:58:56] [Server thread/INFO]: [AngelChest] [ACF] Enabled Asynchronous Tab Completion Support!
[14:58:56] [Server thread/INFO]: [AngelChest] Successfully enabled AngelChest Plus v11.0.1/(1057105) (Premium: true)
[14:58:56] [Server thread/INFO]: [CraftyVehiclesModelBuilder] Enabling CraftyVehiclesModelBuilder v1.0.0
[14:58:56] [Server thread/INFO]: Preparing start region for dimension minecraft:model-builder
[14:58:57] [Server thread/INFO]: Time elapsed: 302 ms
[14:58:57] [Server thread/INFO]: [WorldGuard] (model-builder) TNT ignition is PERMITTED.
[14:58:57] [Server thread/INFO]: [WorldGuard] (model-builder) Lighters are PERMITTED.
[14:58:57] [Server thread/INFO]: [WorldGuard] (model-builder) Lava fire is PERMITTED.
[14:58:57] [Server thread/INFO]: [WorldGuard] (model-builder) Fire spread is UNRESTRICTED.
[14:58:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'model-builder'
[14:58:57] [Server thread/INFO]: [BetterBackpacks] Enabling BetterBackpacks v1.3-BETA-PRO
[14:58:57] [Server thread/INFO]: [BetterBackpacks] [STDOUT]                                 
[14:58:57] [Server thread/WARN]: Nag author(s): '[AlonsoAliaga]' of 'BetterBackpacks v1.3-BETA-PRO' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:57] [Server thread/INFO]:   ___      _   _           ___          _                 _       ___          Running v1.3-BETA-PRO (v1_20)
[14:58:57] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ ) __ _ __| |___ __  __ _ __| |__ __| _ \_ _ ___  Server Paper vgit-Paper-461 (MC: 1.20.4)
[14:58:57] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_| _ \/ _` / _| / / '_ \/ _` / _| / /(_-<  _/ '_/ _ \ Discord for support: https://alonsoaliaga.com/discord
[14:58:57] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |___/\__,_\__|_\_\ .__/\__,_\__|_\_\/__/_| |_| \___/ Thanks for purchasing my plugin ❤  565652!
[14:58:57] [Server thread/INFO]:                  Developed by AlonsoAliaga |_|                                
[14:58:57] [Server thread/INFO]: 
[14:58:57] [Server thread/INFO]: ==============================================================================================
[14:58:57] [Server thread/INFO]: [BetterBackpacks] You are using a Paper fork (Paper), plugin should work fine!
[14:58:57] [Server thread/INFO]: [BetterBackpacks] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[14:58:57] [Server thread/INFO]: ==============================================================================================
[14:58:57] [Server thread/INFO]: 
[14:58:57] [Server thread/INFO]: [BetterBackpacks] BungeeCord action bar available. Hooking..
[14:58:57] [Server thread/INFO]: [BetterBackpacks] ProtocolLib found! Checking..
[14:58:57] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[14:58:57] [Server thread/INFO]: [Auto-update] items.yml is up-to-date!
[14:58:57] [Server thread/INFO]: [Auto-update] skins.yml is up-to-date!
[14:58:57] [Server thread/INFO]: [Auto-update] backpacks.yml is up-to-date!
[14:58:57] [Server thread/INFO]: [BetterBackpacks] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[14:58:57] [Server thread/INFO]: [BetterBackpacks] [SQLite] Attempting to create 'betterbackpacks' table..
[14:58:57] [Server thread/INFO]: [SQLite] Connecting to database 'database-betterbackpacks.db'!
[14:58:57] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.42.0
[14:58:57] [Server thread/INFO]: [SQLite] Successfully connected to database!
[14:58:57] [Server thread/INFO]: [BetterBackpacks] [SQLite] Table 'betterbackpacks' has been created if didn't exist.
[14:58:57] [Server thread/ERROR]: Error occurred while enabling BetterBackpacks v1.3-BETA-PRO (Is it up to date?)
java.lang.IncompatibleClassChangeError: Method 'com.alonsoaliaga.betterbackpacks.economy.CurrencyManager com.alonsoaliaga.betterbackpacks.economy.CurrencyManager.initializeManager(java.lang.String, com.alonsoaliaga.betterbackpacks.enums.CostType, org.bukkit.Material)' must be InterfaceMethodref constant
    at com.alonsoaliaga.betterbackpacks.BetterBackpacks.onEnable(BetterBackpacks.java:257) ~[BetterBackpacksPro-v1.3-BETA-PRO.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:58:57] [Server thread/INFO]: [BetterBackpacks] Disabling BetterBackpacks v1.3-BETA-PRO
[14:58:57] [Server thread/INFO]: [SQLite] Forcing connection close..
[14:58:57] [Server thread/INFO]:  
[14:58:57] [Server thread/INFO]: [BetterBackpacks] Plugin has been disabled!
[14:58:57] [Server thread/INFO]: [BetterBackpacks] Thank you for using my plugin!
[14:58:57] [Server thread/INFO]:  
[14:58:57] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[14:58:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.2]
[14:58:57] [Server thread/INFO]: [TAB] Enabled in 100ms
[14:58:57] [Server thread/INFO]: [JetsMinions] Enabling JetsMinions v7.9.10
[14:58:57] [Server thread/INFO]: [JetsMinions] [STDOUT]                                 
[14:58:57] [Server thread/WARN]: Nag author(s): '[Jet315]' of 'JetsMinions v7.9.10' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:57] [Server thread/INFO]: [JetsMinions] Initialising Plugin v7.9.10...
[14:58:57] [Server thread/ERROR]: Error occurred while enabling JetsMinions v7.9.10 (Is it up to date?)
java.lang.ClassFormatError: Duplicate method name "gatherData" with signature "()Lcom.google.gson.JsonObject;" in class file me/jet315/minions/web/Metrics
    at java.lang.ClassLoader.defineClass1(Native Method) ~[?:?]
    at java.lang.ClassLoader.defineClass(ClassLoader.java:1027) ~[?:?]
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:243) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    at me.jet315.minions.Core.onEnable(Core.java:60) ~[JetsMinions-7.9.10.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:58:57] [Server thread/INFO]: [JetsMinions] Disabling JetsMinions v7.9.10
[14:58:57] [Server thread/ERROR]: Error occurred while disabling JetsMinions v7.9.10
java.lang.NullPointerException: Cannot invoke "me.jet315.minions.storage.database.DataController.getStorage()" because "this.dataController" is null
    at me.jet315.minions.Core.onDisable(Core.java:130) ~[JetsMinions-7.9.10.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:290) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:223) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:58:57] [Server thread/INFO]: [EmployMe] Enabling EmployMe v1.2.3
[14:58:57] [Server thread/WARN]: Nag author(s): '[DavidTheExplorer]' of 'EmployMe v1.2.3' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: employme [1.0.0]
[14:58:57] [Server thread/INFO]: [Interactions] Enabling Interactions v2.3.1
[14:58:57] [Server thread/WARN]: Nag author(s): '[Ajneb97]' of 'Interactions v2.3.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:58:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactions [2.3.1]
[14:58:58] [Server thread/INFO]: [Interactions]Has been enabled! Version: 2.3.1
[14:58:58] [Server thread/INFO]: [Interactions]Thanks for using my plugin!   ~Ajneb97
[14:58:58] [Server thread/INFO]: There is a new version available. (7.1.2)
[14:58:58] [Server thread/INFO]: You can download it at: https://www.spigotmc.org/resources/02446/
[14:58:58] [Server thread/INFO]: [MCPets] Enabling MCPets v4.1.2
[14:58:58] [Server thread/INFO]: [MCPets] : Language file reloaded.
[14:58:58] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[14:58:58] [Server thread/INFO]: Loading pets... 
[14:58:58] [Server thread/INFO]: [MCPets] : 0 pets registered successfully !
[14:58:58] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[14:58:58] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[14:58:58] [Server thread/INFO]: [MCPets] [Database] Can't initialize MySQL.
[14:58:58] [Server thread/INFO]: [MCPets] [Database] Will be using YAML support instead (no worry it's not a bug).
[14:58:58] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[14:58:58] [Server thread/INFO]:       Plugin made by Nocsy
[14:58:58] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[14:58:58] [Server thread/INFO]: -=- Launching Flags -=-
[14:58:58] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[14:58:58] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[14:58:58] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount-flying.
[14:58:58] [Server thread/INFO]: 3 flags launched.
[14:58:58] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v4.24.3.23
[14:58:58] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[14:58:58] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Hut) >> Options available: https://docs.ssomar.com/
[14:58:58] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test) >> Options available: https://docs.ssomar.com/
[14:58:58] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test2) >> Options available: https://docs.ssomar.com/
[14:58:58] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Prem_Target) >> Options available: https://docs.ssomar.com/
[14:58:58] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Mine) >> Options available: https://docs.ssomar.com/
[14:58:58] [Server thread/INFO]: ExecutableBlocks Amount of Executable Blocks configurations loaded: 20
[14:58:58] [Server thread/INFO]: ExecutableBlocks There are: 0 ExecutableBlock placed configs to load.
[14:58:58] [Server thread/INFO]: ExecutableBlocks 0 ExecutableBlock(s)Placed loaded !
[14:58:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableBlocks [1.0.0]
[14:58:58] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[14:58:58] [Server thread/INFO]: [CitizensCMD] Enabling CitizensCMD v2.7.0
[14:58:59] [Server thread/INFO]: [CitizensCMD] CitizensCMD 2.7.0
[14:58:59] [Server thread/INFO]: [CitizensCMD] by Mateus Moreira @LichtHund & Maintained by HexedHero
[14:58:59] [Server thread/INFO]: [CitizensCMD] Using English messages!
[14:58:59] [Server thread/INFO]: [CitizensCMD] Using PlaceholderAPI!
[14:58:59] [Server thread/INFO]: [CitizensCMD] Using Vault!
[14:58:59] [Server thread/INFO]: [Journey] Enabling Journey v0.1.0-beta
[14:58:59] [Server thread/INFO]: [Journey] Initializing Journey...
[14:58:59] [Server thread/INFO]: [Journey] 0 paths deserialized
[14:58:59] [Server thread/INFO]: [Journey] 0 nether ports deserialized
[14:58:59] [Server thread/ERROR]: Error occurred while enabling Journey v0.1.0-beta (Is it up to date?)
java.lang.NoClassDefFoundError: me/blackvein/quests/Quests
    at edu.whimc.journey.spigot.command.JourneyToCommand.<init>(JourneyToCommand.java:62) ~[journey-0.1.0-beta.jar:?]
    at edu.whimc.journey.spigot.command.JourneyCommand.<init>(JourneyCommand.java:66) ~[journey-0.1.0-beta.jar:?]
    at edu.whimc.journey.spigot.JourneySpigot.onEnable(JourneySpigot.java:143) ~[journey-0.1.0-beta.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: me.blackvein.quests.Quests
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 15 more
[14:58:59] [Server thread/INFO]: [Journey] Disabling Journey v0.1.0-beta
[14:58:59] [Server thread/INFO]: [Journey] 0 paths serialized
[14:58:59] [Server thread/INFO]: [Journey] 0 nether ports serialized
[14:58:59] [Server thread/INFO]: [AnimatedArchitecture] Enabling AnimatedArchitecture v0.5
[14:58:59] [Server thread/INFO]: [nl.pim16aap2.animatedarchitecture.lib.util.codegeneration.ClassGenerator] Generated Class FakePlayer$Generated in 590ms.
[14:58:59] [Server thread/INFO]: [nl.pim16aap2.animatedarchitecture.spigot.core.util.MinecraftVersion] Failed to parse Minecraft version: 'org.bukkit.craftbukkit.v1_20_R3'. Defaulting to v1_19_R3.
[14:59:00] [Server thread/INFO]: [nl.pim16aap2.animatedarchitecture.spigot.core.AnimatedArchitecturePlugin] Successfully enabled AnimatedArchitecture 0.5
[14:59:00] [Server thread/INFO]: [nl.pim16aap2.animatedarchitecture.spigot.core.config.ConfigSpigot] Power Block Types:
 - GOLD_BLOCK

[14:59:00] [Server thread/INFO]: [nl.pim16aap2.animatedarchitecture.spigot.core.config.ConfigSpigot] No materials are blacklisted!
[14:59:00] [Server thread/INFO]: [nl.pim16aap2.animatedarchitecture.spigot.core.hooks.ProtectionHookManagerSpigot] Successfully loaded protection hook for plugin 'WorldGuard' (version '7.0.9+5934e49')!
[14:59:00] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.9.0
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[14:59:01] [Server thread/INFO]: [InteractiveChat] Loading languages...
[14:59:01] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[14:59:01] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[14:59:01] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[14:59:01] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has hooked into ItemsAdder!
[14:59:01] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[14:59:01] [Server thread/INFO]: [RealDualWield] Enabling RealDualWield v1.1.37
[14:59:01] [Server thread/INFO]: 
[14:59:01] [Server thread/INFO]: -=[ Real DualWield ]=-
[14:59:01] [Server thread/INFO]: 
[14:59:01] [Server thread/INFO]: Version: 1.1.37
[14:59:01] [Server thread/INFO]: Server version: v1_20_R3
[14:59:01] [Server thread/INFO]: 
[14:59:01] [Server thread/INFO]: 
[14:59:01] [Server thread/INFO]: [CinematicStudio] Enabling CinematicStudio v1.4.4
[14:59:01] [Server thread/WARN]: Nag author(s): '[LoneDev, CraterHater]' of 'CinematicStudio v1.4.4' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:59:01] [Server thread/ERROR]: [CinematicStudio] Error getting implementation for interface dev.lone.cinematicstudio.nms.aC.aG - NMS v1_20_R3
[14:59:01] [Server thread/WARN]: java.lang.ClassNotFoundException: dev.lone.cinematicstudio.nms.aC.impl.v1_20_R3
[14:59:01] [Server thread/WARN]:    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[14:59:01] [Server thread/WARN]:    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[14:59:01] [Server thread/WARN]:    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[14:59:01] [Server thread/WARN]:    at java.base/java.lang.Class.forName0(Native Method)
[14:59:01] [Server thread/WARN]:    at java.base/java.lang.Class.forName(Class.java:421)
[14:59:01] [Server thread/WARN]:    at java.base/java.lang.Class.forName(Class.java:412)
[14:59:01] [Server thread/WARN]:    at CinematicStudio_1.4.4.jar//dev.lone.cinematicstudio.main.b.a(SourceFile:129)
[14:59:01] [Server thread/WARN]:    at CinematicStudio_1.4.4.jar//dev.lone.cinematicstudio.main.b.a(SourceFile:110)
[14:59:01] [Server thread/WARN]:    at CinematicStudio_1.4.4.jar//dev.lone.cinematicstudio.nms.aC.aH.<init>(SourceFile:23)
[14:59:01] [Server thread/WARN]:    at CinematicStudio_1.4.4.jar//dev.lone.cinematicstudio.nms.aC.aH.a(SourceFile:34)
[14:59:01] [Server thread/WARN]:    at CinematicStudio_1.4.4.jar//dev.lone.cinematicstudio.nms.aC.aH.a(SourceFile:28)
[14:59:01] [Server thread/WARN]:    at CinematicStudio_1.4.4.jar//dev.lone.cinematicstudio.main.Main.onEnable(SourceFile:61)
[14:59:01] [Server thread/WARN]:    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
[14:59:01] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
[14:59:01] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:59:01] [Server thread/WARN]:    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:59:01] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
[14:59:01] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:309)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[14:59:01] [Server thread/WARN]:    at java.base/java.lang.Thread.run(Thread.java:1583)
[14:59:01] [Server thread/INFO]: [CinematicStudio] Disabling CinematicStudio v1.4.4
[14:59:01] [Server thread/ERROR]: Error occurred while enabling CinematicStudio v1.4.4 (Is it up to date?)
java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:846) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:338) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:516) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:471) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:209) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    at dev.lone.cinematicstudio.main.Main.onEnable(SourceFile:79) ~[CinematicStudio_1.4.4.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:309) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1131) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:59:01] [Server thread/INFO]: [AntiCombatLog] Enabling AntiCombatLog v2.6.0
[14:59:01] [Server thread/INFO]: [AntiCombatLog] Starting AntiCombatLog V.2.6.0 by Badbird5907
[14:59:01] [Server thread/INFO]: [AntiCombatLog] Enabling plugin hooks...
[14:59:01] [Server thread/INFO]: [AntiCombatLog] Finished initializing AntiCombatLog (took 16 ms.)
[14:59:01] [Server thread/INFO]: [DungeonMMO] Enabling DungeonMMO v2.2.3
[14:59:01] [Server thread/WARN]: Nag author(s): '[Civious]' of 'DungeonMMO v2.2.3' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:59:01] [Server thread/WARN]: java.lang.IllegalArgumentException: InputStream cannot be null
[14:59:01] [Server thread/WARN]:    at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:118)
[14:59:01] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.m.l.a(SoftDeserializer.java:41)
[14:59:01] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:79)
[14:59:01] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:98)
[14:59:01] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.j(StructurePackage.java:70)
[14:59:01] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.<init>(StructurePackage.java:28)
[14:59:01] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.b(PackageFactory.java:22)
[14:59:01] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.<init>(PackageFactory.java:17)
[14:59:01] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.DungeonMMO.onEnable(DungeonMMO.java:58)
[14:59:01] [Server thread/WARN]:    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
[14:59:01] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
[14:59:01] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:59:01] [Server thread/WARN]:    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:59:01] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
[14:59:01] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:309)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[14:59:01] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[14:59:01] [Server thread/WARN]:    at java.base/java.lang.Thread.run(Thread.java:1583)
[14:59:02] [Server thread/WARN]: java.lang.IllegalArgumentException: InputStream cannot be null
[14:59:02] [Server thread/WARN]:    at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:118)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.m.l.a(SoftDeserializer.java:41)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:79)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:98)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.j(StructurePackage.java:71)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.<init>(StructurePackage.java:28)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.b(PackageFactory.java:22)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.<init>(PackageFactory.java:17)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.DungeonMMO.onEnable(DungeonMMO.java:58)
[14:59:02] [Server thread/WARN]:    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
[14:59:02] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
[14:59:02] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:59:02] [Server thread/WARN]:    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:59:02] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
[14:59:02] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:309)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[14:59:02] [Server thread/WARN]:    at java.base/java.lang.Thread.run(Thread.java:1583)
[14:59:02] [Server thread/WARN]: java.lang.IllegalArgumentException: InputStream cannot be null
[14:59:02] [Server thread/WARN]:    at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:118)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.m.l.a(SoftDeserializer.java:41)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:79)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:98)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.j(StructurePackage.java:72)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.<init>(StructurePackage.java:28)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.b(PackageFactory.java:22)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.<init>(PackageFactory.java:17)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.DungeonMMO.onEnable(DungeonMMO.java:58)
[14:59:02] [Server thread/WARN]:    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
[14:59:02] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
[14:59:02] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:59:02] [Server thread/WARN]:    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:59:02] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
[14:59:02] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:309)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[14:59:02] [Server thread/WARN]:    at java.base/java.lang.Thread.run(Thread.java:1583)
[14:59:02] [Server thread/WARN]: java.lang.IllegalArgumentException: InputStream cannot be null
[14:59:02] [Server thread/WARN]:    at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:118)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.m.l.a(SoftDeserializer.java:41)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:79)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:98)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.j(StructurePackage.java:73)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.<init>(StructurePackage.java:28)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.b(PackageFactory.java:22)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.<init>(PackageFactory.java:17)
[14:59:02] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.DungeonMMO.onEnable(DungeonMMO.java:58)
[14:59:02] [Server thread/WARN]:    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
[14:59:02] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
[14:59:02] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:59:02] [Server thread/WARN]:    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:59:02] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
[14:59:02] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:309)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[14:59:02] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[14:59:02] [Server thread/WARN]:    at java.base/java.lang.Thread.run(Thread.java:1583)
[14:59:03] [Server thread/WARN]: java.lang.IllegalArgumentException: InputStream cannot be null
[14:59:03] [Server thread/WARN]:    at java.xml/javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:118)
[14:59:03] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.m.l.a(SoftDeserializer.java:41)
[14:59:03] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:79)
[14:59:03] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.a(StructurePackage.java:98)
[14:59:03] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.j(StructurePackage.java:74)
[14:59:03] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.b.<init>(StructurePackage.java:28)
[14:59:03] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.b(PackageFactory.java:22)
[14:59:03] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.j.a.<init>(PackageFactory.java:17)
[14:59:03] [Server thread/WARN]:    at DungeonMMO.jar//com.civious.dungeonmmo.DungeonMMO.onEnable(DungeonMMO.java:58)
[14:59:03] [Server thread/WARN]:    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
[14:59:03] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
[14:59:03] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:59:03] [Server thread/WARN]:    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:59:03] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
[14:59:03] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
[14:59:03] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671)
[14:59:03] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431)
[14:59:03] [Server thread/WARN]:    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:309)
[14:59:03] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[14:59:03] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[14:59:03] [Server thread/WARN]:    at java.base/java.lang.Thread.run(Thread.java:1583)
[14:59:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: dmmo [1.0]
[14:59:03] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.9.47
[14:59:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedcrates [3.9.47]
[14:59:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R3! Trying to find NMS support
[14:59:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R3' loaded!
[14:59:04] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AdvancedCrates' to create a bStats instance!
[14:59:05] [Server thread/INFO]: [RAMCleanerPLUS] Enabling RAMCleanerPLUS v2.0.8
[14:59:05] [Server thread/WARN]: Unexpected character (.) at position 3.
[14:59:05] [Server thread/WARN]:    at org.json.simple.parser.Yylex.yylex(Yylex.java:610)
[14:59:05] [Server thread/WARN]:    at org.json.simple.parser.JSONParser.nextToken(JSONParser.java:269)
[14:59:05] [Server thread/WARN]:    at org.json.simple.parser.JSONParser.parse(JSONParser.java:118)
[14:59:05] [Server thread/WARN]:    at org.json.simple.parser.JSONParser.parse(JSONParser.java:81)
[14:59:05] [Server thread/WARN]:    at org.json.simple.parser.JSONParser.parse(JSONParser.java:75)
[14:59:05] [Server thread/WARN]:    at RAMCleanerULTRA-2.0.8.jar//tech.itexpress.ramcleanerplus.RAMCleanerPLUS.onEnable(RAMCleanerPLUS.java:75)
[14:59:05] [Server thread/WARN]:    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:287)
[14:59:05] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:188)
[14:59:05] [Server thread/WARN]:    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:59:05] [Server thread/WARN]:    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:59:05] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugin(CraftServer.java:639)
[14:59:05] [Server thread/WARN]:    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.enablePlugins(CraftServer.java:550)
[14:59:05] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:671)
[14:59:05] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:431)
[14:59:05] [Server thread/WARN]:    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:309)
[14:59:05] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1131)
[14:59:05] [Server thread/WARN]:    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319)
[14:59:05] [Server thread/WARN]:    at java.base/java.lang.Thread.run(Thread.java:1583)
[14:59:05] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.8.0
[14:59:08] [Server thread/INFO]: [InteractionVisualizer] Loading languages...
[14:59:08] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[14:59:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[14:59:08] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[14:59:08] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.27.1
[14:59:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [2.27.1]
[14:59:08] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.27.1
[14:59:08] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[14:59:08] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.3
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[14:59:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[14:59:08] [Server thread/INFO]: [SmoothTimber] Enabling SmoothTimber v1.25.0
[14:59:08] [Server thread/INFO]: SmoothTimber || You're currently using the supported Minecraft Version 1.20.4 (Core v1_20x)
[14:59:08] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'CoreProtect' for plugin 'CoreProtect'...
[14:59:08] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'CoreProtect' for plugin 'CoreProtect'...
[14:59:08] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'JobsReborn' for plugin 'Jobs'...
[14:59:08] [Server thread/INFO]: SmoothTimber || Trying to load config of compatibility addon 'JobsReborn' for plugin 'Jobs'...
[14:59:08] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'JobsReborn' for plugin 'Jobs'...
[14:59:08] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'PlaceholderApi' for plugin 'PlaceholderAPI'...
[14:59:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: smoothtimber [1.25.0]
[14:59:08] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'PlaceholderApi' for plugin 'PlaceholderAPI'...
[14:59:08] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'WorldGuard' for plugin 'WorldGuard'...
[14:59:08] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'WorldGuard' for plugin 'WorldGuard'...
[14:59:08] [Server thread/INFO]: [BigDoorsOpener] Enabling BigDoorsOpener v2.5.2
[14:59:08] [Server thread/INFO]: [BigDoorsOpener] Enabled. Required 26 ms.
[14:59:08] [Server thread/INFO]: [CustomCrops] Enabling CustomCrops v3.4.3.1
[14:59:09] [Server thread/INFO]: [CustomCrops] MythicMobs hooked!
[14:59:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrops [3.4]
[14:59:09] [Server thread/INFO]: [OreRegenerator] Enabling OreRegenerator v2.3.8
[14:59:10] [Server thread/INFO]: [OreRegenerator] You are using OreRegenerator Premium, thank you for your support!
[14:59:10] [Server thread/INFO]: [OreRegenerator] [ACF] Enabled Asynchronous Tab Completion Support!
[14:59:10] [Server thread/INFO]: [OreRegenerator] Loading hooks...
[14:59:10] [Server thread/INFO]: [OreRegenerator] Successfully hooked into ItemsAdder!
[14:59:10] [Server thread/INFO]: [OreRegenerator] Finished loading hooks!
[14:59:10] [Server thread/INFO]: [SimpleGlow] Enabling SimpleGlow v2.0
[14:59:10] [Server thread/INFO]: [Aurora] Enabling Aurora v5.7
[14:59:10] [Server thread/WARN]: [Aurora] You have enable-lighting enabled but you don't have LightAPI installed. Download it here: https://github.com/LinsMinecraftStudio/LighterAPI
[14:59:10] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.12
[14:59:10] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[14:59:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.12]
[14:59:10] [Server thread/INFO]: [NekoTraps] Enabling NekoTraps v1.4.8
[14:59:10] [Server thread/INFO]: NekoTraps loaded. selected version: v1_20_R3
[14:59:10] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v7.3
[14:59:10] [Server thread/INFO]: [AntiPopup] Config enabled.
[14:59:10] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[14:59:10] [Server thread/INFO]: [AntiPopup] Hooked on 1.20.4
[14:59:10] [Server thread/INFO]: [AntiPopup] Commands registered.
[14:59:10] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[14:59:10] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[14:59:10] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[14:59:10] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[14:59:10] [Server thread/INFO]: | Command file(s) found : 1
[14:59:10] [Server thread/INFO]: | Config : Ready.
[14:59:10] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[14:59:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[14:59:10] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[14:59:10] [Server thread/INFO]: | Custom commands loaded : 44
[14:59:10] [Server thread/INFO]: | You're running the latest version of MyCommand.
[14:59:10] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[14:59:10] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[14:59:10] [Server thread/INFO]: [PlayerParticlesPremium] Enabling PlayerParticlesPremium v1.0.0-ALPHA
[14:59:10] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.0.0-SNAPSHOT
[14:59:10] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[14:59:10] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[14:59:10] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[14:59:10] [Server thread/INFO]: [MythicMobs] Registering Durability Listener
[14:59:11] [pool-98-thread-1/INFO]: [CustomCrops] Update is available: https://polymart.org/resource/2625
[14:59:15] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[14:59:15] [Server thread/INFO]: [MythicMobs] MythicCrucible Support has been enabled!
[14:59:15] [Server thread/INFO]: [MythicMobs] MythicCrucible WorldEdit support enabled!
[14:59:15] [Server thread/INFO]: [MythicMobs] ✓ MythicCrucible  v2.0.0 has been successfully loaded!
[14:59:15] [Server thread/INFO]: [BigDoorsPhysics] Enabling BigDoorsPhysics v2.4.2
[14:59:15] [Server thread/INFO]: [BigDoorsPhysics] Loading Config
[14:59:15] [Server thread/INFO]: [net.bonn2.bigdoorsphysics.relocated.org.reflections.Reflections] Reflections took 25 ms to scan 1 urls, producing 2 keys and 4 values
[14:59:15] [Server thread/INFO]: [BigDoorsPhysics] Discovered 3 version adapters
[14:59:15] [Server thread/INFO]: [BigDoorsPhysics] Loaded net.bonn2.bigdoorsphysics.versions.v1_19_3.VersionUtil_v1_19_3
[14:59:15] [Server thread/INFO]: [BigDoorsPhysics] Registering Events
[14:59:15] [Server thread/INFO]: [BigDoorsPhysics] Registering Commands
[14:59:15] [Server thread/INFO]: [BigDoorsPhysics] Enabling ProtocolLib Support
[14:59:15] [Server thread/INFO]: [DisableSignEdit] Enabling DisableSignEdit v1.1.1
[14:59:15] [Server thread/INFO]: DisableSignEdit has enabled.
[14:59:15] [Server thread/INFO]: [RentIt] Enabling RentIt v2.9.2
[14:59:15] [Server thread/INFO]: [RentIt] {SQL} starting SQL . . .
[14:59:15] [Server thread/INFO]: [RentIt] {SQL} Connecting to SQLITE Database...
[14:59:15] [Server thread/INFO]: [RentIt] {SQL} successfully connected to Database.
[14:59:15] [Server thread/INFO]: [RentIt] LuckPerms Permission System was found.
[14:59:15] [Server thread/INFO]: [RentIt] LuckPerms Chat System was found.
[14:59:15] [Server thread/INFO]: [RentIt] Essentials Economy System was found.
[14:59:15] [Server thread/INFO]: [RentIt] WorldEdit was found!
[14:59:15] [Server thread/INFO]: [RentIt] WorldGuard was found!
[14:59:15] [Server thread/INFO]: [RentIt] Citizens was found!
[14:59:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: RentIt [2.9.2]
[14:59:15] [Server thread/INFO]: [RentIt] PlacerHolderAPI was found and registered!
[14:59:15] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[14:59:15] [Server thread/INFO]: 0 placeholder hook(s) registered!
[14:59:15] [Server thread/INFO]: Running delayed init tasks
[14:59:15] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:59:15] [Craft Scheduler Thread - 8 - ItemJoin/INFO]: [ItemJoin] Running a developer version ... skipping NMS check.
[14:59:15] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[14:59:15] [Craft Scheduler Thread - 8 - ItemJoin/INFO]: [ItemJoin] Hooked into { AuthMe, My Worlds, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens, Vault }
[14:59:15] [Craft Scheduler Thread - 8 - ItemJoin/INFO]: [ItemJoin] 24 Custom item(s) loaded!
[14:59:15] [Craft Scheduler Thread - 12 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[14:59:15] [Craft Scheduler Thread - 10 - ItemJoin/INFO]: [ItemJoin] Checking for updates...
[14:59:15] [Craft Scheduler Thread - 19 - AuthMe/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
[14:59:15] [Craft Scheduler Thread - 16 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[14:59:15] [Craft Scheduler Thread - 19 - AuthMe/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
[14:59:15] [Craft Scheduler Thread - 19 - AuthMe/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
[14:59:15] [Craft Scheduler Thread - 23 - Kingdoms/INFO]: [Kingdoms] No update found - (v1.16.20.5)
[14:59:15] [Craft Scheduler Thread - 19 - AuthMe/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins/AuthMe/GeoLite2-Country.mmdb (No such file or directory)
[14:59:15] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:59:15] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vending_bot.bbmodel.
[14:59:15] [Craft Scheduler Thread - 25 - Cannons/INFO]: [Cannons] Connected to database
[14:59:15] [Craft Scheduler Thread - 23 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[14:59:15] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[14:59:15] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[14:59:15] [Craft Scheduler Thread - 39 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[14:59:15] [Craft Scheduler Thread - 48 - Vault/INFO]: [Vault] Checking for Updates ... 
[14:59:15] [Craft Scheduler Thread - 4 - Essentials/INFO]: [Essentials] Fetching version information...
[14:59:15] [Craft Scheduler Thread - 48 - Vault/INFO]: [Vault] No new version available
[14:59:16] [Craft Scheduler Thread - 23 - BetterRevive/INFO]: [BetterRevive] Checking for updates...
[14:59:16] [Craft Scheduler Thread - 23 - BetterRevive/INFO]: [BetterRevive] Plugin up-to-date! You have the latest version!
[14:59:16] [Craft Scheduler Thread - 37 - NekoTraps/INFO]: [NekoTraps] There is not a new update available.
[14:59:16] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:59:16] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Importing vm_rmk.bbmodel.
[14:59:16] [Craft Scheduler Thread - 10 - ItemJoin/INFO]: [ItemJoin] You are up to date!
[14:59:16] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[14:59:16] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[14:59:16] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[14:59:16] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[14:59:16] [Server thread/ERROR]: [ItemsAdder] Image not found for font_image '_iainternal:no_recipe'. assets/_iainternal/textures/gui/no_recipe.png
[14:59:16] [Server thread/ERROR]: [ItemsAdder] Image not found for font_image '_iainternal:crafting'. assets/_iainternal/textures/gui/crafting.png
[14:59:16] [Server thread/ERROR]: [ItemsAdder] Image not found for font_image '_iainternal:cooking'. assets/_iainternal/textures/gui/cooking.png
[14:59:16] [Server thread/ERROR]: [ItemsAdder] Image not found for font_image '_iainternal:blank_menu'. assets/_iainternal/textures/gui/blank_menu.png
[14:59:16] [Server thread/ERROR]: [ItemsAdder] Image not found for font_image '_iainternal:anvil_repair'. assets/_iainternal/textures/gui/anvil_repair.png
[14:59:16] [Server thread/ERROR]: [ItemsAdder] Image not found for font_image '_iainternal:smithing'. assets/_iainternal/textures/gui/smithing.png
[14:59:16] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:59:16] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[14:59:16] [Craft Scheduler Thread - 39 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[14:59:16] [Craft Scheduler Thread - 15 - zMenu/INFO]: [zDrawer v1.0.6] No update available.
[14:59:16] [Craft Scheduler Thread - 20 - zMenu/INFO]: [zMenu v1.0.2.8] No update available.
[14:59:16] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Essentials)
[14:59:16] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[14:59:16] [Server thread/INFO]: [BigDoors] Checking for updates...
[14:59:16] [Server thread/INFO]: [AutoCraft] [STDOUT] [AutoCraft] Registering recipes ...
[14:59:16] [Server thread/WARN]: Nag author(s): '[keksexception]' of 'AutoCraft v1.0.4' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:59:16] [Server thread/INFO]: [AutoCraft] [STDOUT] [AutoCraft] Adding custom recipes ...
[14:59:16] [Server thread/INFO]: [AutoCraft] [STDOUT] [AutoCraft] Registering recipes completed
[14:59:16] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Essentials for Vault's Economy API
[14:59:16] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LuckPerms for Vault's Chat API
[14:59:16] [ForkJoinPool.commonPool-worker-16/INFO]: [BigDoors] No new updates available.
[14:59:16] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[14:59:16] [Craft Scheduler Thread - 31 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] Hooked into Big Doors successfully.
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] World Guard found. Trying to get a hook.
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] Hooked into world guard successfully.
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] Placeholder API found. Enabling placeholder usage.
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] MythicMobs found. Enabling mythic mobs listener.
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] Config is up to date.
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] Config loaded!
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] Java 15 or newer detected. Searching for external Engine.
[14:59:16] [Server thread/ERROR]: [BigDoorsOpener] --------------------------------------------------------------------------
[14:59:16] [Server thread/ERROR]: [BigDoorsOpener] -> No script engine found.                                              <-
[14:59:16] [Server thread/ERROR]: [BigDoorsOpener] -> Custom evaluator and placeholder will not work.                      <-
[14:59:16] [Server thread/ERROR]: [BigDoorsOpener] -> When using java 15 or above you have to use the nashorn js provider. <-
[14:59:16] [Server thread/ERROR]: [BigDoorsOpener] -> Download here: https://www.spigotmc.org/resources/91204/.            <-
[14:59:16] [Server thread/ERROR]: [BigDoorsOpener] --------------------------------------------------------------------------
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] Locale plugins/BigDoorsOpener/messages/messages_en_US.properties is up to date.
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] Locale plugins/BigDoorsOpener/messages/messages_de_DE.properties is up to date.
[14:59:16] [Server thread/INFO]: [BigDoorsOpener] Metrics enabled. Thank you very much!
[14:59:16] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Hash changed! Re-downloading default resources! Please wait... (EMPTY -> 253c1c05680ec278241534d04aa76e7684a7d2ca)
[14:59:17] [Craft Scheduler Thread - 34 - InteractionVisualizer/INFO]: [InteractionVisualizer] Loaded all 1 languages!
[14:59:17] [Server thread/INFO]: [BigDoorsOpener] Post startup done. Required 517 ms.
[14:59:17] [Server thread/INFO]: [InventorySaver] Disabling InventorySaver v3.8.4-VERSION-1.20
[14:59:17] [Server thread/INFO]: [InventorySaver] [History - SQLite] Database connection was successful disconnected.
[14:59:17] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[14:59:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auctionhouse [3.7.1]
[14:59:17] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[14:59:17] [Craft Scheduler Thread - 25 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[14:59:17] [Server thread/INFO]: Done (75.861s)! For help, type "help"
[14:59:17] [Server thread/INFO]: Stopping server
[14:59:17] [Server thread/INFO]: [RentIt] Disabling RentIt v2.9.2
[14:59:17] [Server thread/INFO]: [DisableSignEdit] Disabling DisableSignEdit v1.1.1
[14:59:17] [Server thread/INFO]: DisableSignEdit has disabled.
[14:59:17] [Server thread/INFO]: [BigDoorsPhysics] Disabling BigDoorsPhysics v2.4.2
[14:59:17] [Server thread/INFO]: [BigDoorsPhysics] Removing leftover colliders
[14:59:17] [Server thread/INFO]: [MythicCrucible] Disabling MythicCrucible v2.0.0-SNAPSHOT
[14:59:17] [Server thread/INFO]: [PlayerParticlesPremium] Disabling PlayerParticlesPremium v1.0.0-ALPHA
[14:59:17] [Server thread/INFO]: [MyCommand] Disabling MyCommand v5.7.4
[14:59:17] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[14:59:17] [Server thread/INFO]: | Tasks : Stopped all tasks.
[14:59:17] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*    Bye!   *-=-=-=-=-=-=-=-=-=-=-*
[14:59:17] [Server thread/INFO]: [AntiPopup] Disabling AntiPopup v7.3
[14:59:17] [Server thread/INFO]: [AntiPopup] Disabled PacketEvents.
[14:59:17] [Server thread/INFO]: [NekoTraps] Disabling NekoTraps v1.4.8
[14:59:17] [Server thread/INFO]: [Aurora] Disabling Aurora v5.7
[14:59:17] [Server thread/ERROR]: Error occurred while disabling Aurora v5.7
java.lang.NullPointerException: Cannot invoke "com.zenya.aurora.util.ext.LightAPI.disable()" because "this.lightAPI" is null
    at com.zenya.aurora.Aurora.onDisable(Aurora.java:103) ~[Aurora 5.7.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:290) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:223) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:147) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:92) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:528) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.disablePlugins(CraftServer.java:570) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:974) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:822) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1265) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:59:17] [Server thread/INFO]: [SimpleGlow] Disabling SimpleGlow v2.0
[14:59:17] [Server thread/INFO]: [SimpleGlow] Colours Unregistered
[14:59:17] [Server thread/INFO]: [OreRegenerator] Disabling OreRegenerator v2.3.8
[14:59:17] [Server thread/INFO]: [CustomCrops] Disabling CustomCrops v3.4.3.1
[14:59:17] [Server thread/INFO]: [BigDoorsOpener] Disabling BigDoorsOpener v2.5.2
[14:59:17] [Server thread/INFO]: [SmoothTimber] Disabling SmoothTimber v1.25.0
[14:59:17] [Server thread/INFO]: [WorldGuardExtraFlags] Disabling WorldGuardExtraFlags v4.2.3
[14:59:17] [Server thread/INFO]: [PlayerKits] Disabling PlayerKits v2.27.1
[14:59:17] [Server thread/INFO]: [PlayerKits] Has been disabled! Version: 2.27.1
[14:59:17] [Server thread/INFO]: [InteractionVisualizer] Disabling InteractionVisualizer v1.18.8.0
[14:59:17] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion interactionvisualizer
[14:59:17] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin InteractionVisualizer was disabled.
[14:59:17] [Server thread/INFO]: [InteractionVisualizer] Saving player preferences bitmask index, do not halt the server.
[14:59:17] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been disabled!
[14:59:17] [Server thread/INFO]: [RAMCleanerPLUS] Disabling RAMCleanerPLUS v2.0.8
[14:59:17] [Server thread/INFO]: [AdvancedCrates] Disabling AdvancedCrates v3.9.47
[14:59:17] [Server thread/INFO]: [ItemJoin] Disabling ItemJoin v6.0.5-RELEASE-b928
[14:59:17] [Server thread/INFO]: [DungeonMMO] Disabling DungeonMMO v2.2.3
[14:59:17] [Server thread/INFO]: [AntiCombatLog] Disabling AntiCombatLog v2.6.0
[14:59:17] [Server thread/INFO]: [AntiCombatLog] Disabling AntiCombatLog!
[14:59:17] [Server thread/INFO]: [AntiCombatLog] Disabling plugin hooks...
[14:59:17] [Server thread/INFO]: [AntiCombatLog] Despawning current combat logged NPCs.
[14:59:17] [Server thread/INFO]: [RealDualWield] Disabling RealDualWield v1.1.37
[14:59:17] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Disabling InteractiveChatDiscordSrvAddon v4.2.9.0
[14:59:17] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Disabled!
[14:59:17] [Server thread/INFO]: [AnimatedArchitecture] Disabling AnimatedArchitecture v0.5
[14:59:17] [Server thread/INFO]: [CitizensCMD] Disabling CitizensCMD v2.7.0
[14:59:17] [Server thread/INFO]: [ExecutableBlocks] Disabling ExecutableBlocks v4.24.3.23
[14:59:17] [Server thread/INFO]: [MCPets] Disabling MCPets v4.1.2
[14:59:17] [Server thread/INFO]: -=-=-=-= MCPets disable =-=-=-=-
[14:59:17] [Server thread/INFO]:           See you soon
[14:59:17] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[14:59:17] [Server thread/INFO]: [Interactions] Disabling Interactions v2.3.1
[14:59:17] [Server thread/INFO]: [Interactions]Has been disabled! Version: 2.3.1
[14:59:17] [Server thread/INFO]: [EmployMe] Disabling EmployMe v1.2.3
[14:59:17] [Server thread/INFO]: [pv-addon-sculk] Disabling pv-addon-sculk v1.0.0
[14:59:17] [Server thread/INFO]: [TAB] Disabling TAB v4.1.2
[14:59:17] [Server thread/INFO]: [TAB] Disabled in 0ms
[14:59:17] [Server thread/INFO]: [pv-addon-broadcast] Disabling pv-addon-broadcast v1.0.1
[14:59:17] [Server thread/INFO]: [PlasmoVoice] Addon pv-addon-broadcast v1.0.1 by Apehum unloaded
[14:59:17] [Server thread/INFO]: [CraftyVehiclesModelBuilder] Disabling CraftyVehiclesModelBuilder v1.0.0
[14:59:17] [Server thread/INFO]: [AngelChest] Disabling AngelChest v11.0.1
[14:59:17] [Server thread/INFO]: [AuctionHouse] Disabling AuctionHouse v3.7.1
[14:59:17] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion auctionhouse
[14:59:17] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin AuctionHouse was disabled.
[14:59:17] [Server thread/INFO]: [AuctionHouse] Saving auctions data
[14:59:17] [Server thread/INFO]: [SuperHoppers] Disabling SuperHoppers v1.4.3
[14:59:17] [Server thread/INFO]: [ExecutableEvents] Disabling ExecutableEvents v2.24.3.23
[14:59:17] [Server thread/INFO]: [SCore] Disabling SCore v4.24.3.23
[14:59:17] [Server thread/INFO]: SCore Save UsagePerDay....
[14:59:17] [Server thread/INFO]: SCore Save UsagePerDay done !
[14:59:17] [Server thread/INFO]: SCore Save Commands...
[14:59:17] [Server thread/INFO]: SCore Save Commands done !
[14:59:17] [Server thread/INFO]: SCore Save Cooldowns...
[14:59:17] [Server thread/INFO]: SCore Save Cooldowns done !
[14:59:17] [Server thread/INFO]: [ElytraRacing] Disabling ElytraRacing v1.5.3.18
[14:59:17] [Server thread/INFO]: [OpenRP] Disabling OpenRP v2.3.5
[14:59:17] [Server thread/INFO]: [UltraRepair] Disabling UltraRepair v4.1.6
[14:59:17] [Server thread/INFO]: [UltraRepair] UltraRepair v4.1.6 by Demeng has been disabled.
[14:59:17] [Server thread/INFO]: [AutoCraft] Disabling AutoCraft v1.0.4
[14:59:17] [Server thread/INFO]: [AutoPluginLoader] Disabling AutoPluginLoader v1.3.1
[14:59:17] [Server thread/INFO]: [Terra] Disabling Terra v6.4.3-BETA+ab60f14ff
[14:59:17] [Server thread/INFO]: [DirectionalBlock] Disabling DirectionalBlock v1.4.1
[14:59:17] [Server thread/INFO]: [TutorialCreator] Disabling TutorialCreator v1.26.2
[14:59:17] [Server thread/INFO]: [TutorialCreator] TutorialCreator by Freeforever24 successfully stopped.
[14:59:17] [Server thread/INFO]: [MarriageMaster] Disabling MarriageMaster v2.7.3
[14:59:17] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully unregistered!
[14:59:17] [Server thread/INFO]: [MarriageMaster] Cleaning database cache.
[14:59:17] [Server thread/INFO]: [MarriageMaster] Database cache cleaned.
[14:59:17] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Shutdown initiated...
[14:59:17] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Shutdown completed.
[14:59:17] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been disabled.  :( 
[14:59:17] [Server thread/INFO]: [NoPortals] Disabling NoPortals v2.2
[14:59:17] [Server thread/INFO]: [NoPortals] NoPortals v2.2 disabled
[14:59:17] [Server thread/INFO]: [CraftyVehicles] Disabling CraftyVehicles v1.0.3
[14:59:17] [Server thread/INFO]: [TradeSystem] Disabling TradeSystem v2.5.3
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]: __________________________________________________________
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]:                        TradeSystem [2.5.3]
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]: Status:
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]: MC-Version: 1.20.4 (R0.1-SNAPSHOT, Paper)
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]:   > Cancelling all active trades
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]: Finished (2ms)
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]: __________________________________________________________
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]: [ArmorStandEditor] Disabling ArmorStandEditor v1.5.4
[14:59:17] [Server thread/INFO]: [ArmorStandEditor] Plugin disabled.
[14:59:17] [Server thread/INFO]: [Vegas] Disabling Vegas v2.0
[14:59:17] [Server thread/INFO]: [Cannons] Disabling Cannons v2.5.12
[14:59:17] [Server thread/INFO]: [Cannons] Wait until scheduler is finished
[14:59:17] [Server thread/INFO]: [Cannons] Scheduler finished
[14:59:17] [Server thread/INFO]: [Cannons] Cannons plugin v2.5.12 has been disabled
[14:59:17] [Server thread/INFO]: [BetterRevive] Disabling BetterRevive v0.9.1-BETA
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]: [BetterRevive] Plugin has been disabled!
[14:59:17] [Server thread/INFO]: [BetterRevive] Thank you for using my plugin!
[14:59:17] [Server thread/INFO]:  
[14:59:17] [Server thread/INFO]: [Anvil Formatting] Disabling AnvilFormatting v1.0.4-1.17+
[14:59:17] [Server thread/INFO]: [HiddenArmor] Disabling HiddenArmor v1.1.2
[14:59:17] [Server thread/INFO]: [SetLobby] Disabling SetLobby v1.3
[14:59:17] [Server thread/INFO]: SetLobby v1.3 has been disabled.
[14:59:17] [Server thread/INFO]: [DeluxeMenus] Disabling DeluxeMenus v1.14.0-Release
[14:59:17] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.8.0
[14:59:17] [pool-100-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[14:59:17] [pool-100-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[14:59:17] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[14:59:17] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[14:59:17] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 disabled.
[14:59:17] [Server thread/INFO]: [FFMpegAPI] Disabling FFMpegAPI v1.0.0
[14:59:17] [Server thread/INFO]: [TreeAssist] Disabling TreeAssist v7.3.51
[14:59:17] [Server thread/INFO]: [YamipaPlugin] Disabling YamipaPlugin v1.3.1
[14:59:17] [Server thread/INFO]: [BoomBox] Disabling BoomBox v2.0
[14:59:17] [Server thread/INFO]: [EvenMoreFish] Disabling EvenMoreFish v1.6.11.17
[14:59:17] [Server thread/ERROR]: Error occurred while disabling EvenMoreFish v1.6.11.17
org.bukkit.plugin.IllegalPluginAccessException: Plugin attempted to register task while disabled
    at io.papermc.paper.threadedregions.scheduler.FoliaGlobalRegionScheduler.runDelayed(FoliaGlobalRegionScheduler.java:65) ~[paper-1.20.4.jar:?]
    at io.papermc.paper.threadedregions.scheduler.FoliaGlobalRegionScheduler.run(FoliaGlobalRegionScheduler.java:53) ~[paper-1.20.4.jar:?]
    at com.github.Anon8281.universalScheduler.foliaScheduler.FoliaScheduler.runTask(FoliaScheduler.java:49) ~[even-more-fish-1.6.11.17.jar:?]
    at com.oheers.fish.EvenMoreFish.saveUserData(EvenMoreFish.java:392) ~[even-more-fish-1.6.11.17.jar:?]
    at com.oheers.fish.EvenMoreFish.onDisable(EvenMoreFish.java:247) ~[even-more-fish-1.6.11.17.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:290) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:223) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:147) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:92) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:528) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.disablePlugins(CraftServer.java:570) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:974) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:822) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1265) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:59:17] [Server thread/INFO]: [AdvancedJoinCommands] Disabling AdvancedJoinCommands v1.0.0
[14:59:17] [Server thread/INFO]: [zDrawer] Disabling zDrawer v1.0.6
[14:59:17] [Server thread/INFO]: [zDrawer v1.0.6] === DISABLE START ===
[14:59:17] [Server thread/INFO]: [zDrawer v1.0.6] === DISABLE DONE (1ms) ===
[14:59:17] [Server thread/INFO]: [LevelledMobs] Disabling LevelledMobs v3.15.3 b834
[14:59:17] [Server thread/INFO]: LevelledMobs: Tasks: Shutting down other async tasks...
[14:59:17] [Server thread/INFO]: LevelledMobs: Shut-down complete (took 0ms)
[14:59:17] [Server thread/INFO]: [RTUBiomeLib] Disabling RTUBiomeLib v1.9.0
[14:59:17] [Server thread/INFO]: [ RTUBiomeLib ] Disable!
[14:59:17] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v4.9.2
[14:59:17] [Server thread/INFO]: [KingdomsX] Disabling Kingdoms v1.16.20.5
[14:59:17] [Server thread/INFO]: [KingdomsX] Disabling thread workers...
[14:59:17] [Server thread/INFO]: [KingdomsX] Closing the logger...
[14:59:17] [Server thread/INFO]: [KingdomsX] Unregistering plugin services...
[14:59:17] [Server thread/INFO]: [DiscordSRV] API listener org.kingdoms.services.ServiceDiscordSRV unsubscribed
[14:59:17] [Server thread/INFO]: [KingdomsX] Removing kingdom mobs...
[14:59:17] [Server thread/INFO]: [KingdomsX] Removing temporary entities...
[14:59:17] [Server thread/INFO]: [KingdomsX] Removing temporary items...
[14:59:17] [Server thread/INFO]: [KingdomsX] Force regenerating all exploded stuff...
[14:59:17] [Server thread/INFO]: [KingdomsX] Saving kingdoms...
[14:59:17] [Server thread/INFO]: [KingdomsX] Saving nations...
[14:59:17] [Server thread/INFO]: [KingdomsX] Saving lands...
[14:59:17] [Server thread/INFO]: [KingdomsX] Saving players...
[14:59:17] [Server thread/INFO]: [KingdomsX] Saving mails...
[14:59:17] [Server thread/INFO]: [KingdomsX] Done, goodbye cruel world!
[14:59:17] [Server thread/INFO]: [BigDoors] Disabling BigDoors vAlpha 0.1.8.49 (b1159)
[14:59:17] [Server thread/INFO]: [OBTeam] Disabling OBTeam v1.3
[14:59:17] [Server thread/INFO]: [InteractiveChat] Disabling InteractiveChat v4.2.9.0
[14:59:17] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion interactivechat
[14:59:17] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin InteractiveChat was disabled.
[14:59:17] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Disabled!
[14:59:17] [Server thread/INFO]: [Quests] Disabling Quests v5.0.1-b454
[14:59:17] [Server thread/INFO]: [Quests] Saving Quester data...
[14:59:17] [Server thread/INFO]: [Quests] Closing storage...
[14:59:17] [Server thread/INFO]: [EconomyShopGUI-Premium] Disabling EconomyShopGUI-Premium v5.9.5
[14:59:17] [Server thread/ERROR]: Error occurred while disabling EconomyShopGUI-Premium v5.9.5
java.lang.NullPointerException: Cannot invoke "me.gypopo.economyshopgui.files.ScheduleCache.cacheDelayedCommands(java.util.List)" because the return value of "me.gypopo.economyshopgui.EconomyShopGUI.getScheduleCache()" is null
    at me.gypopo.economyshopgui.providers.DelayedCommandProvider.cacheDelayedCommands(DelayedCommandProvider.java:87) ~[EconomyShopGUI-Premium-5.9.5.jar:?]
    at me.gypopo.economyshopgui.EconomyShopGUI.stopProviders(EconomyShopGUI.java:854) ~[EconomyShopGUI-Premium-5.9.5.jar:?]
    at me.gypopo.economyshopgui.EconomyShopGUI.onDisable(EconomyShopGUI.java:344) ~[EconomyShopGUI-Premium-5.9.5.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:290) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:223) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:147) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:92) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:528) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.disablePlugins(CraftServer.java:570) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:974) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:822) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1265) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:59:17] [Server thread/INFO]: [PlasmoVoiceAddon] Disabling PlasmoVoiceAddon v1.1.0
[14:59:17] [Server thread/INFO]: [NoteBlockAPI] Disabling NoteBlockAPI v1.6.2
[14:59:17] [Server thread/INFO]: [zMenu] Disabling zMenu v1.0.2.8
[14:59:17] [Server thread/INFO]: [zMenu v1.0.2.8] === DISABLE START ===
[14:59:17] [Server thread/INFO]: [zMenu v1.0.2.8] === DISABLE DONE (1ms) ===
[14:59:17] [Server thread/INFO]: [AuthMe] Disabling AuthMe v5.6.0-beta2-b2453
[14:59:17] [Server thread/INFO]: [AuthMe] Waiting for 0 tasks to finish
[14:59:17] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0-beta2-b2453 disabled!
[14:59:17] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.27.0
[14:59:17] [Server thread/INFO]: [ExcellentEnchants] Disabling ExcellentEnchants v3.6.5
[14:59:17] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.21.0-dev+73-2cb0af0
[14:59:17] [Server thread/INFO]: [GPS] Disabling GPS v2.19.27
[14:59:17] [Server thread/INFO]: [PlasmoVoice] Disabling PlasmoVoice v2.0.4
[14:59:17] [Server thread/INFO]: [PlasmoVoice] UDP server is stopped
[14:59:17] [Server thread/INFO]: [PlasmoVoice] Addon pv-addon-sculk v1.0.0 by Apehum unloaded
[14:59:17] [Server thread/INFO]: [Jobs] Disabling Jobs v5.2.2.3
[14:59:17] [Server thread/INFO]: ------------- Jobs -------------
[14:59:17] [Server thread/INFO]: Cleared boss bar cache
[14:59:17] [Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
[14:59:17] [Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
[14:59:17] [Server thread/INFO]: Saved player data
[14:59:17] [Server thread/INFO]: Closed database connection
[14:59:17] [Server thread/INFO]: ------------------------------------
[14:59:17] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v3.6.3-beta-13
[14:59:17] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.21.0-dev+73-2cb0af0
[14:59:17] [Server thread/INFO]: [AzLink] Disabling AzLink v1.3.4
[14:59:17] [Server thread/INFO]: [AzLink] Shutting down scheduler
[14:59:17] [Server thread/INFO]: [AzLink] Stopping HTTP server
[14:59:17] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.12
[14:59:17] [Server thread/INFO]: [CMILib] Disabling CMILib v1.4.5.2
[14:59:17] [Server thread/INFO]: [Orebfuscator] Disabling Orebfuscator v5.4.3
[14:59:17] [Server thread/INFO]: [VendingMachines] Disabling VendingMachines v1.5.5
[14:59:17] [Server thread/INFO]: [ExecutableItems] Disabling ExecutableItems v6.24.3.23
[14:59:17] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.45
[14:59:17] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.0-dev+73-2cb0af0
[14:59:17] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[14:59:17] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR4.0.5
[14:59:17] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.6.1-SNAPSHOT-3261dfe4
[14:59:17] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[14:59:17] [Server thread/INFO]: [MythicMobs] - 
[14:59:17] [Server thread/INFO]: [MythicMobs] - Unloading Mythic...
[14:59:17] [Server thread/INFO]: [MythicMobs] - 
[14:59:17] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[14:59:17] [Server thread/INFO]: [MythicMobs] - Spawners saved and unloaded...
[14:59:17] [Server thread/INFO]: [MythicMobs] - Mobs saved and unloaded...
[14:59:17] [Server thread/INFO]: [MythicMobs] - Variables saved...
[14:59:17] [Server thread/INFO]: [MythicMobs] - All active settings have been saved!
[14:59:17] [Server thread/INFO]: [MythicMobs] - Mythic has been unloaded!
[14:59:17] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[14:59:17] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.33-SNAPSHOT (build 3369)
[14:59:17] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v22.2
[14:59:17] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[14:59:17] [Craft Scheduler Thread - 26 - LevelledMobs/INFO]: LevelledMobs: Mob processing queue Manager has exited
[14:59:17] [Craft Scheduler Thread - 27 - LevelledMobs/INFO]: LevelledMobs: Nametag update queue Manager has exited
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]: java.lang.IllegalStateException: zip file closed
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.util.zip.ZipFile.ensureOpen(ZipFile.java:846)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.util.zip.ZipFile.getEntry(ZipFile.java:338)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.util.jar.JarFile.getEntry(JarFile.java:516)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.util.jar.JarFile.getJarEntry(JarFile.java:471)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:209)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChat-4.2.9.0.jar//com.loohp.interactivechat.libs.org.apache.commons.compress.archivers.zip.ZipArchiveInputStream.isFirstByteOfEocdSig(ZipArchiveInputStream.java:1221)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChat-4.2.9.0.jar//com.loohp.interactivechat.libs.org.apache.commons.compress.archivers.zip.ZipArchiveInputStream.findEocdRecord(ZipArchiveInputStream.java:1151)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChat-4.2.9.0.jar//com.loohp.interactivechat.libs.org.apache.commons.compress.archivers.zip.ZipArchiveInputStream.skipRemainderOfArchive(ZipArchiveInputStream.java:1127)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChat-4.2.9.0.jar//com.loohp.interactivechat.libs.org.apache.commons.compress.archivers.zip.ZipArchiveInputStream.getNextZipEntry(ZipArchiveInputStream.java:293)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChatDiscordSrvAddon-4.2.9.0.jar//com.loohp.interactivechatdiscordsrvaddon.resources.ResourceDownloadManager.downloadResources(ResourceDownloadManager.java:148)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChatDiscordSrvAddon-4.2.9.0.jar//com.loohp.interactivechatdiscordsrvaddon.AssetsDownloader.loadAssets(AssetsDownloader.java:117)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at InteractiveChatDiscordSrvAddon-4.2.9.0.jar//com.loohp.interactivechatdiscordsrvaddon.InteractiveChatDiscordSrvAddon.lambda$reloadTextures$17(InteractiveChatDiscordSrvAddon.java:666)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftTask.run(CraftTask.java:101)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at org.bukkit.craftbukkit.v1_20_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[14:59:18] [Craft Scheduler Thread - 30 - InteractiveChatDiscordSrvAddon/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[14:59:18] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v22.2
[14:59:18] [Server thread/INFO]: [NBTAPI] Disabling NBTAPI v2.12.2
[14:59:18] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.8.6
[14:59:18] [Server thread/INFO]: [My_Worlds] Disabling My_Worlds v1.20.4-v3
[14:59:18] [Server thread/INFO]: [My_Worlds] My_Worlds disabled!
[14:59:18] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.9+5934e49
[14:59:18] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[14:59:18] [Server thread/INFO]: [BKCommonLib] Disabling BKCommonLib v1.20.4-v3
[14:59:18] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.5
[14:59:18] [Server thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.9.2-SNAPSHOT-697;5e234a7
[14:59:18] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[14:59:18] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.2.0-SNAPSHOT-679
[14:59:18] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[14:59:18] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.121
[14:59:18] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[14:59:18] [Server thread/ERROR]: Error occurred while disabling LuckPerms v5.4.121
java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:846) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:338) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:516) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:471) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:209) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:144) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.entrypoint.classloader.group.SpigotPluginClassLoaderGroup.lookupClass(SpigotPluginClassLoaderGroup.java:43) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.entrypoint.classloader.group.SimpleListPluginClassLoaderGroup.getClassByName(SimpleListPluginClassLoaderGroup.java:37) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.entrypoint.classloader.group.LockingClassLoaderGroup.getClassByName(LockingClassLoaderGroup.java:34) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:187) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:580) ~[?:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    at me.lucko.luckperms.lib.caffeine.cache.BoundedLocalCache.values(BoundedLocalCache.java:2639) ~[?:?]
    at me.lucko.luckperms.common.webeditor.store.WebEditorSocketMap.getSockets(WebEditorSocketMap.java:54) ~[?:?]
    at me.lucko.luckperms.common.plugin.AbstractLuckPermsPlugin.disable(AbstractLuckPermsPlugin.java:273) ~[?:?]
    at me.lucko.luckperms.bukkit.LPBukkitBootstrap.onDisable(LPBukkitBootstrap.java:191) ~[?:?]
    at me.lucko.luckperms.bukkit.loader.BukkitLoaderPlugin.onDisable(BukkitLoaderPlugin.java:55) ~[LuckPerms-Bukkit-5.4.121.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:290) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:223) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugins(PaperPluginInstanceManager.java:147) ~[paper-1.20.4.jar:git-Paper-461]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugins(PaperPluginManagerImpl.java:92) ~[paper-1.20.4.jar:git-Paper-461]
    at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:528) ~[paper-api-1.20.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R3.CraftServer.disablePlugins(CraftServer.java:570) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.stopServer(MinecraftServer.java:974) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.dedicated.DedicatedServer.stopServer(DedicatedServer.java:822) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1265) ~[paper-1.20.4.jar:git-Paper-461]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[paper-1.20.4.jar:git-Paper-461]
    at java.lang.Thread.run(Thread.java:1583) ~[?:?]
[14:59:18] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v4.9.3
[14:59:18] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[14:59:23] [Server thread/ERROR]: Nag author(s): '[Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits, md_5, Iaccidentally, drtshock, vemacs, SupaHam, mdcfe, JRoy, pop4959]' of 'Essentials v2.21.0-dev+73-2cb0af0' about the following: This plugin is not properly shutting down its async tasks when it is being shut down. This task may throw errors during the final shutdown logs and might not complete before process dies.
[14:59:23] [Server thread/ERROR]: Nag author(s): '[loohp]' of 'InteractiveChatDiscordSrvAddon v4.2.9.0' about the following: This plugin is not properly shutting down its async tasks when it is being shut down. This task may throw errors during the final shutdown logs and might not complete before process dies.
[14:59:23] [Server thread/INFO]: Saving players
[14:59:23] [Server thread/INFO]: Saving worlds
[14:59:23] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[14:59:23] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[14:59:23] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[14:59:23] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[14:59:24] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world' in 1.00s
[14:59:24] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[14:59:24] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[14:59:24] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[14:59:24] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[14:59:24] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[14:59:25] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_nether' in 0.61s
[14:59:25] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[14:59:25] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[14:59:25] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[14:59:25] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[14:59:25] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[14:59:25] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.12s
[14:59:25] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[14:59:25] [Server thread/INFO]: Saving chunks for level 'ServerLevel[model-builder]'/minecraft:model-builder
[14:59:25] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'model-builder'
[14:59:25] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'model-builder'
[14:59:25] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'model-builder'
[14:59:25] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'model-builder' in 0.12s
[14:59:25] [Server thread/INFO]: ThreadedAnvilChunkStorage (model-builder): All chunks are saved
[14:59:25] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[14:59:25] [Server thread/INFO]: Flushing Chunk IO
[14:59:25] [Server thread/INFO]: Closing Thread Pool
[14:59:25] [Server thread/INFO]: Closing Server