Paste #102432: Citizens

Date: 2022/10/20 15:06:52 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[23:01:55] [ServerMain/INFO]: Building unoptimized datafixer
[23:01:56] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[23:01:58] [ServerMain/INFO]: Loaded 7 recipes
[23:01:59] [Server thread/INFO]: Starting minecraft server version 1.19.2
[23:01:59] [Server thread/INFO]: Loading properties
[23:01:59] [Server thread/INFO]: This server is running Paper version git-Paper-220 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: 3dcfec4)
[23:01:59] [Server thread/INFO]: Server Ping Player Sample Count: 12
[23:01:59] [Server thread/INFO]: Using 4 threads for Netty based IO
[23:01:59] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[23:01:59] [Server thread/INFO]: Default game type: SURVIVAL
[23:01:59] [Server thread/INFO]: Generating keypair
[23:01:59] [Server thread/INFO]: Starting Minecraft server on 91.109.116.41:25578
[23:01:59] [Server thread/INFO]: Using epoll channel type
[23:01:59] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[23:01:59] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[23:01:59] [Server thread/ERROR]: Could not load 'plugins/MobArenaPlaceholders.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:178) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:155) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.loadPlugins(CraftServer.java:423) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-220]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.io.FileNotFoundException: Jar does not contain plugin.yml
    ... 7 more
[23:01:59] [Server thread/ERROR]: Could not load 'plugins/citizens-integration-1.1.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:186) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:155) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.loadPlugins(CraftServer.java:423) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-220]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.util.zip.ZipException: zip file is empty
    at java.util.zip.ZipFile$Source.zerror(ZipFile.java:1598) ~[?:?]
    at java.util.zip.ZipFile$Source.findEND(ZipFile.java:1382) ~[?:?]
    at java.util.zip.ZipFile$Source.initCEN(ZipFile.java:1477) ~[?:?]
    at java.util.zip.ZipFile$Source.<init>(ZipFile.java:1315) ~[?:?]
    at java.util.zip.ZipFile$Source.get(ZipFile.java:1277) ~[?:?]
    at java.util.zip.ZipFile$CleanableResource.<init>(ZipFile.java:709) ~[?:?]
    at java.util.zip.ZipFile.<init>(ZipFile.java:243) ~[?:?]
    at java.util.zip.ZipFile.<init>(ZipFile.java:172) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:347) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:318) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:284) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:174) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    ... 6 more
[23:02:00] [Server thread/ERROR]: Ambiguous plugin name `SupremeTags' for files `plugins/SupremeTags-1.4.4(1).jar' and `plugins/SupremeTags-1.4.4.jar' in `plugins'
[23:02:00] [Server thread/ERROR]: Ambiguous plugin name `CTFly' for files `plugins/CTFly-1.3.jar' and `plugins/CTFly-1.2(1).jar' in `plugins'
[23:02:00] [Server thread/ERROR]: Ambiguous plugin name `NBTAPI' for files `plugins/item-nbt-api-plugin-2.10.0.jar' and `plugins/item-nbt-api-plugin-2.10.0(1).jar' in `plugins'
[23:02:00] [Server thread/ERROR]: Could not load 'plugins/goBrush-3.8.0-50.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [FastAsyncWorldEdit]. Please download and install these plugins to run 'goBrush'.
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:287) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.loadPlugins(CraftServer.java:423) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:278) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-220]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:02:00] [Server thread/INFO]: [ChatBot] Loading 3 libraries... please wait
[23:02:01] [Server thread/INFO]: [ChatBot] Loaded library /home/minecraft/multicraft/servers/smp/libraries/ca/pjer/chatter-bot-api/2.0.1/chatter-bot-api-2.0.1.jar
[23:02:01] [Server thread/INFO]: [ChatBot] Loaded library /home/minecraft/multicraft/servers/smp/libraries/com/squareup/okhttp3/okhttp/3.6.0/okhttp-3.6.0.jar
[23:02:01] [Server thread/INFO]: [ChatBot] Loaded library /home/minecraft/multicraft/servers/smp/libraries/com/squareup/okio/okio/1.11.0/okio-1.11.0.jar
[23:02:01] [Server thread/INFO]: [ChatBot] Loaded library /home/minecraft/multicraft/servers/smp/libraries/com/fasterxml/jackson/core/jackson-databind/2.8.6/jackson-databind-2.8.6.jar
[23:02:01] [Server thread/INFO]: [ChatBot] Loaded library /home/minecraft/multicraft/servers/smp/libraries/com/fasterxml/jackson/core/jackson-annotations/2.8.0/jackson-annotations-2.8.0.jar
[23:02:01] [Server thread/INFO]: [ChatBot] Loaded library /home/minecraft/multicraft/servers/smp/libraries/com/fasterxml/jackson/core/jackson-core/2.8.6/jackson-core-2.8.6.jar
[23:02:01] [Server thread/INFO]: [ChatBot] Loaded library /home/minecraft/multicraft/servers/smp/libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
[23:02:01] [Server thread/INFO]: [ChatBot] Loaded library /home/minecraft/multicraft/servers/smp/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[23:02:01] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_19_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[23:02:05] [Server thread/WARN]: Legacy plugin PartyGames v6.0 does not specify an api-version.
[23:02:05] [Server thread/WARN]: Legacy plugin AdvancedGUI v2.2.2 does not specify an api-version.
[23:02:05] [Server thread/INFO]: [RewardsLite] Loading 1 libraries... please wait
[23:02:05] [Server thread/INFO]: [RewardsLite] Loaded library /home/minecraft/multicraft/servers/smp/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[23:02:05] [Server thread/INFO]: [RewardsLite] Loaded library /home/minecraft/multicraft/servers/smp/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[23:02:05] [Server thread/INFO]: [ProdigyNightclub] Loading 1 libraries... please wait
[23:02:05] [Server thread/INFO]: [ProdigyNightclub] Loaded library /home/minecraft/multicraft/servers/smp/libraries/xyz/xenondevs/particle/1.8.1/particle-1.8.1.jar
[23:02:05] [Server thread/WARN]: Legacy plugin SkinStatueBuilder v1.0.1 does not specify an api-version.
[23:02:06] [Server thread/INFO]: [PremiumVanish] Loading 1 libraries... please wait
[23:02:06] [Server thread/INFO]: [PremiumVanish] Loaded library /home/minecraft/multicraft/servers/smp/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[23:02:06] [Server thread/INFO]: [PremiumVanish] Loaded library /home/minecraft/multicraft/servers/smp/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[23:02:06] [Server thread/INFO]: [BigDoors] Loading 1 libraries... please wait
[23:02:06] [Server thread/INFO]: [BigDoors] Loaded library /home/minecraft/multicraft/servers/smp/libraries/net/bytebuddy/byte-buddy/1.12.10/byte-buddy-1.12.10.jar
[23:02:06] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait
[23:02:06] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/smp/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[23:02:06] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/smp/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[23:02:06] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/smp/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[23:02:06] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/smp/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[23:02:06] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/smp/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[23:02:06] [Server thread/INFO]: [VotingPlugin] Loaded library /home/minecraft/multicraft/servers/smp/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[23:02:07] [Server thread/INFO]: [eco] Initializing eco
[23:02:07] [Server thread/WARN]: [eco] Loaded class org.slf4j.impl.StaticLoggerBinder from ajParkour v2.12.10 which is not a depend or softdepend of this plugin.
[23:02:10] [Server thread/INFO]: [com.willfp.eco.libs.reflections.Reflections] Reflections took 3376 ms to scan 113 urls, producing 128 keys and 51951 values 
[23:02:10] [Server thread/INFO]: [StatTrackers] Initializing StatTrackers
[23:02:13] [Server thread/INFO]: [com.willfp.eco.libs.reflections.Reflections] Reflections took 2367 ms to scan 113 urls, producing 76 keys and 34187 values 
[23:02:13] [Server thread/INFO]: [EcoPets] Initializing EcoPets
[23:02:15] [Server thread/INFO]: [com.willfp.eco.libs.reflections.Reflections] Reflections took 2414 ms to scan 113 urls, producing 78 keys and 35103 values 
[23:02:16] [Server thread/WARN]: Legacy plugin DeluxeCombat_Addon_WG v0.9 does not specify an api-version.
[23:02:16] [Server thread/INFO]: [Boosters] Initializing Boosters
[23:02:18] [Server thread/INFO]: [com.willfp.eco.libs.reflections.Reflections] Reflections took 2374 ms to scan 113 urls, producing 77 keys and 34873 values 
[23:02:18] [Server thread/INFO]: [EcoEnchants] Initializing EcoEnchants
[23:02:21] [Server thread/INFO]: [com.willfp.eco.libs.reflections.Reflections] Reflections took 2392 ms to scan 113 urls, producing 77 keys and 35055 values 
[23:02:21] [Server thread/INFO]: [AltDetector] Loading AltDetector v2.0
[23:02:21] [Server thread/INFO]: [M-Investment] Loading M-Investment v0.1
[23:02:21] [Server thread/INFO]: [UltimateTroll] Loading UltimateTroll v2.0
[23:02:21] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.4.2
[23:02:21] [Server thread/INFO]: [ViaVersion] ViaVersion 4.4.2 is now loaded, injecting!
[23:02:21] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[23:02:21] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[23:02:21] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[23:02:21] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[23:02:21] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[23:02:21] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[23:02:21] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[23:02:21] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[23:02:21] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[23:02:21] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[23:02:21] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.10.0
[23:02:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[23:02:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[23:02:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:02:21] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AltDetector' to create a bStats instance!
[23:02:21] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.4.2
[23:02:21] [Server thread/INFO]: [ViaBackwards] Loading translations...
[23:02:21] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[23:02:21] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[23:02:21] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[23:02:21] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[23:02:22] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[23:02:22] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[23:02:22] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[23:02:22] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[23:02:22] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[23:02:22] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[23:02:22] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[23:02:22] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[23:02:22] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.41
[23:02:22] [Thread-14/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[23:02:22] [Server thread/INFO]: [vilib] Loading vilib v1.1.0
[23:02:22] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
[23:02:22] [Server thread/INFO]: [OTroll] Loading OTroll v1.7.1
[23:02:22] [Server thread/INFO]: [squaremap] Loading squaremap v1.1.8
[23:02:22] [Server thread/INFO]: [KixsChatGames] Loading KixsChatGames v1.9.9
[23:02:22] [Server thread/INFO]: [TangledMaze] Loading TangledMaze v2.0.0
[23:02:22] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b602
[23:02:22] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.2) has not yet been tested! Proceed with caution.
[23:02:23] [Server thread/INFO]: [VoidSpawn] Loading VoidSpawn v1.20.0
[23:02:23] [Server thread/INFO]: [Minepacks] Loading Minepacks v2.4.8-Release
[23:02:23] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[23:02:23] [Server thread/INFO]: [ImageOnMap] Loading ImageOnMap v5.1.0
[23:02:23] [Server thread/INFO]: [squaremarker] Loading squaremarker v1.0.2
[23:02:23] [Server thread/INFO]: [GrapplingHook] Loading GrapplingHook v1.6.3
[23:02:23] [Server thread/INFO]: [ChatSentry] Loading ChatSentry v5.3.1
[23:02:23] [Server thread/INFO]: [PINPrompt] Loading PINPrompt v3.4.3
[23:02:23] [Server thread/INFO]: [DoorsReloaded] Loading DoorsReloaded v1.3.1
[23:02:23] [Server thread/INFO]: [Chunky] Loading Chunky v1.2.217
[23:02:23] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[23:02:23] [Server thread/INFO]: [UltimateAutoRestart] Loading UltimateAutoRestart vBuild 52c
[23:02:23] [Server thread/INFO]: [Planetoids] Loading Planetoids v0.3.2-BETA
[23:02:23] [Server thread/INFO]: [PL-Hide] Loading PL-Hide v1.5.21
[23:02:23] [Server thread/INFO]: [VoxelSniper] Loading VoxelSniper v8.1.0
[23:02:23] [Server thread/INFO]: [NoteBlockAPI] Loading NoteBlockAPI v1.6.1-SNAPSHOT
[23:02:23] [Server thread/INFO]: [HeadsPluginAPI] Loading HeadsPluginAPI v3.1.0
[23:02:23] [Server thread/INFO]: [RedeemableCodes] Loading RedeemableCodes vBuild 37
[23:02:23] [Server thread/INFO]: [JukeBox] Loading JukeBox v1.20.8
[23:02:23] [Server thread/INFO]: [MineStore] Loading MineStore v1.2.0
[23:02:23] [Server thread/INFO]: [JShader] Loading JShader v1.1
[23:02:23] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[23:02:23] [Server thread/INFO]: [HeadSweeper] Loading HeadSweeper v1.7.3
[23:02:23] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.31
[23:02:23] [Server thread/INFO]: [PlayerStats] Loading PlayerStats v1.6.1
[23:02:23] [Server thread/INFO]: [ExtraFireworks] Loading ExtraFireworks v1.2.10 (build 91)
[23:02:23] [Server thread/INFO]: [DropEdit2] Loading DropEdit2 v1.1.50-SNAPSHOT
[23:02:23] [Server thread/INFO]: [floodgate] Loading floodgate v2.2.0-SNAPSHOT (b73-4f36112)
[23:02:23] [Server thread/INFO]: [floodgate] Took 334ms to boot Floodgate
[23:02:23] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[23:02:23] [Server thread/INFO]: [GlobalStats] Loading GlobalStats v1.5
[23:02:23] [Server thread/INFO]: [Join Commands] Loading JoinCommands v2.0.9
[23:02:23] [Server thread/INFO]: [RPGHorses] Loading RPGHorses v1.2.19
[23:02:23] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v3.0.0-SNAPSHOT-b226
[23:02:23] [Server thread/INFO]: [EmployMe] Loading EmployMe v1.0.1
[23:02:23] [Server thread/INFO]: [BungeeGuard] Loading BungeeGuard v1.3-SNAPSHOT
[23:02:23] [Server thread/INFO]: [FunGames] Loading FunGames v1.0
[23:02:23] [Server thread/INFO]: [Vegas] Loading Vegas v3.0
[23:02:23] [Server thread/INFO]: [PlayerKits] Loading PlayerKits v2.24.3
[23:02:23] [Server thread/INFO]: [spark] Loading spark v1.9.42
[23:02:23] [Server thread/INFO]: [ccRides] Loading ccRides v1.7.8
[23:02:23] [Server thread/INFO]: [ChunkyBorder] Loading ChunkyBorder v1.0.70
[23:02:23] [Server thread/INFO]: [SimplePets] Loading SimplePets v5.0-BUILD-190
[23:02:23] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[23:02:23] [Server thread/INFO]: [Vouchers] Loading Vouchers v1.9.9-SNAPSHOT
[23:02:23] [Server thread/INFO]: [ChatBot] Loading ChatBot v6.9
[23:02:23] [Server thread/INFO]: [Arcade] Loading Arcade v1.49c
[23:02:23] [Server thread/INFO]: [PlaceholderSIGN] Loading PlaceholderSIGN v2.0.0
[23:02:23] [Server thread/INFO]: [ChatColor2] Loading ChatColor2 v1.12.4
[23:02:23] [Server thread/INFO]: [PartyGames] Loading PartyGames v6.0
[23:02:23] [Server thread/INFO]: [MobArena] Loading MobArena v0.107
[23:02:23] [Server thread/INFO]: [AdvancedGUI] Loading AdvancedGUI v2.2.2
[23:02:23] [Server thread/INFO]: [Multiverse-Inventories] Loading Multiverse-Inventories v4.2.3-b523
[23:02:23] [Server thread/INFO]: [MinecraftChess] Loading MinecraftChess v2.0
[23:02:23] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.3 build-01/08/2022
[23:02:23] [Server thread/INFO]: [LagAssist] Loading LagAssist v2.29.1
[23:02:23] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1
[23:02:25] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@581bf3ab]
[23:02:25] [Server thread/INFO]: [VentureChat] Loading VentureChat v3.4.4
[23:02:25] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.0
[23:02:25] [Server thread/INFO]: [RewardsLite] Loading RewardsLite v3.1.3
[23:02:25] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.10.4
[23:02:25] [Server thread/INFO]: [JukeBoxPlus] Loading JukeBoxPlus v3.3.1
[23:02:25] [Server thread/INFO]: [RocketPlaceholders] Loading RocketPlaceholders v2.2
[23:02:25] [Server thread/INFO]: [RocketPlaceholders] Loading libraries, please wait..
[23:02:25] [Server thread/INFO]: [RocketPlaceholders] Loaded all libraries in 132ms.
[23:02:25] [Server thread/INFO]: [VentureChatWorkaround] Loading VentureChatWorkaround v1.0.0
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.1
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[jar-relocator]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, jar-relocator]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm-commons]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm-commons]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[HikariCP]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, HikariCP]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[slf4j-api]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, slf4j-api]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[h2]
[23:02:25] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, h2]
[23:02:25] [Server thread/INFO]: [Parkour] Loading Parkour v7.0.5
[23:02:25] [Server thread/INFO]: [MobArenaStats] Loading MobArenaStats v1.0
[23:02:25] [Server thread/INFO]: [TAB-Bridge] Loading TAB-Bridge v2.0.6
[23:02:25] [Server thread/INFO]: [PlayerPoints] Loading PlayerPoints v3.2.4
[23:02:25] [Server thread/INFO]: [InventorySaver] Loading InventorySaver v3.7.2-VERSION-1.19
[23:02:25] [Server thread/INFO]: [IP] Loading IP v4.0.2
[23:02:25] [Server thread/INFO]: [EssentialsGeoIP] Loading EssentialsGeoIP v2.19.0
[23:02:25] [Server thread/INFO]: [TitansBattle] Loading TitansBattle v6.2.0-13497c0
[23:02:25] [Server thread/INFO]: [ParticleToText] Loading ParticleToText v1.2.0
[23:02:25] [Server thread/INFO]: [BeastWithdraw] Loading BeastWithdraw v2.2
[23:02:25] [Server thread/INFO]: [SimplePortals] Loading SimplePortals v1.7.1
[23:02:25] [Server thread/INFO]: [BetterStructures] Loading BetterStructures v1.3.5
[23:02:25] [Server thread/INFO]: [MineChess] Loading MineChess v1.14.1
[23:02:25] [Server thread/INFO]: [DragonSlayer] Loading DragonSlayer v0.12.1_Jeppa
[23:02:25] [Server thread/INFO]: [IPPlus] Loading IPPlus v1.0.0
[23:02:25] [Server thread/INFO]: [DragonTimer] Loading DragonTimer v1.5.8
[23:02:25] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.8-SNAPSHOT+2202-0d2ed82
[23:02:25] [Server thread/INFO]: [ajParkour] Loading ajParkour v2.12.10
[23:02:25] [Server thread/INFO]: [Roulette] Loading Roulette v1.9.2.1-SNAPSHOT
[23:02:25] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.19.0
[23:02:25] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.2
[23:02:25] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.0
[23:02:25] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.13.5
[23:02:25] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.6-DEV-146
[23:02:25] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[23:02:25] [Server thread/INFO]: [ProdigyNightclub] Loading ProdigyNightclub v3.1.0
[23:02:25] [Server thread/INFO]: [KaBoom] Loading KaBoom v1.8.0
[23:02:25] [Server thread/INFO]: [SkinStatueBuilder] Loading SkinStatueBuilder v1.0.1
[23:02:25] [Server thread/INFO]: [Jumpscares] Loading Jumpscares v1.14.5
[23:02:25] [Server thread/INFO]: [GadgetsMenu] Loading GadgetsMenu v5.2.7
[23:02:25] [Server thread/INFO]: [BountyHunters] Loading BountyHunters v2.4.4
[23:02:25] [Server thread/INFO]: [BountyHunters] Hooked onto WorldGuard
[23:02:25] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2654)
[23:02:25] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.16.2
[23:02:25] [LiteBans-0/WARN]: [LiteBans] Loaded class kotlin.reflect.jvm.internal.ReflectionFactoryImpl from eco v6.38.3 which is not a depend or softdepend of this plugin.
[23:02:25] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (286 ms).
[23:02:25] [Server thread/INFO]: [Shopkeepers] Loading config.
[23:02:25] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[23:02:25] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[23:02:25] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[23:02:25] [Server thread/INFO]: [Celebrate] Loading Celebrate v1.0.6
[23:02:25] [Server thread/INFO]: [Celebrate] Successfully hooked WorldGuard.
[23:02:25] [Server thread/INFO]: [PlayerParticles] Loading PlayerParticles v8.2
[23:02:26] [Server thread/INFO]: [UpgradeableSpawners] Loading UpgradeableSpawners v3.2.10
[23:02:26] [Server thread/WARN]: [UpgradeableSpawners] [Config] Time does not exist: period.time
[23:02:26] [Server thread/INFO]: [HeadDisplays] Loading HeadDisplays v1.9.0
[23:02:26] [Server thread/INFO]: [SupremeTags] Loading SupremeTags v1.4.4
[23:02:26] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v4.4.4
[23:02:26] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[23:02:26] [Server thread/INFO]: [WanderingTrades] Loading WanderingTrades v1.7.3
[23:02:26] [Server thread/INFO]: [CitizensCMD] Loading CitizensCMD v2.6.6
[23:02:26] [Server thread/INFO]: [Duels] Loading Duels v3.5.2
[23:02:26] [Server thread/INFO]: [BoardGames] Loading BoardGames v1.0.17
[23:02:26] [Server thread/INFO]: [Denizen] Loading Denizen v1.2.5-SNAPSHOT (build 1775-REL)
[23:02:26] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.5
[23:02:26] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.0.5
[23:02:26] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.18
[23:02:26] [Server thread/INFO]: [eGlow] Loading eGlow v3.2.0
[23:02:26] [Server thread/INFO]: [Quests] Loading Quests v4.5.3-b359
[23:02:26] [Server thread/INFO]: [GSit] Loading GSit v1.2.8
[23:02:26] [Server thread/INFO]: [StoreStats] Loading StoreStats v3.22.2
[23:02:26] [Server thread/INFO]: [PremiumVanish] Loading PremiumVanish v2.7.19
[23:02:26] [Server thread/INFO]: [PlayerWarps] Loading PlayerWarps v6.17.3
[23:02:26] [Server thread/INFO]: [CMILib] Loading CMILib v1.2.3.6
[23:02:26] [Server thread/INFO]: [TerminatorNPC] Loading TerminatorNPC v1.4-SNAPSHOT
[23:02:26] [Server thread/INFO]: [zAuctionHouseV3] Loading zAuctionHouseV3 v3.1.0.0
[23:02:26] [Server thread/INFO]: [InteractionVisualizer] Loading InteractionVisualizer v1.18.1.2
[23:02:26] [Server thread/INFO]: [CTFly] Loading CTFly v1.3
[23:02:26] [Server thread/INFO]: [QuickShop] Loading QuickShop v5.1.0.9
[23:02:26] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Booting up
[23:02:26] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[23:02:26] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[23:02:26] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[23:02:26] [Server thread/INFO]: [QuickShop] Reading the configuration...
[23:02:26] [Server thread/INFO]: [QuickShop] Loading messages translation over-the-air (this may need take a while).
[23:02:26] [Server thread/INFO]: [QuickShop] Translation over-the-air platform selected: Crowdin
[23:02:26] [Server thread/INFO]: [QuickShop] Checking for translation updates, this may need a while...
[23:02:27] [Server thread/INFO]: [QuickShop] Loading up integration modules.
[23:02:27] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Complete
[23:02:27] [Server thread/INFO]: [ProtectionLib] Loading ProtectionLib v1.6
[23:02:27] [Server thread/INFO]: [BigDoors] Loading BigDoors vAlpha 0.1.8.40
[23:02:27] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.4.5
[23:02:27] [Server thread/INFO]: [BigDoorsOpener] Debug logger initialized. Log Level: INFO
[23:02:27] [Server thread/INFO]: [BigDoorsOpener] Loading BigDoorsOpener v2.4.6
[23:02:27] [Server thread/INFO]: [ItemEdit] Loading ItemEdit v3.0.5
[23:02:27] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.1-SNAPSHOT
[23:02:27] [Server thread/INFO]: [DiscordSRVUtils] Loading DiscordSRVUtils v1.2.10-DEV
[23:02:27] [Server thread/INFO]: [QuickShopList] Loading QuickShopList v1.2
[23:02:27] [Server thread/INFO]: [zAuctionHouse-Discord] Loading zAuctionHouse-Discord v1.0.7
[23:02:27] [Server thread/INFO]: [Vulcan] Loading Vulcan v2.6.8
[23:02:28] [Server thread/INFO]: [DeluxeAnnounce] Loading DeluxeAnnounce v21.5.19
[23:02:28] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.9.3
[23:02:28] [Server thread/INFO]: [FurnitureLib] Loading FurnitureLib v2.8.2
[23:02:28] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Loading DiscordSRV-Staff-Chat v1.4.4
[23:02:28] [Server thread/INFO]: [DiceFurniture] Loading DiceFurniture v3.7.1
[23:02:28] [Server thread/INFO]: [AngelChest] Loading AngelChest v9.7.0
[23:02:28] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
[23:02:28] [Server thread/INFO]: [Jobs] Loading Jobs v5.1.0.1
[23:02:28] [Server thread/INFO]: [Plan] Loading Plan v5.4 build 1722
[23:02:28] [Server thread/INFO]: [NPC_Destinations] Loading NPC_Destinations v2.6.16
[23:02:28] [Server thread/INFO]: [BossShopPro] Loading BossShopPro v2.0.15
[23:02:28] [Server thread/INFO]: [AuxProtect] Loading AuxProtect v1.1.9
[23:02:28] [Server thread/INFO]: [NPCDestinations_Animator] Loading NPCDestinations_Animator v2.6.14
[23:02:28] [Server thread/INFO]: [NPCDestinations_Farmer] Loading NPCDestinations_Farmer v2.6.10
[23:02:28] [Server thread/INFO]: [eco] Loading eco v6.38.3
[23:02:28] [Server thread/INFO]: [StatTrackers] Loading StatTrackers v5.0.8
[23:02:28] [Server thread/INFO]: [InteractiveChat] Loading InteractiveChat v4.2.3.8
[23:02:28] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading InteractiveChatDiscordSrvAddon v4.2.3.8
[23:02:28] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[23:02:28] [Server thread/INFO]: [EcoPets] Loading EcoPets v1.40.2
[23:02:28] [Server thread/INFO]: [DeluxeCombat] Loading DeluxeCombat v1.40.4
[23:02:28] [Server thread/INFO]: [DeluxeCombat_Addon_WG] Loading DeluxeCombat_Addon_WG v0.9
[23:02:28] [Server thread/INFO]: [UltimateClans] Loading UltimateClans v5.5.3
[23:02:28] [Server thread/INFO]: [Boosters] Loading Boosters v4.44.0
[23:02:28] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants v8.111.0
[23:02:28] [Server thread/INFO]: [EcoEnchantsGUI] Loading EcoEnchantsGUI v4.1
[23:02:28] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[23:02:28] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.41
[23:02:30] [Server thread/INFO]:         __    
[23:02:30] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.41
[23:02:30] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[23:02:30] [Server thread/INFO]: 
[23:02:30] [Server thread/INFO]: [LuckPerms] Loading configuration...
[23:02:31] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[23:02:31] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[23:02:32] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[23:02:33] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[23:02:35] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[23:02:35] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[23:02:36] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 7896ms)
[23:02:36] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[23:02:36] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[23:02:36] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b602
[23:02:36] [Server thread/INFO]: [Planetoids] Enabling Planetoids v0.3.2-BETA
[23:02:36] [Server thread/INFO]: [Planetoids] Configuration file found. Loading configuration file.
[23:02:36] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[23:02:36] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.0 which is not a depend or softdepend of this plugin.
[23:02:36] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[23:02:37] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[23:02:37] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[23:02:37] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[23:02:37] [Server thread/INFO]: [BungeeGuard] Enabling BungeeGuard v1.3-SNAPSHOT
[23:02:37] [Server thread/INFO]: [BungeeGuard] Using Paper's PlayerHandshakeEvent to listen for connections.
[23:02:37] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.3 build-01/08/2022
[23:02:37] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R1
[23:02:37] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[23:02:37] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[23:02:37] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[23:02:37] [Server thread/INFO]: [NexEngine] Successfully hooked with Vault!
[23:02:37] [Server thread/INFO]: [NexEngine] Plugin loaded in 66 ms!
[23:02:37] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1
[23:02:37] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[23:02:37] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[23:02:37] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R1.PaperweightAdapter as the Bukkit adapter
[23:02:38] [Server thread/INFO]: [eco] Enabling eco v6.38.3
[23:02:38] [Server thread/INFO]: [eco] 
[23:02:38] [Server thread/INFO]: [eco] Loading eco
[23:02:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eco [6.38.3]
[23:02:38] [Server thread/INFO]: [eco] Loaded integrations: Vulcan, DeluxeCombat, HeadDatabase, HolographicDisplays, DecentHolograms, Essentials, Vault, Multiverse-Inventories, GriefPrevention, RPGHorses, PlaceholderAPI, WorldGuard
[23:02:38] [Server thread/INFO]: [eco] Scanning for conflicts...
[23:02:38] [Server thread/INFO]: [eco] No conflicts found!
[23:02:38] [Server thread/INFO]: [eco] 
[23:02:38] [Server thread/INFO]: [StatTrackers] Enabling StatTrackers v5.0.8
[23:02:38] [Server thread/INFO]: [StatTrackers] 
[23:02:38] [Server thread/INFO]: [StatTrackers] Loading StatTrackers
[23:02:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: stattrackers [5.0.8]
[23:02:38] [Server thread/INFO]: [StatTrackers] Loaded integrations: PlaceholderAPI
[23:02:38] [Server thread/INFO]: [StatTrackers] No extensions found
[23:02:38] [Server thread/INFO]: [StatTrackers] 18 Stats Loaded
[23:02:38] [Server thread/INFO]: [StatTrackers] 
[23:02:38] [Server thread/INFO]: [EcoPets] Enabling EcoPets v1.40.2
[23:02:38] [Server thread/INFO]: [EcoPets] 
[23:02:38] [Server thread/INFO]: [EcoPets] Loading EcoPets
[23:02:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ecopets [1.40.2]
[23:02:38] [Server thread/INFO]: [EcoPets] Loaded integrations: Jobs, Boosters, EcoEnchants, EcoPets, Vault, PlaceholderAPI
[23:02:39] [Server thread/INFO]: [EcoPets] No extensions found
[23:02:39] [Server thread/INFO]: [EcoPets] 
[23:02:39] [Server thread/INFO]: [EcoEnchants] Enabling EcoEnchants v8.111.0
[23:02:39] [Server thread/INFO]: [EcoEnchants] 
[23:02:39] [Server thread/INFO]: [EcoEnchants] Loading EcoEnchants
[23:02:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ecoenchants [8.111.0]
[23:02:39] [Server thread/INFO]: [EcoEnchants] Loaded integrations: Jobs, Boosters, EcoEnchants, EcoPets, Vault, Essentials, PlaceholderAPI
[23:02:39] [Server thread/INFO]: [EcoEnchants] No extensions found
[23:02:39] [Server thread/WARN]: [EcoEnchants] Loaded class com.willfp.ecopets.api.event.PlayerPetLevelUpEvent from EcoPets v1.40.2 which is not a depend or softdepend of this plugin.
[23:02:49] [Server thread/INFO]: [EcoEnchants] 237 Enchantments Loaded
[23:02:49] [Server thread/INFO]: [EcoEnchants] 
[23:02:49] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[23:02:49] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[23:02:49] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[23:02:49] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[23:02:49] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[23:02:49] [Server thread/INFO]: Preparing level "world"
[23:02:50] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[23:02:50] [Server thread/INFO]: Time elapsed: 108 ms
[23:02:50] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[23:02:50] [Server thread/INFO]: Time elapsed: 32 ms
[23:02:50] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[23:02:50] [Server thread/INFO]: Time elapsed: 27 ms
[23:02:50] [Server thread/INFO]: [AltDetector] Enabling AltDetector v2.0
[23:02:50] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:02:51] [Server thread/INFO]: [com.bobcat00.altdetector.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:02:51] [Server thread/INFO]: [AltDetector] Using SQLite database, version 3.36.0, driver version 3.36.0.3
[23:02:51] [Server thread/INFO]: [AltDetector] 0 records removed, expiration time 60 days.
[23:02:51] [Server thread/INFO]: [AltDetector] Metrics enabled if allowed by plugins/bStats/config.yml
[23:02:51] [Server thread/INFO]: [M-Investment] Enabling M-Investment v0.1
[23:02:51] [Server thread/WARN]: [M-Investment] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[23:02:51] [Server thread/INFO]: [UltimateTroll] Enabling UltimateTroll v2.0
[23:02:51] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.4.2
[23:02:51] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.10.0
[23:02:51] [Server thread/INFO]: [NBTAPI] Adding listeners...
[23:02:51] [Server thread/INFO]: [NBTAPI] Gson:
[23:02:51] [Server thread/INFO]: [NBTAPI] Checking bindings...
[23:02:51] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[23:02:51] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[23:02:51] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[23:02:51] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[23:02:51] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.4.2
[23:02:51] [Server thread/INFO]: [vilib] Enabling vilib v1.1.0
[23:02:51] [Server thread/INFO]: [vilib] Enabled vilib 1.1.0
[23:02:51] [Server thread/INFO]: [OTroll] Enabling OTroll v1.7.1
[23:02:51] [Server thread/INFO]: OTroll v1.7.1 has been successfully enabled!
[23:02:51] [Server thread/INFO]: [squaremap] Enabling squaremap v1.1.8
[23:02:52] [Server thread/INFO]: [io.undertow] starting server: Undertow - 2.2.18.Final
[23:02:52] [Server thread/INFO]: [org.xnio] XNIO version 3.8.7.Final
[23:02:52] [Server thread/INFO]: [org.xnio.nio] XNIO NIO Implementation Version 3.8.7.Final
[23:02:52] [Server thread/INFO]: [org.jboss.threads] JBoss Threads version 3.1.0.Final
[23:02:52] [Server thread/INFO]: [squaremap] Internal webserver running on 0.0.0.0:8133
[23:02:53] [Server thread/INFO]: [KixsChatGames] Enabling KixsChatGames v1.9.9
[23:02:53] [Server thread/INFO]: 
[23:02:53] [Server thread/INFO]: --------------------------------------
[23:02:53] [Server thread/INFO]:      Kix's Chat Games by kixmc
[23:02:53] [Server thread/INFO]:      Starting on version 1.9.9
[23:02:53] [Server thread/INFO]: --------------------------------------
[23:02:53] [Server thread/INFO]: 
[23:02:53] [Server thread/WARN]: [KixsChatGames] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[23:02:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: kixschatgames [1.9.9]
[23:02:53] [Server thread/INFO]: [TangledMaze] Enabling TangledMaze v2.0.0
[23:02:53] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[23:02:53] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[23:02:53] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[23:02:53] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.8-Release
[23:02:53] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[23:02:53] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[23:02:53] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[23:02:53] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[23:02:53] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[23:02:53] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[23:02:53] [Server thread/INFO]: [Minepacks] Loading item translations ...
[23:02:53] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[23:02:53] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[23:02:53] [Server thread/INFO]: [ImageOnMap] Enabling ImageOnMap v5.1.0
[23:02:53] [Server thread/INFO]: [squaremarker] Enabling squaremarker v1.0.2
[23:02:54] [Server thread/INFO]: [GrapplingHook] Enabling GrapplingHook v1.6.3
[23:02:54] [Server thread/INFO]: [GrapplingHook] [STDOUT] [GrapplingHook] Loaded 6 recipes.
[23:02:54] [Server thread/WARN]: Nag author(s): '[SnowGears]' of 'GrapplingHook' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[23:02:54] [Server thread/ERROR]: Error occurred while enabling GrapplingHook v1.6.3 (Is it up to date?)
java.lang.NoClassDefFoundError: org/bstats/bukkit/Metrics
    at com.snowgears.grapplinghook.GrapplingHook.onEnable(GrapplingHook.java:66) ~[original-GrapplingHook-1.6.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-220]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-220]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bstats.bukkit.Metrics
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 12 more
[23:02:54] [Server thread/INFO]: [GrapplingHook] Disabling GrapplingHook v1.6.3
[23:02:54] [Server thread/INFO]: [ChatSentry] Enabling ChatSentry v5.3.1
[23:02:54] [Server thread/INFO]: 
[23:02:54] [Server thread/INFO]:  _____ _           _   _____            _              
[23:02:54] [Server thread/INFO]: /  __ \ |         | | /  ___|          | |             
[23:02:54] [Server thread/INFO]: | /  \/ |__   __ _| |_\ `--.  ___ _ __ | |_ _ __ _   _ 
[23:02:54] [Server thread/INFO]: | |   | '_ \ / _` | __|`--. \/ _ \ '_ \| __| '__| | | |
[23:02:54] [Server thread/INFO]: | \__/\ | | | (_| | |_/\__/ /  __/ | | | |_| |  | |_| |
[23:02:54] [Server thread/INFO]:  \____/_| |_|\__,_|\__\____/ \___|_| |_|\__|_|   \__, |
[23:02:54] [Server thread/INFO]:                                                   __/ |
[23:02:54] [Server thread/INFO]:                                                  |___/ 
[23:02:54] [Server thread/INFO]: Starting on version 5.3.1
[23:02:54] [Server thread/INFO]: 
[23:02:54] [Server thread/INFO]: [ChatSentry] Validating files...
[23:02:54] [Server thread/INFO]: [ChatSentry] Loaded files; no issues were found.
[23:02:54] [Server thread/INFO]: [ChatSentry] Using SQLite (flatfile) for storage.
[23:02:54] [Server thread/INFO]: [ChatSentry] Cache is waiting for the server to begin ticking...
[23:02:54] [Server thread/INFO]: [PINPrompt] Enabling PINPrompt v3.4.3
[23:02:55] [Server thread/INFO]: [PINPrompt] Initializing managers...
[23:02:55] [Server thread/INFO]: [PINPrompt] Using MySQL...
[23:02:55] [Server thread/INFO]: [PINPrompt] CANCELLED DATABASE REVISIONS DUE TO AN ERROR!
[23:02:55] [Server thread/WARN]: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '3.4.3-0' for key 'PRIMARY'
[23:02:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:117)
[23:02:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[23:02:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
[23:02:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
[23:02:55] [Server thread/WARN]:     at PINPrompt-3.4.3.jar//dev.hexedhero.pinprompt.shaded.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
[23:02:55] [Server thread/WARN]:     at PINPrompt-3.4.3.jar//dev.hexedhero.pinprompt.shaded.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
[23:02:55] [Server thread/WARN]:     at PINPrompt-3.4.3.jar//dev.hexedhero.pinprompt.database.migrations._1_Init.processRevision(_1_Init.java:38)
[23:02:55] [Server thread/WARN]:     at PINPrompt-3.4.3.jar//dev.hexedhero.pinprompt.managers.DataManager.<init>(DataManager.java:91)
[23:02:55] [Server thread/WARN]:     at PINPrompt-3.4.3.jar//dev.hexedhero.pinprompt.managers.DataManager.getInstance(DataManager.java:40)
[23:02:55] [Server thread/WARN]:     at PINPrompt-3.4.3.jar//dev.hexedhero.pinprompt.PINPrompt.onEnable(PINPrompt.java:55)
[23:02:55] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[23:02:55] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370)
[23:02:55] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542)
[23:02:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565)
[23:02:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479)
[23:02:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636)
[23:02:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422)
[23:02:55] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:306)
[23:02:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1100)
[23:02:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[23:02:55] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[23:02:55] [Server thread/INFO]: [PINPrompt] DataManager initialized!
[23:02:55] [Server thread/INFO]: [PINPrompt] NMSManager initialized!
[23:02:55] [Server thread/INFO]: [PINPrompt] TaskManager initialized!
[23:02:55] [Server thread/INFO]: [PINPrompt] HeadStyleManager initialized!
[23:02:55] [Server thread/INFO]: [PINPrompt] InventoryManager initialized!
[23:02:55] [Server thread/INFO]: [PINPrompt] PINManager initialized!
[23:02:55] [Server thread/INFO]: [PINPrompt] BanManager initialized!
[23:02:55] [Server thread/INFO]: [PINPrompt] FlyManager initialized!
[23:02:55] [Server thread/INFO]: [PINPrompt] SpectatorManager initialized!
[23:02:55] [Server thread/INFO]: [PINPrompt] Registering commands...
[23:02:55] [Server thread/INFO]: [PINPrompt] Registering listeners...
[23:02:55] [Server thread/INFO]: [PINPrompt] Registering config...
[23:02:55] [Server thread/INFO]: [PINPrompt] Starting metrics...
[23:02:55] [Server thread/INFO]: [PINPrompt] Plugin registered to 684274 | 1944576945
[23:02:55] [Server thread/INFO]: [PINPrompt] Done and enabled in 147.40ms
[23:02:55] [Server thread/INFO]: [DoorsReloaded] Enabling DoorsReloaded v1.3.1
[23:02:55] [Server thread/INFO]: [Chunky] Enabling Chunky v1.2.217
[23:02:55] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[23:02:55] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.4.2 which is not a depend or softdepend of this plugin.
[23:02:55] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[23:02:55] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 52c
[23:02:55] [Server thread/INFO]: [UltimateAutoRestart+] Build 52c, a premium resource by Norska - Thanks for purchasing!
[23:02:55] [Server thread/INFO]: [UltimateAutoRestart+] Attempting hooks...
[23:02:55] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[23:02:55] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v8.1.0
[23:02:55] [Server thread/INFO]: [VoxelSniper] Registered 69 Sniper Brushes with 137 handles.
[23:02:55] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[23:02:56] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.1-SNAPSHOT
[23:02:56] [Server thread/INFO]: [HeadsPluginAPI] Enabling HeadsPluginAPI v3.1.0
[23:02:57] [Server thread/WARN]: [HeadsPluginAPI] Loaded class javax.xml.bind.annotation.XmlRootElement from DiscordSRVUtils v1.2.10-DEV which is not a depend or softdepend of this plugin.
[23:02:58] [Server thread/INFO]: [com.github.cc007.headsplugin.business.services.heads.CategoryUpdaterImpl] All categories updates are now scheduled (asynchronously).
[23:02:58] [Server thread/INFO]: [RedeemableCodes] Enabling RedeemableCodes vBuild 37
[23:02:58] [Server thread/INFO]: 
[23:02:58] [Server thread/INFO]: [RedeemableCodes] Build 37, a premium resource by Norska - Thanks for purchasing!
[23:02:58] [Server thread/INFO]: 
[23:02:58] [Server thread/INFO]: [JukeBox] Enabling JukeBox v1.20.8
[23:02:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jukebox [1.20.8]
[23:02:58] [Server thread/INFO]: [JukeBox] Placeholders registered
[23:02:58] [Server thread/INFO]: [JukeBox] This JukeBox version requires NoteBlockAPI version 1.5.0 or more. Please ensure you have the right version before using JukeBox (you are using NBAPI ver. 1.6.1-SNAPSHOT)
[23:02:58] [Server thread/INFO]: [JukeBox] Loaded language file en.yml
[23:02:59] [Server thread/INFO]: [JukeBox] 115 songs loadeds. Sorting by name... 
[23:02:59] [Server thread/INFO]: [JukeBox] Songs sorted ! 115 songs. Number of pages : 3
[23:02:59] [Server thread/INFO]: [MineStore] Enabling MineStore v1.2.0
[23:02:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Minestore [1.0.0]
[23:02:59] [Server thread/INFO]: [MineStore] [ACF] Enabled Asynchronous Tab Completion Support!
[23:02:59] [Server thread/INFO]: [MineStore] Loaded commands for 1 players.
[23:02:59] [Server thread/INFO]: [MineStore] Starting web listener...
[23:02:59] [Server thread/INFO]: [MineStore] Starting gui listener...
[23:02:59] [Server thread/INFO]: [JShader] Enabling JShader v1.1
[23:02:59] [Server thread/INFO]: [JShader] Looking for Java Version...
[23:02:59] [Server thread/INFO]: [JShader]     Java Version: 17.0.1
[23:02:59] [Server thread/INFO]: [JShader]     Legacy Java: false
[23:02:59] [Server thread/INFO]: [JShader] Checking if JavaScript engine is already shaded..
[23:02:59] [Server thread/INFO]: [JShader] JavaScript engine shaded.
[23:02:59] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[23:02:59] [Server thread/INFO]: [Votifier] Loaded token for website: default
[23:02:59] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[23:03:00] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[23:03:00] [Server thread/INFO]: [HeadSweeper] Enabling HeadSweeper v1.7.3
[23:03:00] [Server thread/INFO]: [HeadSweeper] Check if data folder exists...
[23:03:00] [Server thread/INFO]: [HeadSweeper] Data folder already exists
[23:03:00] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /91.109.116.41:8134.
[23:03:00] [Server thread/INFO]: [HeadSweeper] Initializing minesweeper heads...
[23:03:02] [Server thread/INFO]: [com.github.cc007.headsplugin.business.services.heads.HeadSearcherImpl] Updating heads for: Minesweeper
[23:03:03] [Server thread/INFO]: [com.github.cc007.headsplugin.business.services.ProfilerImpl] Heads for Minesweeper found in 3.047s.
[23:03:06] [Server thread/INFO]: [com.github.cc007.headsplugin.business.services.heads.HeadSearcherImpl] Updating heads for: TNT
[23:03:07] [Server thread/INFO]: [com.github.cc007.headsplugin.business.services.ProfilerImpl] Heads for TNT found in 4.812s.
[23:03:08] [Server thread/INFO]: [HeadSweeper] Sweeperheads initialized
[23:03:08] [Server thread/WARN]: [HeadSweeper] Loaded class net.milkbowl.vault.permission.Permission from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[23:03:08] [Server thread/WARN]: [HeadSweeper] Hooked Vault!
[23:03:08] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.31
[23:03:08] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.31-Premium.jar
[23:03:08] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R1
[23:03:08] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1119
[23:03:08] [Server thread/INFO]: [LibsDisguises] Build Date: 09/08/2022 06:41
[23:03:08] [Server thread/INFO]: [LibsDisguises] Registered to: 684274 (31)
[23:03:08] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[23:03:33] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[23:03:33] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[23:03:33] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[23:03:33] [Server thread/INFO]: [PlayerStats] Enabling PlayerStats v1.6.1
[23:03:33] [ReloadThread-1/INFO]: [PlayerStats] ReloadThread loaded 95 offline players: 8ms
[23:03:33] [Server thread/INFO]: [PlayerStats] Enabled PlayerStats!
[23:03:33] [Server thread/INFO]: [ExtraFireworks] Enabling ExtraFireworks v1.2.10 (build 91)
[23:03:33] [Server thread/INFO]: [ExtraFireworks] Using VersionUtil_v1_19_R1
[23:03:33] [Server thread/INFO]: [DropEdit2] Enabling DropEdit2 v1.1.50-SNAPSHOT
[23:03:34] [Server thread/INFO]: [DropEdit2] ÂLoaded Â86Â configurable vanilla mobs!
[23:03:34] [Server thread/INFO]: [DropEdit2] ÂUsing language file en.yml!
[23:03:34] [Server thread/INFO]: [DropEdit2] Loading DropEdit2 data...
[23:03:34] [Server thread/INFO]: [DropEdit2] - Â86Â Mob configurations
[23:03:34] [Server thread/INFO]: [DropEdit2] - Â Block configurations
[23:03:34] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.0-SNAPSHOT (b73-4f36112)
[23:03:34] [Server thread/INFO]: [GlobalStats] Enabling GlobalStats v1.5
[23:03:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: globalstats [1.5]
[23:03:34] [Server thread/INFO]: [Join Commands] Enabling JoinCommands v2.0.9
[23:03:34] [Server thread/INFO]: [RPGHorses] Enabling RPGHorses v1.2.19
[23:03:34] [Server thread/INFO]: [RPGHorses] 1.19 detected
[23:03:34] [Server thread/INFO]: [RPGHorses] Could not find nms support for this version (1.19).
[23:03:34] [Server thread/INFO]: [RPGHorses] Because of this, horses will wander when unmounted
[23:03:34] [Server thread/INFO]: [RPGHorses] Successfully hooked into Vault
[23:03:34] [Server thread/INFO]: [RPGHorses] Despawned 0 horses
[23:03:35] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v3.0.0-SNAPSHOT-b226
[23:03:35] [Server thread/INFO]: [EmployMe] Enabling EmployMe v1.0.1
[23:03:35] [Server thread/INFO]: [FunGames] Enabling FunGames v1.0
[23:03:35] [Server thread/INFO]: [Vegas] Enabling Vegas v3.0
[23:03:36] [Server thread/INFO]: [PlayerKits] Enabling PlayerKits v2.24.3
[23:03:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [2.24.3]
[23:03:36] [Server thread/INFO]: [PlayerKits] Has been enabled! Version: 2.24.3
[23:03:36] [Server thread/INFO]: [PlayerKits] Thanks for using my plugin!  ~Ajneb97
[23:03:36] [Server thread/INFO]: [spark] Enabling spark v1.9.42
[23:03:36] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[23:03:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.9.42]
[23:03:36] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[23:03:36] [Server thread/INFO]: [ccRides] Enabling ccRides v1.7.8
[23:03:36] [Server thread/INFO]: [ccRides] Main Configs Loaded
[23:03:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ccRides [1.7.8]
[23:03:36] [Server thread/INFO]: [ccRides] Linked PlaceholderAPI
[23:03:36] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.0.70
[23:03:36] [Server thread/INFO]: [SimplePets] Enabling SimplePets v5.0-BUILD-190
[23:03:37] [Server thread/INFO]: [SimplePets Warning] Failed to register the 'shulker' pet (Missing 'EntityShulkerPet' class for your version) [Will not effect your server]
[23:03:37] [Server thread/INFO]: [SimplePets Debug] Initializing Menu Items...
[23:03:37] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Item Files...
[23:03:37] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[23:03:37] [Server thread/INFO]: [SimplePets Critical Error] Your server is using WorldGuard and the 'mobs.block-plugin-spawning' is set to true
[23:03:37] [Server thread/INFO]: [SimplePets Critical Error] This causes issues with the plugin not being able to spawn pets
[23:03:37] [Server thread/INFO]: [SimplePets Critical Error] Please set this to 'false' in the WorldGuard config so pets can spawn
[23:03:37] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[23:03:37] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[23:03:37] [Server thread/INFO]: [Multiverse-Core] ÂWe are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[23:03:38] [Server thread/INFO]: Preparing start region for dimension minecraft:oldspawn
[23:03:38] [Server thread/INFO]: Time elapsed: 581 ms
[23:03:38] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:38] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:39] [Server thread/INFO]: Preparing start region for dimension minecraft:arcade2
[23:03:39] [Server thread/INFO]: Time elapsed: 277 ms
[23:03:39] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:39] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:39] [Server thread/INFO]: Preparing start region for dimension minecraft:easter
[23:03:39] [Server thread/INFO]: Time elapsed: 42 ms
[23:03:39] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:39] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:39] [Server thread/INFO]: Preparing start region for dimension minecraft:minigames
[23:03:39] [Server thread/INFO]: Time elapsed: 66 ms
[23:03:39] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:39] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:39] [Server thread/INFO]: Preparing start region for dimension minecraft:partygames
[23:03:39] [Server thread/INFO]: Time elapsed: 70 ms
[23:03:39] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: oldspawnn
[23:03:39] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:03:40] [Server thread/INFO]: Preparing start region for dimension minecraft:dragon_slayer
[23:03:40] [Server thread/INFO]: Time elapsed: 121 ms
[23:03:40] [Server thread/INFO]: Preparing start region for dimension minecraft:builds
[23:03:40] [Server thread/INFO]: Time elapsed: 89 ms
[23:03:40] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:40] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:40] [Server thread/INFO]: Preparing start region for dimension minecraft:halloween_spawn
[23:03:40] [Server thread/INFO]: Time elapsed: 82 ms
[23:03:40] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:40] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:40] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:40] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:40] [Server thread/INFO]: Preparing start region for dimension minecraft:resource
[23:03:40] [Server thread/INFO]: Time elapsed: 21 ms
[23:03:40] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:40] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:40] [Server thread/INFO]: Preparing start region for dimension minecraft:solomonmanor
[23:03:40] [Server thread/INFO]: Time elapsed: 10 ms
[23:03:40] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: something
[23:03:40] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:03:41] [Server thread/INFO]: Preparing start region for dimension minecraft:arcade
[23:03:41] [Server thread/INFO]: Time elapsed: 55 ms
[23:03:41] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: oldspawnnn
[23:03:41] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:03:41] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[23:03:41] [Server thread/INFO]: Time elapsed: 53 ms
[23:03:41] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:41] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:41] [Server thread/INFO]: Preparing start region for dimension minecraft:parkour
[23:03:41] [Server thread/INFO]: Time elapsed: 65 ms
[23:03:41] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:41] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:41] [Server thread/INFO]: Preparing start region for dimension minecraft:2world
[23:03:41] [Server thread/INFO]: Time elapsed: 71 ms
[23:03:41] [Server thread/INFO]: Preparing start region for dimension minecraft:haunted
[23:03:41] [Server thread/INFO]: Time elapsed: 50 ms
[23:03:41] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:41] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:42] [Server thread/INFO]: Preparing start region for dimension minecraft:outlands
[23:03:42] [Server thread/INFO]: Time elapsed: 111 ms
[23:03:42] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:42] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:42] [Server thread/INFO]: Preparing start region for dimension minecraft:testworld
[23:03:42] [Server thread/INFO]: Time elapsed: 71 ms
[23:03:42] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:42] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:42] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: witp
[23:03:42] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:03:42] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:42] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:42] [Server thread/INFO]: Preparing start region for dimension minecraft:steampunk
[23:03:42] [Server thread/INFO]: Time elapsed: 27 ms
[23:03:42] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:42] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:42] [Server thread/INFO]: Preparing start region for dimension minecraft:party
[23:03:42] [Server thread/INFO]: Time elapsed: 28 ms
[23:03:42] [Server thread/INFO]: [Multiverse-Core] 22 - World(s) loaded.
[23:03:42] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[23:03:42] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[23:03:42] [Server thread/INFO]: [Vouchers] Enabling Vouchers v1.9.9-SNAPSHOT
[23:03:43] [Server thread/INFO]: [Vouchers] Loading the Config.yml
[23:03:43] [Server thread/INFO]: [Vouchers] Successfully loaded Config.yml
[23:03:43] [Server thread/INFO]: [Vouchers] Loading the Data.yml
[23:03:43] [Server thread/INFO]: [Vouchers] Successfully loaded Data.yml
[23:03:43] [Server thread/INFO]: [Vouchers] Loading the Messages.yml
[23:03:43] [Server thread/INFO]: [Vouchers] Successfully loaded Messages.yml
[23:03:43] [Server thread/INFO]: [Vouchers] Loading the VoucherCodes.yml
[23:03:43] [Server thread/INFO]: [Vouchers] Successfully loaded VoucherCodes.yml
[23:03:43] [Server thread/INFO]: [ChatBot] Enabling ChatBot v6.9
[23:03:43] [Server thread/INFO]: [Arcade] Enabling Arcade v1.49c
[23:03:44] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[23:03:44] [Server thread/INFO]: Arcade plugin is loading... 
[23:03:44] [Server thread/INFO]:  Author: Fr33styler
[23:03:44] [Server thread/INFO]:  Version: 1.49c
[23:03:44] [Server thread/INFO]:  - Loading engine...
[23:03:44] [Server thread/INFO]:  - Loading database...
[23:03:44] [Server thread/INFO]:  - Loading Mini Walls...
[23:03:44] [Server thread/INFO]:  - Loading Splegg...
[23:03:44] [Server thread/INFO]:  - Loading Bomb Lobbers...
[23:03:44] [Server thread/INFO]:  - Loading TNT Run...
[23:03:44] [Server thread/INFO]:  - Loading Quake...
[23:03:44] [Server thread/INFO]:  - Loading Block Party...
[23:03:46] [Server thread/WARN]: java.io.EOFException
[23:03:46] [Server thread/WARN]:     at java.base/java.io.DataInputStream.readByte(DataInputStream.java:273)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.bi.a(a:102)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.bi.a(a:63)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.bi.a(a:16)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.aW.c(a:141)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.Arcade.onEnable(a:195)
[23:03:46] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[23:03:46] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370)
[23:03:46] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542)
[23:03:46] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565)
[23:03:46] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:306)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1100)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[23:03:46] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[23:03:46] [Server thread/WARN]: java.io.EOFException
[23:03:46] [Server thread/WARN]:     at java.base/java.io.DataInputStream.readByte(DataInputStream.java:273)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.bi.a(a:102)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.bi.a(a:29)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.bi.a(a:16)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.aW.c(a:141)
[23:03:46] [Server thread/WARN]:     at Arcade.jar//ro.fr33styler.arcade.Arcade.onEnable(a:195)
[23:03:46] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[23:03:46] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370)
[23:03:46] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542)
[23:03:46] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565)
[23:03:46] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:306)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.v(MinecraftServer.java:1100)
[23:03:46] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305)
[23:03:46] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[23:03:46] [Server thread/INFO]:  - Loading TNT Tag...
[23:03:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: arcade [null]
[23:03:46] [Server thread/INFO]: Arcade has been loaded!
[23:03:46] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[23:03:46] [Server thread/INFO]: [PlaceholderSIGN] Enabling PlaceholderSIGN v2.0.0
[23:03:46] [Server thread/INFO]: [ChatColor2] Enabling ChatColor2 v1.12.4
[23:03:46] [Server thread/INFO]: [ChatColor] ChatColor 2 Version 1.12.4 has been enabled.
[23:03:46] [Server thread/INFO]: [ChatColor] Current update: Add custom colors from ingame + bug fixes.
[23:03:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cc [1.12.4]
[23:03:46] [Server thread/INFO]: [ChatColor] PlaceholderAPI has been hooked.
[23:03:46] [Server thread/INFO]: [ChatColor] Metrics is enabled for this plugin. Stats sent to https://bstats.org/plugin/bukkit/ChatColor2
[23:03:46] [Server thread/INFO]: [PartyGames] Enabling PartyGames v6.0*
[23:03:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: partygames [6.0]
[23:03:47] [Server thread/INFO]: [PartyGames] Found PlaceholderAPI, Hooked: true
[23:03:47] [Server thread/INFO]: =============================================
[23:03:47] [Server thread/INFO]: [PartyGames] Plugin has been enabled (v6.0)
[23:03:47] [Server thread/INFO]: =============================================
[23:03:47] [Server thread/INFO]: [MobArena] Enabling MobArena v0.107
[23:03:47] [Server thread/INFO]: [MobArena] Vault found; economy rewards enabled.
[23:03:47] [Server thread/INFO]: [MobArena] Loaded arena 'default'
[23:03:47] [Server thread/INFO]: [MobArena] Loaded 3 sign templates.
[23:03:47] [Server thread/INFO]: [AdvancedGUI] Enabling AdvancedGUI v2.2.2*
[23:03:47] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Enabling AG...
[23:03:47] [Server thread/WARN]: Nag author(s): '[Leoko]' of 'AdvancedGUI' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[23:03:47] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Enabling version support for v1_19_R1 (19)
[23:03:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedgui [2.2.2]
[23:03:47] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'TravelGUI'...
[23:03:47] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading default fonts...
[23:03:47] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Done loading default font
[23:03:47] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:48] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:48] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'TransparentClickAnim'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Comingsoon'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'BuyRod'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Password'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Comingsoon_full'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Logic'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'RushStats'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Templates&Lists'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Comingsoon3'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'anvilh'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Door'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'baltop'...
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:50] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'wardrobe'...
[23:03:51] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:51] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:51] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'LanguageSelection'...
[23:03:51] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:51] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:51] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Comingsoon2'...
[23:03:51] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:51] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:51] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Dithering'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Bank'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'ChestplateGet'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'ServerSelect'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Scratch'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Bar'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'AdvancedBan'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Handheld'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'LakeBoard'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'getStone'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'anvilv'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'GoldReserves'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Crate'...
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:52] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Calendar'...
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'ProfileWall'...
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'PlayerRender'...
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'Market_Board'...
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'BunnyGIF'...
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] Loading layout 'ClearItems'...
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Resources done
[23:03:53] [Server thread/INFO]: [AdvancedGUI] [STDOUT] - Components done
[23:03:53] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.3-b523
[23:03:53] [Server thread/INFO]: [Multiverse-Inventories 4.2.3-b523] enabled.
[23:03:53] [Server thread/INFO]: [MinecraftChess] Enabling MinecraftChess v2.0
[23:03:53] [Server thread/ERROR]: Error occurred while enabling MinecraftChess v2.0 (Is it up to date?)
java.lang.NoClassDefFoundError: net/minecraft/server/v1_16_R3/Packet
    at com.gmail.laurynas.pazdrazdis.minecraftpart.minecraftchessmain.MinecraftChessMain.readConfig(MinecraftChessMain.java:704) ~[MinecraftChess 2.0.jar:?]
    at com.gmail.laurynas.pazdrazdis.minecraftpart.minecraftchessmain.MinecraftChessMain.onEnable(MinecraftChessMain.java:69) ~[MinecraftChess 2.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:542) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugin(CraftServer.java:565) ~[paper-1.19.2.jar:git-Paper-220]
    at org.bukkit.craftbukkit.v1_19_R1.CraftServer.enablePlugins(CraftServer.java:479) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:636) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:422) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:306) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1100) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-220]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.minecraft.server.v1_16_R3.Packet
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 13 more
[23:03:53] [Server thread/INFO]: [MinecraftChess] Disabling MinecraftChess v2.0
[23:03:53] [Server thread/INFO]: [LagAssist] Enabling LagAssist v2.29.1
[23:03:53] [Server thread/INFO]: ÂÂLagÂÂAssist » ÂEnabling Systems:
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂEconomy manager
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂSmart Mob Tools.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂMicroFeatures.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂHopper Manager.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂRedstone Culler.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂPhysics-Tweaker.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂLag Monitor.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂMapVisualizer.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂChunk Analyser.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂChunk Limiter.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂStatsAnalyse.
[23:03:53] [Server thread/INFO]:     Â✔Â] ÂSpawner Manager.
[23:03:54] [Server thread/INFO]:     Â✔Â] ÂGUI.
[23:03:54] [Server thread/INFO]:     Â✔Â] ÂInjecting PacketListener.
[23:03:54] [Server thread/INFO]:     Â✔Â] ÂAPI Tools.
[23:03:54] [Server thread/INFO]: [VentureChat] Enabling VentureChat v3.4.4
[23:03:54] [Server thread/INFO]: [VentureChat] - Initializing...
[23:03:54] [Server thread/INFO]: [VentureChat] - Config found! Loading file.
[23:03:54] [Server thread/INFO]: [VentureChat] - Checking for Vault...
[23:03:54] [Server thread/INFO]: [VentureChat] - Loading player data
[23:03:54] [Server thread/INFO]: [VentureChat] - Registering Listeners
[23:03:54] [Server thread/INFO]: [VentureChat] - Attaching to Executors
[23:03:54] [Server thread/INFO]: [VentureChat] - Establishing BungeeCord
[23:03:54] [Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[23:03:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: venturechat [3.4.4]
[23:03:54] [Server thread/INFO]: [VentureChat] - Enabled Successfully
[23:03:54] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.0
[23:03:54] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[23:03:54] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[23:03:54] [Server thread/INFO]: [Essentials] No kits found to migrate.
[23:03:54] [Server thread/INFO]: [Essentials] Loaded 36837 items from items.json.
[23:03:54] [Server thread/INFO]: [Essentials] Using locale en_US
[23:03:54] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[23:03:54] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[23:03:54] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[23:03:54] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[23:03:54] [Server thread/INFO]: [RewardsLite] Enabling RewardsLite v3.1.3
[23:03:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rewardslite [1.0.0]
[23:03:54] [Server thread/INFO]: [RewardsLite] Loaded 11 rewards.
[23:03:54] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.10.4
[23:03:55] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[23:03:55] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[23:03:55] [Server thread/INFO]: [LiteBans] Connecting to database...
[23:03:55] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[23:03:55] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[23:03:55] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (143.4 ms).
[23:03:55] [Server thread/INFO]: [LiteBans] Database connection fully initialized (146.3 ms).
[23:03:55] [Server thread/INFO]: [LiteBans] v2.10.4 enabled. Startup took 517 ms.
[23:03:55] [Server thread/INFO]: [JukeBoxPlus] Enabling JukeBoxPlus v3.3.1
[23:03:56] [Server thread/INFO]: [JukeBoxPlus] [ACF] Enabled Asynchronous Tab Completion Support!
[23:03:56] [Server thread/INFO]: [RocketPlaceholders] Enabling RocketPlaceholders v2.2
[23:03:56] [Server thread/INFO]: [RocketPlaceholders] Loaded 1 placeholders!
[23:03:56] [Server thread/INFO]: [RocketPlaceholders] Hooked into JShader for JavaScript support.
[23:03:56] [Server thread/INFO]: [RocketPlaceholders] PlaceholderAPI hooked!
[23:03:56] [Server thread/INFO]: [RocketPlaceholders] RocketPlaceholders v2.2 by Lorenzo0111 is now enabled!
[23:03:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rp [2.2]
[23:03:56] [Server thread/INFO]: [VentureChatWorkaround] Enabling VentureChatWorkaround v1.0.0
[23:03:56] [Server thread/INFO]: VentureChatWorkaround has been enabled!
[23:03:56] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.1
[23:03:56] [Server thread/WARN]: [ajLeaderboards] Unable to find 1.19 nms class: us.ajg0702.leaderboards.nms.nms19.HeadUtils19
[23:03:56] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[23:03:57] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_cake_slices_eaten. Canceling updater and bumping DB version.
[23:03:57] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_deaths. Canceling updater and bumping DB version.
[23:03:57] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mine_block. Canceling updater and bumping DB version.
[23:03:57] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[23:03:57] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[23:03:57] [Server thread/INFO]: [ajLeaderboards] Loaded 5 boards
[23:03:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.1]
[23:03:57] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[23:03:57] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[23:03:57] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.1 by ajgeiss0702 enabled!
[23:03:57] [Server thread/INFO]: [Parkour] Enabling Parkour v7.0.5
[23:03:57] [Server thread/INFO]: [Parkour] 0 courses found.
[23:03:57] [Server thread/INFO]: [Parkour] 0 courses cached.
[23:03:57] [Server thread/WARN]: [Parkour] [BountifulAPI] Plugin is missing, link was unsuccessful.
[23:03:57] [Server thread/INFO]: [Parkour] [Vault] Successfully linked. Version: 1.7.3-b131
[23:03:57] [Server thread/INFO]: [Parkour] [PlaceholderAPI] Successfully linked. Version: 2.11.2
[23:03:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: parkour [7.0.5]
[23:03:57] [Server thread/INFO]: [Parkour] Enabled Parkour v7.0.5
[23:03:57] [ForkJoinPool.commonPool-worker-11/INFO]: [Parkour] Checking for update...
[23:03:57] [ForkJoinPool.commonPool-worker-11/WARN]: [Parkour] ==== Parkour ====
[23:03:57] [ForkJoinPool.commonPool-worker-11/WARN]: [Parkour] An update for Parkour is available: v7.0.6
[23:03:57] [ForkJoinPool.commonPool-worker-11/WARN]: [Parkour] Available at: https://www.spigotmc.org/resources/parkour.23685/
[23:03:57] [ForkJoinPool.commonPool-worker-11/WARN]: [Parkour] =================
[23:03:57] [Server thread/INFO]: [MobArenaStats] Enabling MobArenaStats v1.0
[23:03:57] [Server thread/INFO]: [MobArenaStats] Session store created.
[23:03:57] [Server thread/INFO]: [MobArenaStats] Schema is up to date.
[23:03:57] [Server thread/INFO]: [MobArenaStats] Session listener registered.
[23:03:57] [Server thread/INFO]: [TAB-Bridge] Enabling TAB-Bridge v2.0.6
[23:03:57] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.4
[23:03:57] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.1.0.36-SNAPSHOT
[23:03:57] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[23:03:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerpoints [3.2.4]
[23:03:57] [Server thread/INFO]: [InventorySaver] Enabling InventorySaver v3.7.2-VERSION-1.19
[23:03:57] [Server thread/INFO]: [InventorySaver] Configuration file found. Loading configuration file.
[23:03:57] [Server thread/INFO]: [InventorySaver] [History - MySQL] Database connection was successful created.
[23:03:57] [Server thread/INFO]: [InventorySaver] InventorySaver use different timezone (UTC)
[23:03:57] [Server thread/INFO]: [IP] Enabling IP v4.0.2
[23:03:57] [Server thread/INFO]: [IP] Loaded all config files
[23:03:57] [Server thread/INFO]: [IP] Registered gamemode default!
[23:03:57] [Server thread/INFO]: [IP] Registered gamemode spectator!
[23:03:57] [Server thread/INFO]: [IP] Registered style type default!
[23:03:57] [Server thread/INFO]: [IP] Connecting with Holographic Displays...
[23:03:57] [Server thread/INFO]: [IP] Connecting with PlaceholderAPI...
[23:03:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: witp [4.0.2]
[23:03:57] [Server thread/INFO]: [IP] Connecting with Floodgate...
[23:03:57] [Server thread/INFO]: [IP] Connecting with Multiverse...
[23:03:57] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:57] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:57] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: witp
[23:03:57] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[23:03:57] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:57] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:57] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'witp' - Env: NORMAL - Type: FLAT & generator: VoidGen
[23:03:57] [Server thread/ERROR]: No key layers in MapLike[{}]
[23:03:58] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[23:03:58] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[23:03:58] [Server thread/INFO]: [IP] Loaded IP in 860ms!
[23:03:58] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.19.0
[23:03:58] [Server thread/INFO]: [EssentialsGeoIP] This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com/.
[23:03:58] [Server thread/INFO]: [EssentialsGeoIP] Starting Metrics. Opt-out using the global bStats config.
[23:03:58] [Server thread/INFO]: [TitansBattle] Enabling TitansBattle v6.2.0-13497c0
[23:03:59] [Server thread/INFO]: [TitansBattle] [ACF] Enabled Asynchronous Tab Completion Support!
[23:03:59] [Server thread/INFO]: [TitansBattle] Scheduled a monthly event. This event will be repeated only after a restart.
[23:03:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: titansbattle [6.2.0-13497c0]
[23:03:59] [Server thread/INFO]: [ParticleToText] Enabling ParticleToText v1.2.0
[23:03:59] [Server thread/INFO]: ÂLoaded 0 fonts from 0 files
[23:03:59] [Server thread/INFO]: ÂLoaded fonts: []
[23:03:59] [Server thread/INFO]: ÂÂ|-----------------------------ÂÂÂ ParticleText ÂÂ-----------------------------|
[23:03:59] [Server thread/INFO]: 
[23:03:59] [Server thread/INFO]: ÂFor support ÂÂEdward#1234Â Âor joinÂÂ https://discord.gg/zuNuBdKvVX
[23:03:59] [Server thread/INFO]: 
[23:03:59] [Server thread/INFO]:                          Loaded dependencies
[23:03:59] [Server thread/INFO]: 
[23:03:59] [Server thread/INFO]: ÂPlaceholderAPI Â: ÂHOOKED
[23:03:59] [Server thread/INFO]: ÂLuckPerms Â: ÂHOOKED
[23:03:59] [Server thread/INFO]: 
[23:03:59] [Server thread/INFO]:                                    Other
[23:03:59] [Server thread/INFO]: 
[23:03:59] [Server thread/INFO]: Â1 Particles effects loaded
[23:03:59] [Server thread/INFO]: 
[23:03:59] [Server thread/INFO]: ÂÂ|-----------------------------ÂÂÂ ParticleText ÂÂ-----------------------------|
[23:03:59] [Server thread/INFO]: [BeastWithdraw] Enabling BeastWithdraw v2.2
[23:03:59] [Server thread/INFO]: [BeastWithdraw] /XpBottle command aliases [xpb, beastxpb, bottle] are registered.
[23:03:59] [Server thread/INFO]: [BeastWithdraw] /bWithdraw command aliases [cashnote, withdraw, moneywithdraw, moneynote] are registered.
[23:03:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[23:03:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[23:03:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[23:03:59] [Server thread/INFO]: [BeastWithdraw] Version 2.2 : has been enabled!
[23:03:59] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.1
[23:03:59] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 1ms)
[23:03:59] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_19_R1!
[23:03:59] [Server thread/INFO]: [SimplePortals] Everything looks like it is up to date!
[23:03:59] [Server thread/INFO]: [BetterStructures] Enabling BetterStructures v1.3.5
[23:03:59] [Server thread/INFO]: [BetterStructures] Initialized!
[23:03:59] [Server thread/WARN]: [BetterStructures] Loaded class org.slf4j.impl.StaticLoggerBinder from ajParkour v2.12.10 which is not a depend or softdepend of this plugin.
[23:03:59] [Server thread/INFO]: [com.magmaguy.shaded.reflections.Reflections] Reflections took 27 ms to scan 1 urls, producing 1 keys and 5 values 
[23:03:59] [Server thread/WARN]: [HeadsPluginAPI] Loaded class com.magmaguy.betterstructures.config.treasures.TreasureConfigFields from BetterStructures v1.3.5 which is not a depend or softdepend of this plugin.
[23:03:59] [Server thread/WARN]: [BetterStructures] Invalid chance detected! Problematic entry: chance
[23:03:59] [Server thread/WARN]: [BetterStructures] Treasure file treasure_overworld_underground.yml has invalid treasure entries!
[23:03:59] [Server thread/INFO]: [com.magmaguy.shaded.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 1 keys and 29 values 
[23:03:59] [Server thread/WARN]: [BetterStructures] Invalid chance detected! Problematic entry: chance
[23:03:59] [Server thread/WARN]: [BetterStructures] Treasure file treasure_overworld_underground.yml has invalid treasure entries!
[23:03:59] [Server thread/WARN]: [BetterStructures] Invalid chance detected! Problematic entry: chance
[23:03:59] [Server thread/WARN]: [BetterStructures] Treasure file treasure_overworld_underground.yml has invalid treasure entries!
[23:03:59] [Server thread/WARN]: [BetterStructures] Invalid chance detected! Problematic entry: chance
[23:03:59] [Server thread/WARN]: [BetterStructures] Treasure file treasure_overworld_underground.yml has invalid treasure entries!
[23:03:59] [Server thread/WARN]: [BetterStructures] Invalid chance detected! Problematic entry: chance
[23:03:59] [Server thread/WARN]: [BetterStructures] Treasure file treasure_overworld_underground.yml has invalid treasure entries!
[23:03:59] [Server thread/WARN]: [BetterStructures] Invalid chance detected! Problematic entry: chance
[23:03:59] [Server thread/WARN]: [BetterStructures] Treasure file treasure_overworld_underground.yml has invalid treasure entries!
[23:03:59] [Server thread/WARN]: [BetterStructures] Invalid chance detected! Problematic entry: chance
[23:03:59] [Server thread/WARN]: [BetterStructures] Treasure file treasure_overworld_underground.yml has invalid treasure entries!
[23:04:06] [Server thread/INFO]: [MineChess] Enabling MineChess v1.14.1
[23:04:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: minechess [1.14.1]
[23:04:06] [Server thread/INFO]: [MineChess] Has been enabled! Version: 1.14.1
[23:04:06] [Server thread/INFO]: [MineChess] Thanks for using my plugin!  ~Ajneb97
[23:04:06] [Server thread/INFO]: [DragonSlayer] Enabling DragonSlayer v0.12.1_Jeppa
[23:04:06] [Server thread/INFO]: [DragonSlayer] Checking for updates...
[23:04:07] [Server thread/INFO]: [DragonSlayer] You're running the latest plugin version!
[23:04:07] [Server thread/INFO]: [DragonSlayer] Events 1.9+ enabled!
[23:04:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dragonslayer [0.12.1_Jeppa]
[23:04:07] [Server thread/INFO]: [DragonSlayer] ProtocolLib found...
[23:04:07] [Server thread/INFO]: [DragonSlayer] Vault dependency found, rewards will be enabled!
[23:04:07] [Server thread/INFO]: [DragonSlayer] PlaceholderAPI found, will be used!
[23:04:07] [Server thread/INFO]: [DragonSlayer] Essentials found, will be used!
[23:04:07] [Server thread/INFO]: [DragonSlayer] 1 endgateways found on Dragon_Slayer with 19 free slots...
[23:04:07] [Server thread/INFO]: [DragonSlayer] 1 endgateways found on Dragon_Slayer with 19 free slots...
[23:04:07] [Server thread/INFO]: [IPPlus] Enabling IPPlus v1.0.0
[23:04:07] [Server thread/INFO]: [IP] Registered gamemode practice!
[23:04:07] [Server thread/INFO]: [IP] Registered gamemode team_survival!
[23:04:07] [Server thread/INFO]: [IP] Registered gamemode lobby!
[23:04:07] [Server thread/INFO]: [IP] Registered gamemode speed!
[23:04:07] [Server thread/INFO]: [IP] Registered gamemode super_jump!
[23:04:07] [Server thread/INFO]: [IP] Registered gamemode hourglass!
[23:04:07] [Server thread/INFO]: [IP] Registered gamemode time_trial!
[23:04:07] [Server thread/INFO]: [IP] Registered gamemode duels!
[23:04:07] [Server thread/INFO]: [IP] Registered style type incremental!
[23:04:07] [Server thread/INFO]: [IPPlus] Loaded Infinite Parkour Plus in 95ms!
[23:04:07] [Server thread/INFO]: [DragonTimer] Enabling DragonTimer v1.5.8
[23:04:07] [Server thread/INFO]: [DragonTimer] Checking for updates...
[23:04:07] [Server thread/INFO]: [DragonTimer] You're running the latest plugin version!
[23:04:07] [Server thread/INFO]: [DragonTimer] DragonSlayer found, will be used!
[23:04:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dragontimer [1.5.8]
[23:04:07] [Server thread/INFO]: [DragonTimer] PlaceholderAPI found, will be used!
[23:04:07] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-SNAPSHOT+2202-0d2ed82
[23:04:07] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[23:04:07] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[23:04:07] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[23:04:07] [Server thread/INFO]: [WorldGuard] (oldspawn) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (oldspawn) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (oldspawn) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (oldspawn) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'oldspawn'
[23:04:07] [Server thread/INFO]: [WorldGuard] (arcade2) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (arcade2) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (arcade2) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (arcade2) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'arcade2'
[23:04:07] [Server thread/INFO]: [WorldGuard] (easter) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (easter) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (easter) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (easter) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'easter'
[23:04:07] [Server thread/INFO]: [WorldGuard] (Minigames) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Minigames) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Minigames) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Minigames) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Minigames'
[23:04:07] [Server thread/INFO]: [WorldGuard] (PartyGames) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (PartyGames) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (PartyGames) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (PartyGames) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PartyGames'
[23:04:07] [Server thread/INFO]: [WorldGuard] (Dragon_Slayer) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Dragon_Slayer) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Dragon_Slayer) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Dragon_Slayer) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dragon_Slayer'
[23:04:07] [Server thread/INFO]: [WorldGuard] (builds) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (builds) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (builds) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (builds) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'builds'
[23:04:07] [Server thread/INFO]: [WorldGuard] (Halloween_Spawn) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Halloween_Spawn) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Halloween_Spawn) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Halloween_Spawn) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Halloween_Spawn'
[23:04:07] [Server thread/INFO]: [WorldGuard] (Resource) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Resource) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Resource) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Resource) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Resource'
[23:04:07] [Server thread/INFO]: [WorldGuard] (SolomonManor) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (SolomonManor) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (SolomonManor) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (SolomonManor) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SolomonManor'
[23:04:07] [Server thread/INFO]: [WorldGuard] (Arcade) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Arcade) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Arcade) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Arcade) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Arcade'
[23:04:07] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[23:04:07] [Server thread/INFO]: [WorldGuard] (Parkour) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Parkour) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Parkour) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Parkour) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Parkour'
[23:04:07] [Server thread/INFO]: [WorldGuard] (2world) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (2world) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (2world) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (2world) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world '2world'
[23:04:07] [Server thread/INFO]: [WorldGuard] (haunted) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (haunted) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (haunted) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (haunted) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'haunted'
[23:04:07] [Server thread/INFO]: [WorldGuard] (outlands) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (outlands) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (outlands) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (outlands) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'outlands'
[23:04:07] [Server thread/INFO]: [WorldGuard] (testworld) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (testworld) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (testworld) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (testworld) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'testworld'
[23:04:07] [Server thread/INFO]: [WorldGuard] (Steampunk) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Steampunk) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Steampunk) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (Steampunk) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Steampunk'
[23:04:07] [Server thread/INFO]: [WorldGuard] (party) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (party) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (party) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (party) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'party'
[23:04:07] [Server thread/INFO]: [WorldGuard] (witp) TNT ignition is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (witp) Lighters are PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (witp) Lava fire is PERMITTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] (witp) Fire spread is UNRESTRICTED.
[23:04:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'witp'
[23:04:07] [Server thread/INFO]: [WorldGuard] Loading region data...
[23:04:08] [Server thread/WARN]: [NexEngine] Loaded class com.sk89q.worldguard.WorldGuard from WorldGuard v7.0.8-SNAPSHOT+2202-0d2ed82 which is not a depend or softdepend of this plugin.
[23:04:08] [Server thread/INFO]: [NexEngine] Successfully hooked with WorldGuard!
[23:04:08] [Server thread/INFO]: [ajParkour] Enabling ajParkour v2.12.10
[23:04:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajpk [2.12.10]
[23:04:08] [Server thread/INFO]: ajParkour v2.12.10 by ajgeiss0702 has been enabled!
[23:04:08] [Server thread/INFO]: [Roulette] Enabling Roulette v1.9.2.1-SNAPSHOT
[23:04:08] [Server thread/INFO]: [Roulette] Using Essentials as the economy provider.
[23:04:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: roulette [1.9.2.1-SNAPSHOT]
[23:04:08] [Server thread/INFO]: [Roulette] All chips have been loaded from chips.yml!
[23:04:08] [Server thread/INFO]: [Roulette] All games have been loaded from games.yml!
[23:04:08] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.19.0
[23:04:08] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[23:04:08] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.2
[23:04:08] [Server thread/INFO]: [net.coreprotect.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:04:08] [Server thread/WARN]: [CoreProtect] Loaded class org.hsqldb.jdbc.JDBCDriver from HeadsPluginAPI v3.1.0 which is not a depend or softdepend of this plugin.
[23:04:08] [Server thread/WARN]: [CoreProtect] Loaded class org.h2.Driver from SupremeTags v1.4.4 which is not a depend or softdepend of this plugin.
[23:04:08] [Server thread/WARN]: [CoreProtect] Loaded class us.ajg0702.leaderboards.libs.h2.Driver from ajLeaderboards v2.6.1 which is not a depend or softdepend of this plugin.
[23:04:08] [Server thread/INFO]: [net.coreprotect.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:04:08] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[23:04:08] [Server thread/INFO]: [CoreProtect] Using MySQL for data storage.
[23:04:08] [Server thread/INFO]: --------------------
[23:04:08] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[23:04:08] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[23:04:08] [Server thread/INFO]: --------------------
[23:04:08] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.0
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[23:04:08] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[23:04:08] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.13.5
[23:04:09] [Server thread/INFO]: [HeadDatabase] ÂUsing default Â"en_US.lang" Âcreated by ÂArcaniax
[23:04:09] [Server thread/ERROR]: [HeadDatabase] Failed to initialize head reflection, are you using a supported server version?
[23:04:09] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[23:04:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.13.5]
[23:04:09] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-DEV-146
[23:04:09] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[23:04:09] [Server thread/INFO]: [DeluxeMenus] 5 GUI menus loaded!
[23:04:09] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[23:04:09] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[23:04:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.6-DEV-146]
[23:04:09] [Server thread/INFO]: [ProdigyNightclub] Enabling ProdigyNightclub v3.1.0
[23:04:09] [Server thread/INFO]:     ____                 ___                _   ___       __    __  ________      __ 
[23:04:09] [Server thread/INFO]:    / __ \_________  ____/ (_)___ ___  __   / | / (_)___ _/ /_  / /_/ ____/ /_  __/ /_
[23:04:09] [Server thread/INFO]:   / /_/ / ___/ __ \/ __  / / __ `/ / / /  /  |/ / / __ `/ __ \/ __/ /   / / / / / __ \
[23:04:09] [Server thread/INFO]:  / ____/ /  / /_/ / /_/ / / /_/ / /_/ /  / /|  / / /_/ / / / / /_/ /___/ / /_/ / /_/ /
[23:04:09] [Server thread/INFO]: /_/   /_/   \____/\__,_/_/\__, /\__, /  /_/ |_/_/\__, /_/ /_/\__/\____/_/\__,_/_.___/
[23:04:09] [Server thread/INFO]:                          /____//____/           /____/                 
[23:04:09] [Server thread/INFO]:         The prodigy is the man who knows how to become the king of the party ©
[23:04:09] [Server thread/INFO]: Info: Vault economy is loaded ! Ticket purchase system is now allowed 
[23:04:09] [Server thread/INFO]: INFO: example_scenario.json is detected !
[23:04:09] [Server thread/INFO]:  - Path: plugins/ProdigyNightclub/nightclubs/nightclub/scenario/example_scenario.json
[23:04:09] [Server thread/INFO]:  - This scenario is not used by ProdigyNightclub, rename the file if you want to load it
[23:04:10] [Server thread/INFO]: [ProdigyNightclub] [ACF] Enabled Asynchronous Tab Completion Support!
[23:04:10] [Server thread/INFO]: [KaBoom] Enabling KaBoom v1.8.0
[23:04:10] [Server thread/INFO]: 

     _.-^^---....,,-._     

 _--                   '-_ 

<                        >)

|        KA BOOM!        | 

 \._                   _./

    ```--. . , ; .--'''    

          | |   |          

       .-=||  | |=-.       

       `-=#$%&%$#=-'       

          | ;  :|          

______.,-#%&$@%#&#~,.______

            By             

         TauCubed          

           1.8.0           
[23:04:10] [Server thread/INFO]: [KaBoom] Loaded support for Paper 1.16+
[23:04:10] [Server thread/INFO]: [KaBoom] Enabling CoreProtect hook...
[23:04:10] [Server thread/INFO]: [KaBoom] CoreProtect hook enabled.
[23:04:10] [Server thread/INFO]: [KaBoom] Enabled KaBoom!
[23:04:10] [Server thread/INFO]: [SkinStatueBuilder] Enabling SkinStatueBuilder v1.0.1*
[23:04:10] [Server thread/INFO]: [Jumpscares] Enabling Jumpscares v1.14.5
[23:04:10] [Server thread/INFO]: [Jumpscares] WorldGuard support enabled! Use the screamers flag to block all the screamers in a region.
[23:04:10] [Server thread/INFO]: [GadgetsMenu] Enabling GadgetsMenu v5.2.7
[23:04:10] [Server thread/INFO]: [GadgetsMenu] ------------------------------------------------------
[23:04:10] [Server thread/INFO]: [GadgetsMenu]       GadgetsMenu [Premium] 5.2.7 is loading...
[23:04:10] [Server thread/INFO]: [GadgetsMenu]          [server: git-Paper-220 (MC: 1.19.2)]
[23:04:10] [Server thread/INFO]: [GadgetsMenu]                  Running Java 17.0.1
[23:04:10] [Server thread/INFO]: [GadgetsMenu]                Plugin by Yap Zhen Yie.
[23:04:10] [Server thread/INFO]: [GadgetsMenu]             Date Modified: 16 October 2022
[23:04:10] [Server thread/INFO]: [GadgetsMenu]                            
[23:04:10] [Server thread/INFO]: [GadgetsMenu]              Initializing module v1_19_R1
[23:04:10] [Server thread/INFO]: [GadgetsMenu] ------------------------------------------------------
[23:04:11] [Server thread/INFO]: [GadgetsMenu] Connecting to SQLite database...
[23:04:11] [Server thread/INFO]: [GadgetsMenu] Successfully connected to SQLite database.
[23:04:11] [Server thread/INFO]: [GadgetsMenu] Enabled Mystery Vault individual hologram.
[23:04:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gadgetsmenu [1.0.3]
[23:04:11] [Server thread/INFO]: [GadgetsMenu] [Placeholder] PlaceholderAPI hooked.
[23:04:11] [Server thread/INFO]: [BountyHunters] Enabling BountyHunters v2.4.4
[23:04:11] [Server thread/INFO]: [BountyHunters] Detected Server Version: v1_19_R1
[23:04:11] [Server thread/INFO]: [BountyHunters] Hooked onto UltimateClans
[23:04:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bountyhunters [2.4.4]
[23:04:11] [Server thread/INFO]: [BountyHunters] Hooked onto PlaceholderAPI
[23:04:11] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2654)
[23:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[23:04:12] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[23:04:12] [Server thread/WARN]: [NexEngine] Loaded class net.citizensnpcs.api.trait.TraitInfo from Citizens v2.0.30-SNAPSHOT (build 2654) which is not a depend or softdepend of this plugin.
[23:04:12] [Server thread/INFO]: [NexEngine] Successfully hooked with Citizens!
[23:04:12] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.2
[23:04:12] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[23:04:12] [Server thread/INFO]: [Shopkeepers] Loading the data of 1 shopkeepers ...
[23:04:12] [Server thread/INFO]: [Celebrate] Enabling Celebrate v1.0.6
[23:04:12] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.2
[23:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerparticles [8.2]
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners] Enabling UpgradeableSpawners v3.2.10
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners] Version: 3.2.10 Previous: 3.2.10
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners] Server: 1.19.x running Paper
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners] Licensed to: 684274
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners] Experiencing issues or having questions? Join our Discord!
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners] Discord: https://discord.gg/B4MAJVk
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners] Wiki: https://github.com/Angeschossen/UpgradeableSpawners/wiki
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners]  
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated HolographicDisplays as hologram manager.
[23:04:12] [Server thread/INFO]: [UpgradeableSpawners] Using SQLite as database driver.
[23:04:13] [Server thread/INFO]: [UpgradeableSpawners] Successful connected to SQL database.
[23:04:13] [Server thread/INFO]: [UpgradeableSpawners] Database is ready.
[23:04:13] [Server thread/INFO]: [HeadDisplays] Enabling HeadDisplays v1.9.0
[23:04:13] [Server thread/INFO]: [HeadDisplays] Loading fonts!
[23:04:13] [Server thread/INFO]: [HeadDisplays] Loaded 3 fonts!
[23:04:13] [Server thread/INFO]: [HeadDisplays] Starting to load data for HeadDisplays
[23:04:13] [Server thread/INFO]: [HeadDisplays] Finished loading data for HeadDisplays
[23:04:13] [Server thread/INFO]: [SupremeTags] Enabling SupremeTags v1.4.4
[23:04:13] [Server thread/WARN]: [SupremeTags] Loaded class org.hsqldb.jdbc.JDBCDriver from HeadsPluginAPI v3.1.0 which is not a depend or softdepend of this plugin.
[23:04:13] [Server thread/WARN]: [SupremeTags] Loaded class us.ajg0702.leaderboards.libs.h2.Driver from ajLeaderboards v2.6.1 which is not a depend or softdepend of this plugin.
[23:04:13] [Server thread/WARN]: [ajLeaderboards] Loaded class org.h2.mvstore.tx.VersionedValueType$Factory from SupremeTags v1.4.4 which is not a depend or softdepend of this plugin.
[23:04:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supremetags [1.4.4]
[23:04:13] [Server thread/INFO]: [TAGS] loaded 116 tag(s) successfully.
[23:04:13] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[23:04:13] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[23:04:13] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[23:04:13] [Server thread/INFO]: [WanderingTrades] Enabling WanderingTrades v1.7.3
[23:04:14] [Server thread/INFO]: [WanderingTrades] Successfully registered Mojang Brigadier support for commands.
[23:04:14] [Server thread/INFO]: [WanderingTrades] Successfully registered asynchronous command completion listener.
[23:04:14] [Server thread/INFO]: [CitizensCMD] Enabling CitizensCMD v2.6.6
[23:04:14] [Server thread/INFO]: [CitizensCMD] CitizensCMD 2.6.6
[23:04:14] [Server thread/INFO]: [CitizensCMD] by Mateus Moreira @LichtHund & Maintained by HexedHero
[23:04:15] [Server thread/INFO]: [CitizensCMD] Using English messages!
[23:04:15] [Server thread/INFO]: [CitizensCMD] Using PlaceholderAPI!
[23:04:15] [Server thread/INFO]: [CitizensCMD] Using Vault!
[23:04:15] [Server thread/INFO]: [Duels] Enabling Duels v3.5.2
[23:04:15] [Server thread/INFO]: [Duels] Successfully hooked into 'BountyHunters'!
[23:04:15] [Server thread/INFO]: [Duels] Successfully hooked into 'Essentials'!
[23:04:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: duels [1.0]
[23:04:15] [Server thread/INFO]: [Duels] Successfully hooked into 'PlaceholderAPI'!
[23:04:15] [Server thread/INFO]: [Duels] Using Economy Provider: com.earth2me.essentials.economy.vault.VaultEconomyProvider
[23:04:15] [Server thread/INFO]: [Duels] Successfully hooked into 'Vault'!
[23:04:15] [Server thread/INFO]: [Duels] Successfully hooked into 'WorldGuard'!
[23:04:15] [Server thread/INFO]: [Duels] KitManagerImpl: Loaded 3 kit(s).
[23:04:15] [Server thread/INFO]: [Duels] ArenaManagerImpl: Loaded 8 arena(s).
[23:04:15] [Server thread/INFO]: [Duels] QueueManager: Loaded 3 queue(s).
[23:04:15] [Server thread/INFO]: [Duels] QueueSignManagerImpl: Loaded 3 queue sign(s).
[23:04:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: duels [1.0.0]
[23:04:15] [Server thread/INFO]: [Duels] ExtensionManager: Extension 'Placeholders 1.0.4' is now enabled.
[23:04:15] [Server thread/INFO]: [Duels] [ArenaRegen Extension] NMSHandler: Using me.realized.de.arenaregen.nms.fallback.NMSHandler
[23:04:15] [Server thread/INFO]: [Duels] ExtensionManager: Extension 'ArenaRegen 1.2.0' is now enabled.
[23:04:15] [Server thread/INFO]: [BoardGames] Enabling BoardGames v1.0.17
[23:04:16] [Server thread/INFO]: [BoardGames] Loaded extensions.
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Chess
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Poker
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Plinko
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Minesweeper
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Hi-Lo
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Roulette
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Checkers
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Mines
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game ConwaysGameOfLife
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game MoneyHoneySlots
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Sudoku
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game ConnectFour
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game TicTacToe
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Uno
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game Blackjack
[23:04:16] [Server thread/INFO]: [BoardGames] Loading game LibertyBellSlots
[23:04:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: boards [1.0.17]
[23:04:16] [Server thread/INFO]: [BoardGames] bStats: true plugin ver: 1.0.17
[23:04:16] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.5-SNAPSHOT (build 1775-REL)
[23:04:16] [Server thread/INFO]: [Denizen] Running on java version: 17.0.1
[23:04:16] [Server thread/INFO]: [Denizen] Running on fully supported Java 17.
[23:04:16] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[23:04:16] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[23:04:16] [Server thread/INFO]: +> [Denizen]  
[23:04:16] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[23:04:16] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[23:04:16] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[23:04:16] [Server thread/INFO]: +> [Denizen] version: 1.2.5-SNAPSHOT (build 1775-REL) 
[23:04:16] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[23:04:17] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[23:04:17] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[23:04:17] [Server thread/INFO]: +> [Denizen] Loaded 150 core commands and 28 core object types, at 1060ms from start. 
[23:04:17] [Server thread/INFO]: +> [ScriptRegistry] Loading 1 script files... 
[23:04:17] [Server thread/INFO]: +> [Denizen] Final full init took 1090ms. 
[23:04:17] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.5
[23:04:17] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[23:04:17] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.0.5
[23:04:17] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[23:04:17] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with HolographicDisplays!
[23:04:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.0.5]
[23:04:17] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with PlaceholderAPI!
[23:04:18] [Server thread/INFO]: [ExcellentCrates] Loaded 5 animation configs.
[23:04:18] [Server thread/INFO]: [ExcellentCrates] Loaded 15 crate keys.
[23:04:18] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[23:04:18] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 163 ms!
[23:04:18] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18
[23:04:18] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[23:04:18] [Server thread/INFO]: [GriefPrevention] 148 total claims loaded.
[23:04:18] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[23:04:18] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[23:04:18] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[23:04:18] [Server thread/INFO]: [GriefPrevention] Boot finished.
[23:04:18] [Server thread/INFO]: [eGlow] Enabling eGlow v3.2.0
[23:04:18] [Server thread/INFO]: [eGlow]: Loading main config.
[23:04:18] [Server thread/INFO]: [eGlow]: Loading messages config.
[23:04:18] [Server thread/INFO]: [eGlow]: Loading CustomEffects config.
[23:04:18] [Server thread/INFO]: eGlow Successfully loaded Playerdata database.
[23:04:18] [Server thread/INFO]: [Quests] Enabling Quests v4.5.3-b359
[23:04:18] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[23:04:18] [Server thread/INFO]: [Quests] Successfully linked Quests with Citizens 2.0.30-SNAPSHOT (build 2654)
[23:04:18] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[23:04:18] [Server thread/INFO]: [GSit] Enabling GSit v1.2.8
[23:04:18] [Server thread/INFO]: [GSit] The Plugin was successfully enabled.
[23:04:18] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[23:04:18] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[23:04:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.2.8]
[23:04:18] [Server thread/INFO]: [GSit] Link with GriefPrevention successful!
[23:04:18] [Server thread/INFO]: [StoreStats] Enabling StoreStats v3.22.2
[23:04:18] [Server thread/INFO]: [StoreStats] Initializing managers...
[23:04:18] [Server thread/INFO]: [StoreStats] Using Paper Implementation!
[23:04:18] [Server thread/INFO]: [StoreStats] ImplementationManager initialized!
[23:04:18] [Server thread/INFO]: [StoreStats] DataManager initialized!
[23:04:18] [Server thread/INFO]: [StoreStats] StoreManager initialized!
[23:04:18] [Server thread/INFO]: [StoreStats] PaymentManager initialized!
[23:04:18] [Server thread/INFO]: [StoreStats] DisplayManager initialized!
[23:04:18] [Server thread/INFO]: [StoreStats] PlaceholdersManager initialized!
[23:04:18] [Server thread/INFO]: [StoreStats] InventoryManager initialized!
[23:04:18] [Server thread/INFO]: [StoreStats] Registering commands...
[23:04:18] [Server thread/INFO]: [StoreStats] Registering listeners...
[23:04:18] [Server thread/INFO]: [StoreStats] Loading data...
[23:04:18] [Server thread/INFO]: [StoreStats] Registering hooks...
[23:04:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: storestats [3.22.2]
[23:04:18] [Server thread/INFO]: [StoreStats] Hooked into PlaceholderAPI
[23:04:18] [Server thread/INFO]: [StoreStats] Hooked into Citizens
[23:04:18] [Server thread/INFO]: [StoreStats] Starting tasks...
[23:04:18] [Server thread/INFO]: [StoreStats] Using MineStore implementation!
[23:04:18] [Server thread/INFO]: [StoreStats] Starting metrics...
[23:04:18] [Server thread/INFO]: [StoreStats] Plugin registered to 684274 | -708032678
[23:04:18] [Server thread/INFO]: [StoreStats] Done and enabled in 30.04ms
[23:04:18] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.7.19
[23:04:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.7.19]
[23:04:19] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[23:04:19] [Server thread/INFO]: [PremiumVanish] Hooked into LibsDisguises
[23:04:19] [Server thread/INFO]: [PremiumVanish] Hooked into Essentials
[23:04:19] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[23:04:19] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.17.3
[23:04:19] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[23:04:20] [Server thread/INFO]: [PlayerWarps] Found 18 config files to load!
[23:04:20] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[23:04:20] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[23:04:20] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[23:04:20] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[23:04:20] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[23:04:20] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[23:04:20] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[23:04:20] [ForkJoinPool.commonPool-worker-11/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[23:04:20] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.3.6
[23:04:21] [Server thread/INFO]: Server version: v1_19_R1 - 1.19.2 - paper
[23:04:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.3.6]
[23:04:21] [Server thread/INFO]: PlaceholderAPI hooked.
[23:04:21] [Server thread/INFO]: Updated (EN) language file. Took 34ms
[23:04:21] [Server thread/INFO]: [TerminatorNPC] Enabling TerminatorNPC v1.4-SNAPSHOT
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.1.0.0
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] === ENABLE START ===
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Plugin Version V3.1.0.0
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] PlayerPoint plugin detection performed successfully
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] /home/minecraft/multicraft/servers/smp/plugins/zAuctionHouseV3/config.json loaded successfully !
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Loading of 1 tax items
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Loading of 1 price items
[23:04:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zauctionhouse [3.1.0.0]
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Loading 3 inventories
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Loading 0 commands
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] /home/minecraft/multicraft/servers/smp/plugins/zAuctionHouseV3/items.json loaded successfully !
[23:04:21] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] === ENABLE DONE (79ms) ===
[23:04:21] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.1.2
[23:04:21] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into SuperVanish/PremiumVanish!
[23:04:21] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into Essentials!
[23:04:24] [Server thread/INFO]: [InteractionVisualizer] Loading languages...
[23:04:24] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[23:04:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactionvisualizer [2.0.0]
[23:04:25] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[23:04:25] [Server thread/INFO]: [CTFly] Enabling CTFly v1.3
[23:04:25] [Server thread/INFO]: [CTFly::INFO] Initialized FlyTime map.
[23:04:25] [Server thread/INFO]: [CTFly::INFO] CTFly plugin 1.3-1.19 by [Blueysh]
[23:04:25] [Server thread/INFO]: [CTFly::INFO] Loaded in 12ms.
[23:04:25] [Server thread/INFO]: [QuickShop] Enabling QuickShop v5.1.0.9
[23:04:25] [Server thread/INFO]: [QuickShop] QuickShop Reremake
[23:04:25] [Server thread/INFO]: [QuickShop] Starting plugin self-test, please wait...
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] Java Runtime Environment Version Test
[23:04:25] [Server thread/INFO]: [QuickShop] Running QuickShop-Reremake on NMS version v1_19_R1 For Minecraft version 1.19.2
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] Spigot Based Server Test
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] Old QuickShop Test
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] ModdedServer Based Test
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] CoreSupport Test
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] Virtual DisplayItem Support Test
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] GameVersion supporting Test
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] PacketListenerAPI Conflict Test
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] Permission Manager Test
[23:04:25] [Server thread/INFO]: [QuickShop] [OK] End of life Test
[23:04:25] [Server thread/INFO]: [QuickShop] Reading the configuration...
[23:04:25] [Server thread/INFO]: [QuickShop] Developers: PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), jho5245, Ghost_chu, cakoyo, Ectabro, portlek, log4b0at, Andre601, deadman96385, Vlvxingze, DoctaEnkoda, Mgazul, TiaraRinne, sandtechnology, Starmism, Chris6ix, Rean Schwarzer, mart-r, raphtaliapt, Tim269, creatorfromhell, LoneDev6, judgetread, confuxeon, ibmibmibm, yannicklamprecht, PyvesB, PaulBGD, ORelio, JoschuaSchneider, Starmium, harry0198, efekurbann, tdiant
[23:04:25] [Server thread/INFO]: [QuickShop] Original author: Netherfoam, Timtower, KaiNoMood
[23:04:25] [Server thread/INFO]: [QuickShop] Let's start loading the plugin
[23:04:25] [Server thread/INFO]: [QuickShop] Chat processor selected: Hardcoded BungeeChat Lib
[23:04:25] [Server thread/INFO]: [QuickShop] Loading plugin translations files...
[23:04:25] [Server thread/INFO]: [QuickShop] Game assets server selected: Mojang API
[23:04:25] [Server thread/INFO]: [QuickShop] Loading items translations...
[23:04:26] [Server thread/INFO]: [QuickShop] Loading enchantments translations...
[23:04:26] [Server thread/INFO]: [QuickShop] Loading potions translations...
[23:04:26] [Server thread/INFO]: [QuickShop] Successfully loaded PlaceHolderAPI support!
[23:04:26] [Server thread/INFO]: [QuickShop] Successfully loaded WorldEdit support!
[23:04:26] [Server thread/INFO]: [QuickShop] Using Virtual Item display, loading ProtocolLib support...
[23:04:26] [Server thread/INFO]: [QuickShop] Successfully loaded ProtocolLib support!
[23:04:26] [Server thread/INFO]: [QuickShop] Setting up database...
[23:04:26] [Server thread/INFO]: [QuickShop] Checking and updating database columns, it may take a while...
[23:04:26] [Server thread/INFO]: [QuickShop] Finished!
[23:04:26] [Server thread/INFO]: [QuickShop] Selected permission provider: Bukkit
[23:04:26] [Server thread/INFO]: [QuickShop] Registering commands...
[23:04:26] [Server thread/INFO]: [QuickShop] Loaded 1 rules for listener blacklist.
[23:04:26] [Server thread/INFO]: [QuickShop] EventManager selected: QSEventManager
[23:04:26] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
[23:04:26] [Server thread/INFO]: [QuickShop] Loading shops from the database...
[23:04:26] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
[23:04:26] [Server thread/INFO]: [QuickShop] Total           shops: 60
[23:04:26] [Server thread/INFO]: [QuickShop] Valid           shops: 60
[23:04:26] [Server thread/INFO]: [QuickShop] Pending              : 0
[23:04:26] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
[23:04:26] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 60
[23:04:26] [Server thread/INFO]: [QuickShop] Done! Used 34ms to loaded shops in database.
[23:04:26] [Server thread/INFO]: [QuickShop] Registering listeners...
[23:04:26] [Server thread/INFO]: [QuickShop] Cleaning MsgUtils...
[23:04:26] [Server thread/INFO]: [QuickShop] Cleaning purchase messages from the database that are over a week old...
[23:04:26] [Server thread/INFO]: [QuickShop] Log actions is enabled, actions will log in the qs.log file!
[23:04:26] [Server thread/INFO]: [QuickShop] [Shop Purger] Purge not enabled!
[23:04:26] [Server thread/INFO]: [QuickShop] QuickShop Loaded! 813 ms.
[23:04:26] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
[23:04:26] [Server thread/INFO]: [ProtectionLib] Enabling ProtectionLib v1.6
[23:04:26] [Server thread/INFO]: [ProtectionLib] ProtectionLib-Module: LocalLibary hooked!
[23:04:26] [Server thread/INFO]: [ProtectionLib] ProtectionLib-Module: PlotSquaredV3Module hooked!
[23:04:26] [Server thread/INFO]: [ProtectionLib] ProtectionLib-Module: PlotSquaredV4Module hooked!
[23:04:26] [Server thread/INFO]: [ProtectionLib] ProtectionLib-Module: PlotSquaredV6Module hooked!
[23:04:26] [Server thread/INFO]: Protection lib hook into: GriefPrevention 16.18
[23:04:26] [Server thread/INFO]: Protection lib hook into: WorldGuard 7.0.8-SNAPSHOT+2202-0d2ed82
[23:04:26] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.40
[23:04:26] [Server thread/INFO]: [BigDoors] Power Block Types:
[23:04:26] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[23:04:26] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[23:04:26] [Server thread/INFO]: [BigDoors]  - BEDROCK
[23:04:26] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[23:04:26] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[23:04:26] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[23:04:26] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[23:04:26] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[23:04:26] [Server thread/INFO]: [BigDoors]  - LAVA
[23:04:26] [Server thread/INFO]: [BigDoors]  - WATER
[23:04:26] [Server thread/INFO]: [BigDoors]  - SNOW
[23:04:26] [Server thread/INFO]: [BigDoors]  - FERN
[23:04:26] [Server thread/INFO]: [BigDoors]  - GRASS
[23:04:26] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[23:04:26] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[23:04:26] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[23:04:26] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[23:04:26] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[23:04:26] [Server thread/INFO]: [BigDoors] Successfully hooked into "GriefPrevention"!
[23:04:26] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.4.5
[23:04:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.4.5]
[23:04:26] [Server thread/INFO]: [BigDoorsOpener] Enabling BigDoorsOpener v2.4.6
[23:04:26] [Server thread/INFO]: [BigDoorsOpener] Enabled. Required 31 ms.
[23:04:26] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.0.5
[23:04:26] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[23:04:26] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[23:04:26] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[23:04:26] [Server thread/INFO]: [ItemEdit] placeholders:
[23:04:26] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[23:04:26] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[23:04:26] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[23:04:26] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[23:04:26] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[23:04:26] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[23:04:26] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[23:04:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[23:04:26] [Server thread/INFO]: [ItemEdit] # Enabled (took 44 ms)
[23:04:26] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.1-SNAPSHOT
[23:04:26] [Server thread/INFO]: [PremiumVanish] Hooked into DiscordSRV
[23:04:26] [Server thread/INFO]: [DiscordSRVUtils] Enabling DiscordSRVUtils v1.2.10-DEV
[23:04:26] [Server thread/INFO]: 
[]=====[Enabling DiscordSRVUtils]=====[]
| Information:
|   Name: DiscordSRVUtils
|   Developers: BlueTree242
|   Version: 1.2.10-DEV
|   Build: #174
|   Storage: HsqlDB
| Support:
|   Github: https://github.com/BlueTree242/BlueDevelopersInc/issues
|   Discord: https://discordsrvutils.xyz/support
[]================================[]
[23:04:26] [Server thread/INFO]: [DiscordSRVUtils] MySQL is disabled, using hsqldb
[23:04:26] [Server thread/INFO]: [DiscordSRVUtils] [HikariCP] HikariPool-1 - Starting...
[23:04:26] [Server thread/WARN]: [DiscordSRVUtils] Loaded class org.hsqldb.jdbc.JDBCDriver from HeadsPluginAPI v3.1.0 which is not a depend or softdepend of this plugin.
[23:04:26] [Server thread/INFO]: [DiscordSRVUtils] [HikariCP] HikariPool-1 - Start completed.
[23:04:27] [Server thread/WARN]: [DiscordSRVUtils] Loaded class org.slf4j.impl.StaticLoggerBinder from ajParkour v2.12.10 which is not a depend or softdepend of this plugin.
[23:04:27] [Server thread/INFO]: [DiscordSRVUtils] [Flyway] Schema "PUBLIC" is up to date. No migration necessary.
[23:04:27] [Server thread/INFO]: [DiscordSRVUtils] MySQL/HsqlDB Connected & Setup
[23:04:27] [Server thread/INFO]: [DiscordSRV] API listener tk.bluetree242.discordsrvutils.listeners.discordsrv.DiscordSRVListener subscribed (3 methods)
[23:04:27] [Server thread/INFO]: [QuickShopList] Enabling QuickShopList v1.2
[23:04:27] [Server thread/INFO]: [QuickShopList] QuickShop List Addon loading...
[23:04:27] [Server thread/INFO]: [zAuctionHouse-Discord] Enabling zAuctionHouse-Discord v1.0.7
[23:04:27] [Server thread/INFO]: [zAuctionHouse-Discord v1.0.7] === ENABLE START ===
[23:04:27] [Server thread/INFO]: [zAuctionHouse-Discord v1.0.7] Plugin Version V1.0.7
[23:04:27] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[23:04:27] [Server thread/INFO]: [zAuctionHouse-Discord v1.0.7] /home/minecraft/multicraft/servers/smp/plugins/zAuctionHouse-Discord/config.json loaded successfully !
[23:04:27] [Server thread/INFO]: [zAuctionHouse-Discord v1.0.7] /home/minecraft/multicraft/servers/smp/plugins/zAuctionHouse-Discord/storage.json loaded successfully !
[23:04:27] [Server thread/INFO]: [zAuctionHouse-Discord v1.0.7] /home/minecraft/multicraft/servers/smp/plugins/zAuctionHouse-Discord/config.json successfully saved !
[23:04:27] [Server thread/INFO]: [zAuctionHouse-Discord v1.0.7] === ENABLE DONE (75ms) ===
[23:04:27] [zDiscord-BOT/WARN]: [zAuctionHouse-Discord] Loaded class org.slf4j.impl.StaticLoggerBinder from ajParkour v2.12.10 which is not a depend or softdepend of this plugin.
[23:04:27] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.6.8
[23:04:27] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[23:04:27] [Server thread/INFO]: [Vulcan] Server Version: 1.19.2 detected!
[23:04:27] [Server thread/INFO]: [Vulcan] Floodgate 2.0 found. Enabling hook!
[23:04:27] [Server thread/INFO]: [Vulcan] LibsDisguises found. Enabling hook!
[23:04:27] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[23:04:27] [Server thread/INFO]: [Vulcan] BStats enabled!
[23:04:27] [Server thread/ERROR]: [Vulcan] Plugin Vulcan v2.6.8 has failed to register events for class me.frep.vulcan.spigot.Vulcan_xq because dev/geco/gsit/api/event/PlayerSitEvent does not exist.
[23:04:27] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[23:04:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Vulcan [2.6.8]
[23:04:27] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[23:04:27] [Server thread/INFO]: [DeluxeAnnounce] Enabling DeluxeAnnounce v21.5.19
[23:04:27] [zDiscord-BOT/INFO]: [net.dv8tion.jda.api.JDA] Login Successful!
[23:04:27] [zDiscord-BOT/WARN]: java.lang.IllegalArgumentException: Name may not be blank
[23:04:27] [zDiscord-BOT/WARN]:     at zDiscord-1.0.7-1.0.7.jar//net.dv8tion.jda.internal.utils.Checks.notBlank(Checks.java:80)
[23:04:27] [zDiscord-BOT/WARN]:     at zDiscord-1.0.7-1.0.7.jar//net.dv8tion.jda.api.entities.Activity.playing(Activity.java:124)
[23:04:27] [zDiscord-BOT/WARN]:     at zDiscord-1.0.7-1.0.7.jar//fr.maxlego08.discord.ZDiscordPlugin.lambda$onEnable$1(ZDiscordPlugin.java:56)
[23:04:27] [zDiscord-BOT/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[23:04:27] [zDiscord-BOT/INFO]: [zAuctionHouseV3 v3.1.0.0] Please read the error before coming on the discord to ask for help!
[23:04:27] [zDiscord-BOT/INFO]: [zAuctionHouseV3 v3.1.0.0] If the error says: "Cannot use CacheFlag.<something 1> without GatewayIntent.<something 2>"
[23:04:27] [zDiscord-BOT/INFO]: [zAuctionHouseV3 v3.1.0.0] You have to modify the config.json file to add the <something 2> in the gatewayIntents list.
[23:04:27] [zDiscord-BOT/INFO]: [zAuctionHouseV3 v3.1.0.0] if the error says: The provided token is invalid!
[23:04:27] [zDiscord-BOT/INFO]: [zAuctionHouseV3 v3.1.0.0] the token of your bot is invalid, and you have to add it in the config.json file
[23:04:27] [zDiscord-BOT/INFO]: [zAuctionHouse-Discord] Disabling zAuctionHouse-Discord v1.0.7
[23:04:28] [pool-195-thread-1/WARN]: [DiscordSRV] This build of DiscordSRV is ahead of master but behind develop. Update your development build!
[23:04:28] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[23:04:28] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:console-smp(751464821718777867)
[23:04:28] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[23:04:28] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.9.3
[23:04:28] [zDiscord-BOT/INFO]: [zAuctionHouse-Discord v1.0.7] === DISABLE START ===
[23:04:28] [zDiscord-BOT/INFO]: [zAuctionHouse-Discord v1.0.7] /home/minecraft/multicraft/servers/smp/plugins/zAuctionHouse-Discord/storage.json successfully saved !
[23:04:28] [zDiscord-BOT/INFO]: [zAuctionHouse-Discord v1.0.7] === DISABLE DONE (5ms) ===
[23:04:28] [JDA MainWS-ReadThread/ERROR]: [net.dv8tion.jda.internal.requests.WebSocketClient] Encountered exception on lifecycle level
JSON: {"op":10,"s":null,"t":null,"d":{"_trace":["[\"gateway-prd-us-east1-b-x7qb\",{\"micros\":0.0}]"],"heartbeat_interval":41250}}
java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask@7789c479[Not completed, task = java.util.concurrent.Executors$RunnableAdapter@262f5189[Wrapped task = net.dv8tion.jda.internal.requests.WebSocketClient$$Lambda$15380/0x00000008042a3d70@62884ef0]] rejected from java.util.concurrent.ScheduledThreadPoolExecutor@6a484902[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 1]
    at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2065) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:833) ~[?:?]
    at java.util.concurrent.ScheduledThreadPoolExecutor.delayedExecute(ScheduledThreadPoolExecutor.java:340) ~[?:?]
    at java.util.concurrent.ScheduledThreadPoolExecutor.scheduleAtFixedRate(ScheduledThreadPoolExecutor.java:632) ~[?:?]
    at net.dv8tion.jda.internal.requests.WebSocketClient.setupKeepAlive(WebSocketClient.java:611) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at net.dv8tion.jda.internal.requests.WebSocketClient.onEvent(WebSocketClient.java:821) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at net.dv8tion.jda.internal.requests.WebSocketClient.handleEvent(WebSocketClient.java:770) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at net.dv8tion.jda.internal.requests.WebSocketClient.onBinaryMessage(WebSocketClient.java:943) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ListenerManager.callOnBinaryMessage(ListenerManager.java:385) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.callOnBinaryMessage(ReadingThread.java:276) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.handleBinaryFrame(ReadingThread.java:996) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.handleFrame(ReadingThread.java:755) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.main(ReadingThread.java:108) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.runMain(ReadingThread.java:64) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.WebSocketThread.run(WebSocketThread.java:45) ~[zDiscord-1.0.7-1.0.7.jar:?]
[23:04:28] [JDA MainWS-ReadThread/ERROR]: [net.dv8tion.jda.internal.requests.WebSocketClient] There was an error in the WebSocket connection
java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:189) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    at net.dv8tion.jda.internal.requests.WebSocketClient.handleEvent(WebSocketClient.java:775) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at net.dv8tion.jda.internal.requests.WebSocketClient.onBinaryMessage(WebSocketClient.java:943) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ListenerManager.callOnBinaryMessage(ListenerManager.java:385) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.callOnBinaryMessage(ReadingThread.java:276) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.handleBinaryFrame(ReadingThread.java:996) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.handleFrame(ReadingThread.java:755) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.main(ReadingThread.java:108) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.runMain(ReadingThread.java:64) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.WebSocketThread.run(WebSocketThread.java:45) ~[zDiscord-1.0.7-1.0.7.jar:?]
[23:04:28] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Starting...
[23:04:28] [Server thread/WARN]: [VotingPlugin] Loaded class org.hsqldb.jdbc.JDBCDriver from HeadsPluginAPI v3.1.0 which is not a depend or softdepend of this plugin.
[23:04:28] [Server thread/WARN]: [VotingPlugin] Loaded class org.h2.Driver from SupremeTags v1.4.4 which is not a depend or softdepend of this plugin.
[23:04:28] [Server thread/WARN]: [VotingPlugin] Loaded class us.ajg0702.leaderboards.libs.h2.Driver from ajLeaderboards v2.6.1 which is not a depend or softdepend of this plugin.
[23:04:28] [Server thread/WARN]: [VotingPlugin] Loaded class tk.bluetree242.discordsrvutils.dependencies.hsqldb.jdbc.JDBCDriver from DiscordSRVUtils v1.2.10-DEV which is not a depend or softdepend of this plugin.
[23:04:28] [JDA MainWS-ReadThread/ERROR]: [net.dv8tion.jda.internal.requests.WebSocketClient] There was an error in the WebSocket connection
java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:189) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    at net.dv8tion.jda.internal.requests.WebSocketClient.onDisconnected(WebSocketClient.java:460) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ListenerManager.callOnDisconnected(ListenerManager.java:224) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.WebSocket.finish(WebSocket.java:3730) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.WebSocket.onThreadsFinished(WebSocket.java:3696) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.WebSocket.onReadingThreadFinished(WebSocket.java:3663) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.notifyFinished(ReadingThread.java:1138) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.ReadingThread.runMain(ReadingThread.java:80) ~[zDiscord-1.0.7-1.0.7.jar:?]
    at com.neovisionaries.ws.client.WebSocketThread.run(WebSocketThread.java:45) ~[zDiscord-1.0.7-1.0.7.jar:?]
[23:04:28] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Start completed.
[23:04:30] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[23:04:30] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.9.3
[23:04:30] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from MCServerTime.com, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[23:04:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling VentureChat hook
[23:04:30] [Server thread/INFO]: [FurnitureLib] Enabling FurnitureLib v2.8.2
[23:04:30] [Server thread/INFO]: ==========================================
[23:04:30] [Server thread/INFO]: FurnitureLibrary Version: 2.8.2
[23:04:30] [Server thread/INFO]: Furniture Author: Ste3et_C0st
[23:04:30] [Server thread/INFO]: Furniture Website: https://dicecraft.de/furniture/
[23:04:30] [Server thread/INFO]: FurnitureLib load for Minecraft: 1.19
[23:04:30] [Server thread/INFO]: Furniture start load
[23:04:30] [Server thread/INFO]: Furniture find ProtectionLib: true
[23:04:30] [Server thread/WARN]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariConfig] FurnitureLib - idleTimeout has been set but has no effect because the pool is operating as a fixed size pool.
[23:04:30] [Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Starting...
[23:04:30] [Server thread/WARN]: [FurnitureLib] Loaded class org.hsqldb.jdbc.JDBCDriver from HeadsPluginAPI v3.1.0 which is not a depend or softdepend of this plugin.
[23:04:30] [Server thread/WARN]: [FurnitureLib] Loaded class org.h2.Driver from SupremeTags v1.4.4 which is not a depend or softdepend of this plugin.
[23:04:30] [Server thread/WARN]: [FurnitureLib] Loaded class us.ajg0702.leaderboards.libs.h2.Driver from ajLeaderboards v2.6.1 which is not a depend or softdepend of this plugin.
[23:04:30] [Server thread/WARN]: [FurnitureLib] Loaded class tk.bluetree242.discordsrvutils.dependencies.hsqldb.jdbc.JDBCDriver from DiscordSRVUtils v1.2.10-DEV which is not a depend or softdepend of this plugin.
[23:04:30] [Server thread/INFO]: [de.Ste3et_C0st.FurnitureLib.Database.com.zaxxer.hikari.HikariDataSource] FurnitureLib - Start completed.
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib Started SQLite database. Took 45ms
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (world)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: world
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (world_nether)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: world_nether
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (world_the_end)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: world_the_end
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (oldspawn)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: oldspawn
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (arcade2)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: arcade2
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (easter)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: easter
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Minigames)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Minigames
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (PartyGames)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: PartyGames
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Dragon_Slayer)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Dragon_Slayer
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (builds)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: builds
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Halloween_Spawn)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Halloween_Spawn
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Resource)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Resource
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (SolomonManor)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: SolomonManor
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Arcade)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Arcade
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (spawn)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: spawn
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Parkour)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Parkour
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (2world)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: 2world
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (haunted)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: haunted
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (outlands)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: outlands
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (testworld)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: testworld
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (Steampunk)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: Steampunk
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (party)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: party
[23:04:30] [Server thread/INFO]: [FurnitureLib] FurnitureLib try to load models for world (witp)
[23:04:30] [Server thread/INFO]: [FurnitureLib] No Models are found in world: witp
[23:04:33] [Server thread/INFO]: [FurnitureLib] FurnitureLib Load 42 model schematics into Ram. Took 3544ms
[23:04:33] [Server thread/INFO]: Furniture load finish :)
[23:04:33] [Server thread/INFO]: ==========================================
[23:04:33] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[23:04:33] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Enabling DiscordSRV-Staff-Chat v1.4.4
[23:04:34] [Server thread/INFO]: [DiscordSRV] API listener com.rezzedup.discordsrv.staffchat.listeners.DiscordStaffChatListener subscribed (1 methods)
[23:04:34] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Subscribed to DiscordSRV: messages will be sent to Discord
[23:04:34] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[23:04:34] [Server thread/INFO]: [DiceFurniture] Enabling DiceFurniture v3.7.1
[23:04:36] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[23:04:36] [Server thread/INFO]: [AngelChest] Enabling AngelChest v9.7.0
[23:04:36] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 6 alerts registered
[23:04:37] [Server thread/INFO]: [AngelChest] groups.yml does not exist, skipping custom group settings.
[23:04:37] [Server thread/INFO]: [AngelChest] blacklist.yml does not exist, disabling item blacklist.
[23:04:37] [Server thread/INFO]: [AngelChest] No graveyards.yml found, disabling Graveyards feature
[23:04:37] [Server thread/INFO]: [AngelChest] Removed 1 old log files.
[23:04:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: angelchest [GENERIC]
[23:04:37] [Server thread/INFO]: [AngelChest] Successfully hooked into Vault and the EconomyProvider, enabling economy functions.
[23:04:37] [Server thread/INFO]: [AngelChest] [ACF] Enabled Asynchronous Tab Completion Support!
[23:04:37] [Server thread/INFO]: [Jobs] Enabling Jobs v5.1.0.1
[23:04:37] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into LiteBans
[23:04:37] [Server thread/INFO]: ------------- Jobs -------------
[23:04:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.1.0.1]
[23:04:37] [Server thread/INFO]: PlaceholderAPI hooked.
[23:04:37] [Server thread/INFO]: Connected to database (SqLite)
[23:04:37] [Server thread/INFO]: Loaded 8 titles
[23:04:37] [Server thread/INFO]: Loaded 69 protected blocks timers
[23:04:37] [Server thread/INFO]: Loaded 1282 custom item names
[23:04:37] [Server thread/INFO]: Loaded 79 custom entity names
[23:04:37] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[23:04:37] [Server thread/INFO]: Loaded 38 custom enchant names
[23:04:37] [Server thread/INFO]: Loaded 21 custom enchant names
[23:04:37] [Server thread/INFO]: Loaded 16 custom color names
[23:04:37] [Server thread/INFO]: Loaded 4 shop items
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Hunter
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Fisherman
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Digger
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Builder
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Farmer
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Enchanter
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Brewer
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Crafter
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Miner
[23:04:37] [Server thread/INFO]: Loaded 1 quests for Explorer
[23:04:37] [Server thread/INFO]: Loaded 12 jobs
[23:04:37] [Server thread/INFO]: Loaded 0 boosted items
[23:04:37] [Server thread/INFO]: Loaded 86 furnace for reassigning.
[23:04:37] [Server thread/INFO]: Loaded 12 brewing for reassigning.
[23:04:38] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[23:04:38] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[23:04:38] [Server thread/INFO]: Preloaded 95 players data in 0.01
[23:04:38] [Server thread/INFO]: WorldGuard detected.
[23:04:38] [Server thread/INFO]: [Jobs] Loaded 1251 block protection entries. 157ms
[23:04:38] [Server thread/INFO]: Loading explorer data
[23:04:38] [Server thread/INFO]: Loaded explorer data (60450) in 245 ms
[23:04:38] [Server thread/INFO]: Plugin has been enabled successfully.
[23:04:38] [Server thread/INFO]: ------------------------------------
[23:04:38] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into Essentials
[23:04:38] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into PlaceholderAPI
[23:04:38] [Server thread/INFO]: [Plan] Enabling Plan v5.4 build 1722
[23:04:38] [Server thread/INFO]: [Plan] 
[23:04:38] [Server thread/INFO]: [Plan]            ██▌
[23:04:38] [Server thread/INFO]: [Plan]      ██▌   ██▌
[23:04:38] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[23:04:38] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.4 build 1722
[23:04:38] [Server thread/INFO]: [Plan] 
[23:04:38] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[23:04:38] [Server thread/INFO]: [Plan] Downloading MySQL Driver, this may take a while...
[23:04:38] [Server thread/WARN]: [Plan] Loaded class org.h2.Driver from SupremeTags v1.4.4 which is not a depend or softdepend of this plugin.
[23:04:38] [Server thread/WARN]: [Plan] Loaded class us.ajg0702.leaderboards.libs.h2.Driver from ajLeaderboards v2.6.1 which is not a depend or softdepend of this plugin.
[23:04:38] [Server thread/WARN]: [Plan] Loaded class tk.bluetree242.discordsrvutils.dependencies.hsqldb.jdbc.JDBCDriver from DiscordSRVUtils v1.2.10-DEV which is not a depend or softdepend of this plugin.
[23:04:38] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[23:04:38] [Server thread/INFO]: [Plan] MySQL-database connection established.
[23:04:38] [Server thread/INFO]: [Plan] WebServer: Certificate KeyStore File not Found: plugins/Plan/Cert.jks
[23:04:38] [Server thread/INFO]: [Plan] WebServer: No Certificate -> Using HTTP-server for Visualization.
[23:04:38] [Server thread/INFO]: [Plan] WebServer: User Authorization Disabled! (Not secure over HTTP)
[23:04:38] [Server thread/INFO]: [Plan] Webserver running on PORT 8804 ( http://91.109.116.41:8804 )
[23:04:38] [Server thread/INFO]: [Plan] Webserver: IP Whitelist is enabled.
[23:04:38] [Server thread/INFO]: [Plan] Loading server identifying information
[23:04:38] [Server thread/INFO]: [Plan] Server identifier loaded: bd2fdfcf-37f4-4ccf-9977-cfe2360fe60d
[23:04:38] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] Applying Patch: PlayerTableRowPatch..
[23:04:39] [Plan MySQLDB-transaction-thread-1/INFO]: [Plan] All database patches applied successfully.
[23:04:39] [Server thread/INFO]: [Plan] Registered extension: DiscordSRV
[23:04:39] [Server thread/INFO]: [DiscordSRV] API listener com.djrapitops.extension.DiscordSRVListener subscribed (2 methods)
[23:04:39] [Server thread/INFO]: [Plan] Registered extension: Essentials
[23:04:39] [Server thread/INFO]: [Plan] Registered extension: EssentialsEco
[23:04:39] [Server thread/INFO]: [Plan] Registered extension: GriefPrevention
[23:04:39] [Server thread/INFO]: [Plan] Registered extension: Jobs
[23:04:39] [Server thread/INFO]: [Plan] Registered extension: Litebans
[23:04:39] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[23:04:40] [Server thread/INFO]: [Plan] Registered extension: nuVotifier
[23:04:40] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[23:04:40] [Server thread/INFO]: [Plan] Registered extension: Quests
[23:04:40] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[23:04:40] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[23:04:40] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[23:04:40] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[23:04:40] [Server thread/INFO]: [NPC_Destinations] Enabling NPC_Destinations v2.6.16
[23:04:40] [Timer-15/WARN]: [DiscordSRV] Loaded class kotlin.Metadata from eco v6.38.3 which is not a depend or softdepend of this plugin.
[23:04:40] [Server thread/INFO]: [NPC_Destinations] MC Version found (MC: 1.19.2)
[23:04:40] [Server thread/INFO]: [NPC_Destinations] Citizens (2.0.30-SNAPSHOT (build 2654)) found, NPC trait enabled.
[23:04:40] [Server thread/INFO]: [NPC_Destinations] BetonQuest not found, quest support disabled
[23:04:40] [Server thread/INFO]: [NPC_Destinations] LightAPI was not found, there will be no support for NPC torch lighting.
[23:04:40] [Server thread/INFO]: [NPC_Destinations] JobsReborn was found, adding support for Jobs in locations.
[23:04:40] [Server thread/INFO]: [NPC_Destinations] Sentinel was not found, there will be no sentinel support in locations.
[23:04:40] [Server thread/INFO]: [NPC_Destinations] PlotSquared not found, plot compliance disabled
[23:04:40] [Server thread/INFO]: [NPC_Destinations] Worldguard found V(7.0.8-SNAPSHOT+2202-0d2ed82), regions supported
[23:04:40] [Server thread/INFO]: [BossShopPro] Enabling BossShopPro v2.0.15
[23:04:40] [Server thread/INFO]: [BossShopPro] Loading data...
[23:04:40] [Server thread/INFO]: [BossShopPro] Hooked into PlaceholderAPI.
[23:04:40] [Server thread/INFO]: [AuxProtect] Enabling AuxProtect v1.1.9
[23:04:40] [Server thread/INFO]: [AuxProtect] Vault hooked
[23:04:40] [Server thread/INFO]: [AuxProtect] Jobs hooked
[23:04:40] [Server thread/INFO]: [AuxProtect] Essentials hooked
[23:04:40] [Server thread/INFO]: [NPCDestinations_Animator] Enabling NPCDestinations_Animator v2.6.14
[23:04:41] [Server thread/INFO]: [NPCDestinations_Farmer] Enabling NPCDestinations_Farmer v2.6.10
[23:04:41] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.3.8
[23:04:44] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[23:04:45] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[23:04:45] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[23:04:45] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[23:04:45] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[23:04:45] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Eco (Core)!
[23:04:45] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[23:04:45] [Server thread/INFO]: [InteractiveChat] InteractiveChat has injected into VentureChat!
[23:04:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [1.0.0]
[23:04:45] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[23:04:45] [DSU-THREAD/INFO]: [DiscordSRVUtils] Plugin is ready to function.
[23:04:45] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.3.8
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-70.1-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.8-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[23:04:45] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[23:04:46] [Server thread/INFO]: [InteractiveChat] Loading languages...
[23:04:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[23:04:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[23:04:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[23:04:47] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 30 slash commands (0 conflicted) for 2 plugins in 1/1 guilds (0 cancelled)
[23:04:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[23:04:47] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[23:04:47] [Server thread/INFO]: [DeluxeCombat] Enabling DeluxeCombat v1.40.4
[23:04:47] [Server thread/INFO]: [DeluxeCombat]  _____        _                   ______            _                
[23:04:47] [Server thread/INFO]: [DeluxeCombat] (____ \      | |                 / _____)          | |          _    
[23:04:47] [Server thread/INFO]: [DeluxeCombat]  _   \ \ ____| |_   _ _   _ ____| /      ___  ____ | | _   ____| |_  
[23:04:47] [Server thread/INFO]: [DeluxeCombat] | |   | / _  ) | | | ( \ / ) _  ) |     / _ \|    \| || \ / _  |  _) 
[23:04:47] [Server thread/INFO]: [DeluxeCombat] | |__/ ( (/ /| | |_| |) X ( (/ /| \____| |_| | | | | |_) | ( | | |__ 
[23:04:47] [Server thread/INFO]: [DeluxeCombat] |_____/ \____)_|\____(_/ \_)____)\______)___/|_|_|_|____/ \_||_|\___)
[23:04:47] [Server thread/INFO]: [DeluxeCombat] 
[23:04:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxecombat [0.1.2]
[23:04:48] [Server thread/INFO]: [Duels] Hooked into DeluxeCombat!
[23:04:48] [Server thread/INFO]: [DeluxeCombat] Spawnpoints (0), Kill-Streaks (1), Rewards (2), Custom Tools (1) loaded!
[23:04:48] [Server thread/INFO]: [DeluxeCombat] BungeeCoord has been enabled in the spigot.yml. Registering outgoing plugin channel...
[23:04:48] [Server thread/INFO]: [DeluxeCombat_Addon_WG] Enabling DeluxeCombat_Addon_WG v0.9*
[23:04:48] [Server thread/INFO]: [DeluxeCombat] [Addon] WorldGuard Addon hooked into WorldGuardExtraFlags.
[23:04:48] [Server thread/INFO]: [DeluxeCombat] [Addon] WorldGuard Addon successfully loaded.
[23:04:48] [Server thread/INFO]: [WorldGuard] Registering session handler de.timderspieler.deluxecombat.addon.wg.PvPForceFlag
[23:04:48] [Server thread/INFO]: [WorldGuard] Registering session handler de.timderspieler.deluxecombat.addon.wg.PvPTagFlag
[23:04:48] [Server thread/INFO]: [UltimateClans] Enabling UltimateClans v5.5.3
[23:04:48] [Server thread/INFO]: [UltimateClans] ========================================
[23:04:48] [Server thread/INFO]: [UltimateClans]  _     _  _        _                              ______  _                     
[23:04:48] [Server thread/INFO]: [UltimateClans] | |   | || | _    (_)               _            / _____)| |                  V5
[23:04:48] [Server thread/INFO]: [UltimateClans] | |   | || || |_   _  ____    ____ | |_    ____ | /      | |  ____  ____    ___ 
[23:04:48] [Server thread/INFO]: [UltimateClans] | |   | || ||  _) | ||    \  / _  ||  _)  / _  )| |      | | / _  ||  _ \  /___)
[23:04:48] [Server thread/INFO]: [UltimateClans] | |___| || || |__ | || | | |( ( | || |__ ( (/ / | \_____ | |( ( | || | | ||___ |
[23:04:48] [Server thread/INFO]: [UltimateClans]  \______||_| \___)|_||_|_|_| \_||_| \___) \____) \______)|_| \_||_||_| |_|(___/ 
[23:04:48] [Server thread/INFO]: [UltimateClans]  
[23:04:49] [Server thread/INFO]: [UltimateClans] Licensed to: lDashi (1179)
[23:04:49] [Server thread/INFO]: [UltimateClans] Language: EN (default)
[23:04:49] [Server thread/INFO]: [UltimateClans] Setup database: SQLITE (Medium)
[23:04:49] [Server thread/INFO]: [UltimateClans]  - Clan database [OK]
[23:04:49] [Server thread/INFO]: [UltimateClans]  - Player database [OK]
[23:04:49] [Server thread/INFO]: [UltimateClans] Setup hooks...
[23:04:49] [Server thread/INFO]: [UltimateClans]  - ProtocolLib
[23:04:49] [Server thread/INFO]: [UltimateClans]  - PlaceholderAPI
[23:04:49] [Server thread/INFO]: [UltimateClans]  - Duels
[23:04:49] [Server thread/INFO]: [UltimateClans]  - DeluxeCombat
[23:04:49] [Server thread/INFO]: [UltimateClans]  - WorldGuard 7+
[23:04:49] [Server thread/INFO]: [UltimateClans]  - HolographicDisplays
[23:04:49] [Server thread/INFO]: [UltimateClans]  - DecentHolograms [USING]
[23:04:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: uclans [UClans V5]
[23:04:49] [Server thread/INFO]: [UltimateClans] Setup bedrock hook...
[23:04:49] [Server thread/INFO]: [UltimateClans]  - floodgate
[23:04:49] [Server thread/INFO]: [UltimateClans] Setup economy...
[23:04:49] [Server thread/INFO]: [UltimateClans]  - Vault
[23:04:49] [Server thread/INFO]: [UltimateClans]  - PlayerPoints
[23:04:49] [Server thread/INFO]: [UltimateClans] Economy: VAULT
[23:04:49] [Server thread/INFO]: [UltimateClans] Started support for Signs.
[23:04:49] [Server thread/INFO]: [UltimateClans] Loaded 47 commands.
[23:04:49] [Server thread/INFO]: [UltimateClans] Setup Addons...
[23:04:51] [Server thread/INFO]: [UltimateClans]  - ClanChest V2.4.1, Lang: EN, Chests: [On Demand], Using: SQLITE [Medium]
[23:04:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: clanglad [ClanGladiator Addon V1]
[23:04:52] [Server thread/INFO]: [UltimateClans]  - ClanGladiator, V:1.1.0 (Lang: EN, Registered: [/clanglad, /gladiator], Timezone America/Sao_Paulo)
[23:04:52] [Server thread/INFO]: [UltimateClans]  - ClanBanner, V1.4.0 (Lang: EN)
[23:04:52] [Server thread/WARN]: [UltimateClans]  ! ClanDiscordIntegrationReason: Turned off by configuration.
[23:04:53] [Server thread/WARN]: [UltimateClans] Error addon: ClanDiscordIntegration, StackTrace: saved in /logs/addon-ClanDiscordIntegration-stacktrace.log
[23:04:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: clanwar [ClanWar Addon V1]
[23:04:53] [Server thread/INFO]: [UltimateClans]  - ClanWar, V2.6.2 (Lang: EN, Cmd: [/clanwar=true], Arena(s): 0, Kits(s): 0)
[23:04:53] [Server thread/INFO]: [TitansBattle] Registered ClansGroupManager
[23:04:53] [Server thread/INFO]: [UltimateClans]  - BridgeTitansBattle, V2.0 (Hooks: [TitansBattle])
[23:04:55] [Server thread/INFO]: [UltimateClans]  - ClanHolograms, V2.2.0 (Cmd: [/clanholo], Using: SQLITE [Medium])
[23:04:55] [Server thread/INFO]: [UltimateClans]  - ClanPVPManager, V1.4.0
[23:04:55] [Server thread/INFO]: [UltimateClans] ========================================
[23:04:55] [Server thread/INFO]: [Boosters] Enabling Boosters v4.44.0
[23:04:55] [Server thread/INFO]: [Boosters] 
[23:04:55] [Server thread/INFO]: [Boosters] Loading Boosters
[23:04:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: boosters [4.44.0]
[23:04:56] [Server thread/INFO]: [Boosters] Loaded integrations: Jobs, Boosters, EcoEnchants, EcoPets, Vault, PlaceholderAPI
[23:04:56] [Server thread/INFO]: [Boosters] No extensions found
[23:04:56] [Server thread/WARN]: [Boosters] Loaded class com.willfp.ecopets.api.event.PlayerPetLevelUpEvent from EcoPets v1.40.2 which is not a depend or softdepend of this plugin.
[23:04:56] [Server thread/INFO]: [Boosters] 
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI] Enabling EcoEnchantsGUI v4.1
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI]  Â ______          ______            _                 _        Â_____ _    _ _____ 
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI]  Â|  ____|        |  ____|          | |               | |      Â/ ____| |  | |_   _|
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI]  Â| |__   ___ ___ | |__   _ __   ___| |__   __ _ _ __ | |_ ___Â| Â|  __| |  | | | |  
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI]  Â|  __| / __/ _ \|  __| | '_ \ / __| '_ \ / _` | '_ \| __/ __Â| | |_ | |  | | | |  
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI]  Â| |___| (_| (_) | |____| | | | (__| | | | (_| | | | | |_\__ \ Â|__| | |__| |_| |_ 
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI]  Â|______\___\___/|______|_| |_|\___|_| |_|\__,_|_| |_|\__|___/Â\_____|\____/|_____|
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI]                                                                                   
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI]                                                                 Âby _OfTeN_        
[23:04:56] [Server thread/INFO]: [EcoEnchantsGUI]                                                                                   
[23:04:57] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[23:04:57] [Server thread/INFO]: Running delayed init tasks
[23:04:57] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.1/2 (760)
[23:04:57] [ForkJoinPool.commonPool-worker-4/WARN]: [PlaceholderAPI] Loaded class net.ess3.api.IEssentials from Essentials v2.19.0 which is not a depend or softdepend of this plugin.
[23:04:57] [Craft Scheduler Thread - 18 - HeadsPluginAPI/INFO]: [com.github.cc007.headsplugin.business.services.heads.CategoryUpdaterImpl] Found categories to be updated: []
[23:04:57] [Craft Scheduler Thread - 18 - HeadsPluginAPI/INFO]: [com.github.cc007.headsplugin.business.services.ProfilerImpl] Done updating necessary categories in 0.100s.
[23:04:57] [Craft Scheduler Thread - 27 - Essentials/INFO]: [Essentials] ÂFetching version information...
[23:04:57] [Craft Scheduler Thread - 36 - IP/INFO]: [IP] Initializing schematics...
[23:04:57] [Craft Scheduler Thread - 5 - StatTrackers/WARN]: [StatTrackers] StatTrackers is out of date! (Version 5.0.8)
[23:04:57] [Craft Scheduler Thread - 5 - StatTrackers/WARN]: [StatTrackers] The newest version is 5.1.0
[23:04:57] [Craft Scheduler Thread - 5 - StatTrackers/WARN]: [StatTrackers] Download the new version!
[23:04:57] [Craft Scheduler Thread - 6 - EcoPets/WARN]: [EcoPets] EcoPets is out of date! (Version 1.40.2)
[23:04:57] [Craft Scheduler Thread - 6 - EcoPets/WARN]: [EcoPets] The newest version is 1.53.0
[23:04:57] [Craft Scheduler Thread - 6 - EcoPets/WARN]: [EcoPets] Download the new version!
[23:04:57] [Craft Scheduler Thread - 7 - EcoEnchants/WARN]: [EcoEnchants] EcoEnchants is out of date! (Version 8.111.0)
[23:04:57] [Craft Scheduler Thread - 7 - EcoEnchants/WARN]: [EcoEnchants] The newest version is 9.2.0
[23:04:57] [Craft Scheduler Thread - 7 - EcoEnchants/WARN]: [EcoEnchants] Download the new version!
[23:04:57] [Craft Scheduler Thread - 6 - GadgetsMenu/INFO]: [GadgetsMenu] Checking for updates...
[23:04:57] [Craft Scheduler Thread - 54 - PlayerParticles/INFO]: [PlayerParticles] Data handler connected using SQLite.
[23:04:57] [Craft Scheduler Thread - 36 - IP/INFO]: [IP] Found 0 unsupported schematic(s).
[23:04:57] [Craft Scheduler Thread - 36 - IP/INFO]: [IP] Loaded all schematics in 57ms!
[23:04:57] [Craft Scheduler Thread - 56 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[23:04:57] [Craft Scheduler Thread - 66 - StoreStats/INFO]: [StoreStats] Testing Store connection...
[23:04:57] [Craft Scheduler Thread - 71 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[23:04:57] [Craft Scheduler Thread - 11 - TangledMaze/INFO]: A new version of TangledMaze is available!
[23:04:57] [Craft Scheduler Thread - 49 - BeastWithdraw/INFO]: [BeastWithdraw] There is a new update available.
[23:04:57] [Craft Scheduler Thread - 11 - TangledMaze/INFO]: 2.1.0 FIXED: building mazes below Y:0
[23:04:57] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[23:04:57] [Craft Scheduler Thread - 47 - BetterStructures/INFO]: [BetterStructures] Latest public release is 1.3.5
[23:04:57] [Craft Scheduler Thread - 47 - BetterStructures/INFO]: [BetterStructures] Your version is 1.3.5
[23:04:57] [Craft Scheduler Thread - 49 - AuxProtect/INFO]: [AuxProtect] connecting
[23:04:57] [Craft Scheduler Thread - 45 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[23:04:57] [ForkJoinPool.commonPool-worker-8/INFO]: [squaremap] Fetching version information...
[23:04:57] [Craft Scheduler Thread - 80 - Vault/INFO]: [Vault] Checking for Updates ... 
[23:04:57] [Craft Scheduler Thread - 48 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 0 online users | 0 offline users.
[23:04:57] [Craft Scheduler Thread - 4 - eco/WARN]: [eco] eco is out of date! (Version 6.38.3)
[23:04:57] [Craft Scheduler Thread - 4 - eco/WARN]: [eco] The newest version is 6.43.7
[23:04:57] [Craft Scheduler Thread - 4 - eco/WARN]: [eco] Download the new version!
[23:04:57] [Craft Scheduler Thread - 6 - GadgetsMenu/INFO]: [GadgetsMenu] No update was found, you are running the latest version.
[23:04:57] [Craft Scheduler Thread - 80 - Vault/INFO]: [Vault] No new version available
[23:04:57] [Craft Scheduler Thread - 47 - BetterStructures/INFO]: [BetterStructures] You are running the latest version!
[23:04:57] [Craft Scheduler Thread - 5 - Duels/INFO]: [Duels] No updates were available. You are on the latest version!
[23:04:57] [Craft Scheduler Thread - 44 - Quests/INFO]: [Quests] ÂUpdate to 4.6.0: Âhttps://github.com/PikaMug/Quests
[23:04:57] [Craft Scheduler Thread - 14 - PINPrompt/INFO]: [PINPrompt] v3.4.8 is available! You are running v3.4.3!
[23:04:57] [Craft Scheduler Thread - 14 - PINPrompt/INFO]: [PINPrompt] Download it here: https://www.spigotmc.org/resources/82672/
[23:04:57] [Craft Scheduler Thread - 85 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[23:04:57] [Craft Scheduler Thread - 54 - Plan/INFO]: [Plan] ----------------------------------------
[23:04:57] [Craft Scheduler Thread - 54 - Plan/INFO]: [Plan] New Release (5.5 build 1984) is available https://github.com/plan-player-analytics/Plan/releases
[23:04:57] [Craft Scheduler Thread - 54 - Plan/INFO]: [Plan] ----------------------------------------
[23:04:57] [Craft Scheduler Thread - 58 - StoreStats/INFO]: [StoreStats] v3.22.3 is available! You are running v3.22.2!
[23:04:57] [Craft Scheduler Thread - 58 - StoreStats/INFO]: [StoreStats] Download it here: https://www.spigotmc.org/resources/80000/
[23:04:57] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: [DecentHolograms] Loaded 23 holograms!
[23:04:57] [Server thread/INFO]: [SimplePets Debug] Found support for version(s): [1.18, 1.18.1, 1.18.2, 1.19, 1.19.1, 1.19.2]
[23:04:57] [Server thread/INFO]: [SimplePets Debug] Targeting version: 1.19.2
[23:04:57] [Server thread/INFO]: [SimplePets Debug] Initializing Inventories...
[23:04:57] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Inventories Files...
[23:04:57] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[23:04:57] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[23:04:57] [Craft Scheduler Thread - 55 - Boosters/WARN]: [Boosters] Boosters is out of date! (Version 4.44.0)
[23:04:57] [Craft Scheduler Thread - 55 - Boosters/WARN]: [Boosters] The newest version is 4.77.0
[23:04:57] [Craft Scheduler Thread - 55 - Boosters/WARN]: [Boosters] Download the new version!
[23:04:57] [Craft Scheduler Thread - 41 - QuickShop/INFO]: [QuickShop] Failed to check for an update on build server! It might be an internet issue or the build server host is down. If you want disable the update checker, you can disable in config.yml, but we still high-recommend check for updates on SpigotMC.org often, Error: Did not get expected response code, got 403 for https://ci.codemc.io/job/PotatoCraft-Studio/job/QuickShop-Reremake/lastSuccessfulBuild/artifact/target/BUILDINFO
[23:04:57] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[23:04:57] [Craft Scheduler Thread - 69 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.0.0] New update available. Your version: 3.1.0.0, latest version: 3.1.0.2
[23:04:57] [Craft Scheduler Thread - 69 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.0.0] Download plugin here: https://groupez.dev/resources/1
[23:04:57] [Craft Scheduler Thread - 91 - UltimateClans/INFO]: [ClanGladiator] Error downloading language Lang_BR.yml file
[23:04:57] [Craft Scheduler Thread - 39 - UltimateClans/INFO]: [ClanChest] Error downloading language Lang_BR.yml file
[23:04:57] [Craft Scheduler Thread - 27 - Essentials/WARN]: [Essentials] ÂThere is a new EssentialsX version available for download: Â2.19.7Â.
[23:04:57] [Craft Scheduler Thread - 27 - Essentials/WARN]: [Essentials] ÂDownload it here:Â https://essentialsx.net/downloads.html?branch=stable
[23:04:57] [Craft Scheduler Thread - 71 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[23:04:57] [Craft Scheduler Thread - 52 - ajParkour/INFO]: [ajParkour] You are up to date! (2.12.10)
[23:04:58] [Craft Scheduler Thread - 66 - StoreStats/INFO]: [StoreStats] Successfully connected to store:
[23:04:58] [Craft Scheduler Thread - 66 - StoreStats/INFO]: [StoreStats] Name: 'Zenith'
[23:04:58] [Craft Scheduler Thread - 66 - StoreStats/INFO]: [StoreStats] URL: 'https://zenithmc.store'
[23:04:58] [Craft Scheduler Thread - 60 - UltimateClans/INFO]: [ClanBanner] Error downloading language Lang_BR.yml file
[23:04:58] [Server thread/INFO]: [ExcellentCrates] Loaded 12 crates.
[23:04:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eglow [3.2.0]
[23:04:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[23:04:58] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
[23:04:58] [Server thread/INFO]: [BigDoors] Checking for updates...
[23:04:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrvutils [1.2.10-DEV]
[23:04:58] [ForkJoinPool.commonPool-worker-8/INFO]: [BigDoors] No new updates available.
[23:04:58] [Craft Scheduler Thread - 31 - LagAssist/INFO]: ÂÂLagÂÂAssist » ÂYou are up to date with LagAssist.
[23:04:58] [Craft Scheduler Thread - 29 - HeadDatabase/INFO]: [HeadDatabase] Succesfully loaded 46004 heads!
[23:04:58] [Craft Scheduler Thread - 78 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[23:04:58] [Craft Scheduler Thread - 78 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[23:04:58] [Craft Scheduler Thread - 78 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[23:04:58] [Craft Scheduler Thread - 29 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[23:04:58] [Craft Scheduler Thread - 70 - InteractionVisualizer/INFO]: [InteractionVisualizer] Loaded all 1 languages!
[23:04:58] [Craft Scheduler Thread - 21 - ProdigyNightclub/INFO]: There is a new update available on spigot:  
[23:04:58] [Craft Scheduler Thread - 21 - ProdigyNightclub/INFO]: https://www.spigotmc.org/resources/prodigynightclub.58234/updates
[23:04:58] [Craft Scheduler Thread - 78 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[23:04:58] [Craft Scheduler Thread - 78 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[23:04:58] [Craft Scheduler Thread - 78 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[23:04:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: announce [21.5.19]
[23:04:58] [Server thread/INFO]: [Deluxe Announce] Successfully enabled v21.5.19
[23:04:58] [Server thread/INFO]: --------------------------------------------------------------------------------------
[23:04:58] [Server thread/INFO]:          Developed by [Ruben_Artz, STN Studios]
[23:04:58] [Server thread/INFO]: [Deluxe Announce] Version: 21.5.19 is loading...
[23:04:58] [Server thread/INFO]: [Deluxe Announce] Server: git-Paper-220 (MC: 1.19.2)
[23:04:58] [Server thread/INFO]: [Deluxe Announce] Loading necessary files...
[23:04:58] [Server thread/INFO]: 
[23:04:59] [Craft Scheduler Thread - 20 - ExtraFireworks/INFO]: [ExtraFireworks] An update (1.2.11, installed: 1.2.10) for ExtraFireworks is available: https://l.phoenix616.dev/efupdate
[23:04:59] [Craft Scheduler Thread - 20 - ExtraFireworks/INFO]: [ExtraFireworks] 1.2.11: Fix effect data parsing issue in commands
[23:04:59] [Craft Scheduler Thread - 79 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[23:04:59] [Server thread/INFO]: [Deluxe Announce] Checking if minotar.net is active... OK
[23:04:59] [Server thread/INFO]: [Deluxe Announce] Checking if cravatar.eu is active... OK
[23:04:59] [Server thread/INFO]: [Deluxe Announce] Checking if github.com is active... OK
[23:04:59] [Server thread/INFO]: [Deluxe Announce] Checking if bstats.org is active... OK
[23:04:59] [Server thread/INFO]: 
[23:04:59] [Server thread/INFO]: [Deluxe Announce] Starting plugin...
[23:04:59] [Server thread/INFO]: 
[23:04:59] [Server thread/INFO]: --------------------------------------------------------------------------------------
[23:04:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.1-SNAPSHOT]
[23:04:59] [Server thread/INFO]: [Jobs] Successfully linked with Vault.
[23:04:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrvutils [1.2.10-DEV]
[23:04:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plan [5.4 build 1722]
[23:04:59] [Server thread/INFO]: [UltimateClans] Loaded 4 clan(s).
[23:04:59] [Server thread/INFO]: [UltimateClans] Loaded 8 player(s).
[23:04:59] [Server thread/INFO]: [eco] Loaded eco
[23:04:59] [Craft Scheduler Thread - 22 - GlobalStats/INFO]: [GlobalStats] No new version available
[23:04:59] [Server thread/INFO]: [StatTrackers] Loaded StatTrackers
[23:05:00] [Craft Scheduler Thread - 47 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[23:05:00] [Server thread/INFO]: [EcoPets] Loaded EcoPets
[23:05:01] [Server thread/INFO]: [EcoEnchants] Loaded EcoEnchants
[23:05:01] [Server thread/INFO]: [ChatSentry] Found and loaded 2117 registered server commands.
[23:05:01] [Server thread/INFO]: [ChatSentry] Cached ~212 variables and settings across 21 files.
[23:05:01] [Server thread/INFO]: [ChatSentry] Data caching complete.
[23:05:01] [Server thread/INFO]: [ChatSentry] Initalized modules.
[23:05:01] [Server thread/INFO]: [ChatSentry] Startup finished!
[23:05:01] [Server thread/INFO]: [ChatSentry] Automatically cleaning log data older than 30 day(s).
[23:05:01] [Server thread/INFO]: [ccRides] "Chair_Swing" ride config loaded.
[23:05:01] [Server thread/INFO]: [ccRides] "ShowStopper" ride config loaded.
[23:05:01] [Server thread/INFO]: [ccRides] Started Chair_Swing Ride!
[23:05:01] [Server thread/INFO]: [ccRides] Started ShowStopper Ride!
[23:05:01] [Server thread/INFO]: [ccRides] Sign Config Loaded.
[23:05:01] [Server thread/INFO]: [Multiverse-Inventories] First run!
[23:05:01] [Craft Scheduler Thread - 18 - PartyGames/INFO]: [PartyGames] Looks like you have the latest version installed!
[23:05:01] [Server thread/WARN]: [WorldGuardExtraFlags] Loaded class com.earth2me.essentials.Essentials from Essentials v2.19.0 which is not a depend or softdepend of this plugin.
[23:05:02] [Server thread/INFO]: NPC [76/ÂÂÂÂÂÂÂRew Laises] auto adding the NPCDestinations trait as the waypoint provider was added
[23:05:02] [Server thread/INFO]: [Citizens] Loaded 70 NPCs.
[23:05:02] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[23:05:02] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[23:05:02] [Server thread/INFO]: [UpgradeableSpawners] Successfully added region provider: GriefPrevention Type: CLAIMING
[23:05:02] [Server thread/INFO]: [UpgradeableSpawners] Successfully added region provider: WorldGuard Type: SERVER
[23:05:02] [Server thread/INFO]: [UpgradeableSpawners] Successful integrated Vault economy into economy system. Name: EssentialsX Economy
[23:05:02] [Server thread/INFO]: +> [ScriptEvent] Processed 2 script event paths. 
[23:05:02] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&lt> with '<', and cached result. 
[23:05:02] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&gt> with '>', and cached result. 
[23:05:02] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[23:05:02] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2022/10/20 22:04:16 
[23:05:02] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] Hooked into Big Doors successfully.
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] World Guard found. Trying to get a hook.
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] Hooked into world guard successfully.
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] Placeholder API found. Enabling placeholder usage.
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] MythicMobs not found. MythicMobs conditions are disabled.
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] Config is up to date.
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] Config loaded!
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] Java 15 or newer detected. Searching for external Engine.
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] ÂFound matching locale for de_DE
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] ÂLocale messages_de_DE.properties is up to date.
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] ÂFound matching locale for en_US
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] ÂLocale messages_en_US.properties is up to date.
[23:05:02] [Server thread/INFO]: [BigDoorsOpener] Metrics enabled. Thank you very much!
[23:05:02] [Craft Scheduler Thread - 7 - SkinStatueBuilder/INFO]: [SkinStatueBuilder] A new update of the plugin is not available.
[23:05:03] [Server thread/INFO]: [BigDoorsOpener] Post startup done. Required 628 ms.
[23:05:03] [Server thread/WARN]: [Boosters] 
[23:05:03] [Server thread/WARN]: [Boosters] Invalid configuration for skill_xp_multiplier in context Booster skill_xp:
[23:05:03] [Server thread/WARN]: [Boosters] (Cause) Argument 'id'
[23:05:03] [Server thread/WARN]: [Boosters] (Reason) Invalid effect ID specified!
[23:05:03] [Server thread/WARN]: [Boosters] 
[23:05:03] [Server thread/WARN]: [Boosters] 
[23:05:03] [Server thread/WARN]: [Boosters] Invalid configuration for skill_xp_multiplier in context Booster skill_xp:
[23:05:03] [Server thread/WARN]: [Boosters] (Cause) Argument 'id'
[23:05:03] [Server thread/WARN]: [Boosters] (Reason) Invalid effect ID specified!
[23:05:03] [Server thread/WARN]: [Boosters] 
[23:05:03] [Server thread/INFO]: [Boosters] Loaded Boosters
[23:05:03] [Server thread/INFO]: [ChatSentry Updater] You are running an outdated version of ChatSentry. Version 5.3.2 is available; you're on 5.3.1! Download at https://chatsentry.xyz/update
[23:05:03] [Server thread/INFO]: [KixsChatGames Updater] You are running an outdated version of Kix's Chat Games. Version 2.0.0 is available; you're on 1.9.9! Download at www.spigotmc.org/resources/85143/updates
[23:05:03] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[23:05:03] [Server thread/WARN]: [AngelChest] ***************************************************
[23:05:03] [Server thread/WARN]: [AngelChest] * There is a new version of AngelChest available!
[23:05:03] [Server thread/WARN]: [AngelChest] *  
[23:05:03] [Server thread/WARN]: [AngelChest] * Your version:   Â9.7.0
[23:05:03] [Server thread/WARN]: [AngelChest] * Latest version: Â9.7.2
[23:05:03] [Server thread/WARN]: [AngelChest] *  
[23:05:03] [Server thread/WARN]: [AngelChest] * Please update to the newest version.
[23:05:03] [Server thread/WARN]: [AngelChest] *  
[23:05:03] [Server thread/WARN]: [AngelChest] * Download:
[23:05:03] [Server thread/WARN]: [AngelChest] *   https://www.spigotmc.org/resources/88214
[23:05:03] [Server thread/WARN]: [AngelChest] ***************************************************
[23:05:03] [Server thread/INFO]: [PremiumVanish] Your current version of PremiumVanish is outdated - New version: '2.7.21'; Currently: '2.7.19'
[23:05:03] [Server thread/INFO]: [ParticleToText] You are using the latest version of ParticleToText.
[23:05:03] [Server thread/INFO]: [HeadDisplays] Loading extra fonts from HeadDatabase!
[23:05:03] [Server thread/INFO]: [HeadDisplays] Loaded 31 extra fonts from HeadDatabase! Total: 34
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Loading inventories in progress...
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory auction !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory buyconfirm !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory removeconfirm !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory expire !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory buying !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory items !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory categories !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory sell !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory sellshow !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory category !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory adminremove !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory search !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Successful loading of the inventory show !
[23:05:03] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.0] Inventories loading complete.
[23:05:04] [Server thread/INFO]: [Deluxe Announce] Using SQLite for player data.
[23:05:04] [Server thread/WARN]: [SimplePets] ***************************************************
[23:05:04] [Server thread/WARN]: [SimplePets] * There is a new version of SimplePets available!
[23:05:04] [Server thread/WARN]: [SimplePets] *  
[23:05:04] [Server thread/WARN]: [SimplePets] * Your version:   Â5.0-BUILD-190
[23:05:04] [Server thread/WARN]: [SimplePets] * Latest version: Â5.0-build-192
[23:05:04] [Server thread/WARN]: [SimplePets] *  
[23:05:04] [Server thread/WARN]: [SimplePets] * Please update to the newest version.
[23:05:04] [Server thread/WARN]: [SimplePets] *  
[23:05:04] [Server thread/WARN]: [SimplePets] * Download:
[23:05:04] [Server thread/WARN]: [SimplePets] *   https://www.spigotmc.org/resources/100106
[23:05:04] [Server thread/WARN]: [SimplePets] ***************************************************
[23:05:04] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[23:05:04] [Server thread/INFO]: Done (185.032s)! For help, type "help"
[23:05:04] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6702ms or 134 ticks behind
[23:05:04] [Server thread/INFO]: Timings Reset
[23:05:04] [Craft Scheduler Thread - 22 - HeadDatabase/WARN]: [HeadDatabase] ÂYou are using an outdated version!
[23:05:04] [Craft Scheduler Thread - 22 - HeadDatabase/WARN]: [HeadDatabase] Latest version: Â4.17.0Â. You are on version: Â4.13.5Â.
[23:05:04] [Craft Scheduler Thread - 22 - HeadDatabase/WARN]: [HeadDatabase] Update here: Âhttps://www.spigotmc.org/resources/head-database.14280/
[23:05:04] [Craft Scheduler Thread - 14 - DeluxeAnnounce/INFO]: --------------------------------------------------------------------------------------
[23:05:04] [Craft Scheduler Thread - 14 - DeluxeAnnounce/INFO]: [Deluxe Announce] You have an old version of the Deluxe Announce plugin.
[23:05:04] [Craft Scheduler Thread - 14 - DeluxeAnnounce/INFO]: [Deluxe Announce] Please download the latest 22.3.19 version.
[23:05:04] [Craft Scheduler Thread - 14 - DeluxeAnnounce/INFO]: --------------------------------------------------------------------------------------
[23:05:04] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 30 slash commands (0 conflicted) for 2 plugins in 1/1 guilds (0 cancelled)
[23:05:05] [Server thread/INFO]: Downloaded CMILib1.2.3.7 file
[23:05:05] [Server thread/INFO]: Please restart server for this to take full effect
[23:05:06] [Craft Scheduler Thread - 192 - BossShopPro/INFO]: [BossShopPro] Successfully hooked into Points plugin VotingPlugin.
[23:05:06] [Server thread/INFO]: [Quests] Loaded 1 Quest(s), 7 Action(s), 1 Condition(s) and 811 Phrase(s)
[23:05:06] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[23:05:06] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[23:05:06] [Craft Scheduler Thread - 192 - BossShopPro/INFO]: [BossShopPro] Loaded 8 Shops!
[23:05:06] [Craft Scheduler Thread - 192 - BossShopPro/INFO]: [BossShopPro] Vault found.
[23:05:07] [Server thread/INFO]: [HeadSweeper] Loading games...
[23:05:07] [Server thread/INFO]: [HeadSweeper] Create controller...
[23:05:07] [Server thread/INFO]: [HeadSweeper] Controller created.
[23:05:07] [Server thread/INFO]: [PartyGames] HolographicDisplays has been detected! HolographicDisplays features are now accessible..
[23:05:07] [Craft Scheduler Thread - 45 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.9.3 New Version: 6.9.5
[23:05:07] [Server thread/INFO]: [PartyGames] Loaded 1 arena(s) and 23 minigame(s) and 37 achievement(s) and 0 broadcaster message(s)
[23:05:07] [Server thread/INFO]: [PartyGames] Updating leaderboards...
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #19 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #12 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #15 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #18 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #21 doesn't exist at the coordinates -75.0, 105, 66.0
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #13 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #17 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #14 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #11 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #16 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #1 isn't really a top sign
[23:05:07] [Server thread/INFO]: [PartyGames] Your top sign with the id of #22 doesn't exist at the coordinates -75.0, 105, 64.0
[23:05:08] [Craft Scheduler Thread - 164 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[23:05:09] [Craft Scheduler Thread - 73 - BigDoorsOpener/INFO]: [BigDoorsOpener] ÂNew version of ÂBigDoorsOpener available.
[23:05:09] [Craft Scheduler Thread - 73 - BigDoorsOpener/INFO]: [BigDoorsOpener] ÂNewest version: Â2.5.1! Current version: Â2.4.6Â!
[23:05:09] [Craft Scheduler Thread - 73 - BigDoorsOpener/INFO]: [BigDoorsOpener] ÂDownload new version here: Âwww.spigotmc.org/resources/80805/
[23:05:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 52c]
[23:05:10] [Server thread/INFO]: [UltimateAutoRestart+] Hooked into PlaceholderAPI!
[23:05:10] [Server thread/INFO]: [UltimateAutoRestart+] Successfully performed 1 hooks!
[23:05:10] [Server thread/INFO]: [RedeemableCodes] Attempting hooks...
[23:05:10] [Server thread/INFO]: [RedeemableCodes] Hooked into PlaceholderAPI!
[23:05:10] [Server thread/INFO]: [RedeemableCodes] Successfully performed 1 hooks!
[23:05:12] [Server thread/INFO]:  
[23:05:12] [Server thread/INFO]:  [RedeemableCodes] New update available!
[23:05:12] [Server thread/INFO]:  Current version: Build 37 with latest being Build 37a!
[23:05:12] [Server thread/INFO]:  
[23:05:12] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/rc/
[23:05:12] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/rc/
[23:05:12] [Server thread/INFO]:  
[23:05:12] [Server thread/INFO]: [DeluxeCombat] Hooked into Essentials, ProtocolLib, LibsDisguises, PlaceholderAPI, Citizens, GSit, NBTAPI, Duels, BetterRTP, UltimateClans, PremiumVanish, EcoEnchants, Vault, UltimateClans, UltimateClans, WorldGuard and Vault.
[23:05:12] [ForkJoinPool.commonPool-worker-7/INFO]: [UpgradeableSpawners] There is a new version available: 3.4.1
[23:05:12] [Server thread/INFO]: [DiscordSRV] API listener ruben_artz.spigot.discord.events.SRVReady subscribed (1 methods)
[23:05:12] [Craft Scheduler Thread - 80 - IPPlus/INFO]: [IPPlus] A new version of IP+ is available to download!
[23:05:12] [Craft Scheduler Thread - 80 - IPPlus/INFO]: [IPPlus] Newest version: 1.0.2
[23:05:16] [Craft Scheduler Thread - 107 - NoteBlockAPI/INFO]: [NoteBlockAPI] New update available!
[23:05:16] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: world [1.2.1]
[23:05:16] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.bencodez.votingplugin.VotingPluginMain from VotingPlugin v6.9.3 which is not a depend or softdepend of this plugin.
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: votingplugin [1.5]
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[23:05:16] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.41 which is not a depend or softdepend of this plugin.
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [1.0.1]
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerlist [2.1]
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.1]
[23:05:16] [Server thread/WARN]: [PlaceholderAPI] Loaded class me.ryanhamshire.GriefPrevention.GriefPrevention from GriefPrevention v16.18 which is not a depend or softdepend of this plugin.
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: griefprevention [1.6.0]
[23:05:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[23:05:16] [Server thread/INFO]: 11 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[23:05:43] [Server thread/INFO]: CONSOLE issued server command: /list 
[23:05:43] [Server thread/INFO]: There are 0 out of maximum 200 players online.
[23:05:47] [User Authenticator #0/INFO]: UUID of player lDashi is dd4b0e2b-52fe-45b4-9ba5-b648069401fc
[23:05:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R1! Trying to find NMS support
[23:05:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R1' loaded!
[23:05:47] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class me.roinujnosde.titansbattle.shaded.gson.Gson
[23:05:47] [Thread-148/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[23:05:47] [Server thread/ERROR]: Could not pass event PlayerJoinEvent to CTFly v1.3
java.lang.NullPointerException: Cannot invoke "java.util.ArrayList.contains(Object)" because the return value of "me.itstotallyjan.ctfly.FlyingPlayersMap.getFlyingPlayers()" is null
    at me.itstotallyjan.ctfly.listeners.FlyingPlayersListener.onLogin(FlyingPlayersListener.java:11) ~[CTFly-1.3.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor2011.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:75) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:git-Paper-220]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:670) ~[paper-api-1.19.2-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.players.PlayerList.postChunkLoadJoin(PlayerList.java:372) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.players.PlayerList.lambda$placeNewPlayer$0(PlayerList.java:309) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:185) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1389) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.2.jar:git-Paper-220]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:305) ~[paper-1.19.2.jar:git-Paper-220]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[23:05:48] [Server thread/INFO]: lDashi[/         ip         ] logged in with entity id 6662 at ([world]-96.95096156996915, 86.0, 83.53578354050497)
[23:05:48] [Server thread/INFO]: Running script event 'PlayerJoins', event='after player joins permission:casino.highroll' for script 'NPC_HIDING' 
[23:05:48] [Server thread/INFO]: Starting InstantQueue 'NPC_HIDING_0_ModularRivers' with player 'lDashi'... 
[23:05:48] [Server thread/INFO]: +- Queue 'NPC_HIDING_0_ModularRivers' Executing: (line 5) ADJUST <player> hide_entity:<server.npcs_flagged[Casino_NPC]> ---------+ 
[23:05:48] [Server thread/INFO]: Filled tag <player> with 'p@dd4b0e2b-52fe-45b4-9ba5-b648069401fc (lDashi)'. 
[23:05:48] [Server thread/INFO]: Filled tag <server.npcs_flagged[Casino_NPC]> with 'li@ (Size 1): n@33 (Bouncer_Highroll)'. 
[23:05:48] [Server thread/INFO]: +> Executing 'ADJUST': object='li@ (Size 1): p@dd4b0e2b-52fe-45b4-9ba5-b648069401fc (lDashi)'  mechanism_value='li@ (Size 1): n@33 (Bouncer_Highroll)'  mechanism='hide_entity' 
[23:05:48] [Server thread/INFO]: Adjust mechanism 'hide_entity' on object of type 'Player'... 
[23:05:48] [Server thread/INFO]: Completing queue 'NPC_HIDING_0_ModularRivers' in 32ms. 
[23:05:48] [Server thread/INFO]: Running script event 'PlayerJoins', event='after player joins permission:!casino.highroll' for script 'NPC_HIDING' 
[23:05:48] [Server thread/INFO]: Starting InstantQueue 'NPC_HIDING_1_TaBorough' with player 'lDashi'... 
[23:05:48] [Server thread/INFO]: +- Queue 'NPC_HIDING_1_TaBorough' Executing: (line 7) ADJUST <player> show_entity:<server.npcs_flagged[Casino_NPC]> ---------+ 
[23:05:48] [Server thread/INFO]: Filled tag <player> with 'p@dd4b0e2b-52fe-45b4-9ba5-b648069401fc (lDashi)'. 
[23:05:48] [Server thread/INFO]: Filled tag <server.npcs_flagged[Casino_NPC]> with 'li@ (Size 1): n@33 (Bouncer_Highroll)'. 
[23:05:48] [Server thread/INFO]: +> Executing 'ADJUST': object='li@ (Size 1): p@dd4b0e2b-52fe-45b4-9ba5-b648069401fc (lDashi)'  mechanism_value='li@ (Size 1): n@33 (Bouncer_Highroll)'  mechanism='show_entity' 
[23:05:48] [Server thread/INFO]: Adjust mechanism 'show_entity' on object of type 'Player'... 
[23:05:48] [Server thread/INFO]:  ERROR in script 'npc_hiding' in queue 'NPC_HIDING_1_TaBorough' while executing command 'ADJUST' in file 'scripts/npc_hiding_script.dsc' on line '7' with player 'lDashi'
                  For mechanism 'show_entity' with value 'li@n@33|', while adjusting object 'p@dd4b0e2b-52fe-45b4-9ba5-b648069401fc (lDashi)'!
                 Error Message: Invalid EntityTag specified. 
[23:05:48] [Server thread/INFO]: Completing queue 'NPC_HIDING_1_TaBorough' in 3ms. 
[23:05:48] [Server thread/INFO]: [+] Aaron
[23:05:48] [Craft Scheduler Thread - 86 - DeluxeAnnounce/INFO]: --------------------------------------------------------------------------------------
[23:05:48] [Craft Scheduler Thread - 86 - DeluxeAnnounce/INFO]: [Deluxe Announce] You have an old version of the Deluxe Announce plugin.
[23:05:48] [Craft Scheduler Thread - 86 - DeluxeAnnounce/INFO]: [Deluxe Announce] Please download the latest 22.3.19 version.
[23:05:48] [Craft Scheduler Thread - 86 - DeluxeAnnounce/INFO]: --------------------------------------------------------------------------------------
[23:05:49] [Server thread/WARN]: [FurnitureLib] Loaded class org.geysermc.floodgate.api.FloodgateApi from floodgate v2.2.0-SNAPSHOT (b73-4f36112) which is not a depend or softdepend of this plugin.
[23:05:49] [Craft Scheduler Thread - 67 - TAB-Bridge/WARN]: [TAB-Bridge] Loaded class me.libraryaddict.disguise.DisguiseAPI from LibsDisguises v10.0.31 which is not a depend or softdepend of this plugin.
[23:05:51] [Server thread/INFO]: lDashi issued server command: /spawn
[23:06:04] [Server thread/INFO]: [NPC_Destinations] A citizens save.yml has been backed up. See the {plugin}/CitizensBackups/ for the file.
[23:06:08] [Server thread/INFO]: lDashi lost connection: Disconnected
[23:06:23] [Server thread/INFO]: CONSOLE issued server command: /list 
[23:06:23] [Server thread/INFO]: There are 0 out of maximum 200 players online.