Paste #123921: DenizenMetaBot Auto-Repaste Of log From latestion

Date: 2024/06/19 12:59:46 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


[14:43:51] [ServerMain/INFO]: [SparkProviderSource] Purpur: Using user-provided spark plugin instead of our own.
[14:43:53] [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'
[14:43:54] [ServerMain/INFO]: Loaded 7 recipes
[14:43:54] [Server thread/INFO]: Starting minecraft server version 1.19.4
[14:43:54] [Server thread/INFO]: Loading properties
[14:43:54] [Server thread/INFO]: This server is running Purpur version git-Purpur-1985 (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT) (Git: 6886272 on HEAD)
[14:43:54] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:43:54] [Server thread/INFO]: Using 6 threads for Netty based IO
[14:43:54] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[14:43:54] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[14:43:54] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[14:43:54] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[14:43:54] [Server thread/INFO]: Default game type: SURVIVAL
[14:43:54] [Server thread/INFO]: Generating keypair
[14:43:55] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25569
[14:43:55] [Server thread/INFO]: Using epoll channel type
[14:43:55] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[14:43:55] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[14:43:55] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[14:43:55] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R3.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[14:43:57] [Server thread/WARN]: Legacy plugin MVdWPlaceholderAPI v3.1.1 does not specify an api-version.
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loading 4 libraries... please wait
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/mariadb/jdbc/mariadb-java-client/3.1.3/mariadb-java-client-3.1.3.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/github/waffle/waffle-jna/3.2.0/waffle-jna-3.2.0.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/slf4j/jcl-over-slf4j/1.7.36/jcl-over-slf4j-1.7.36.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.23.0/checker-qual-3.23.0.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/8.0.32/mysql-connector-j-8.0.32.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ChatControlRed] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.21.9/protobuf-java-3.21.9.jar
[14:43:57] [Server thread/INFO]: [eco] Initializing eco
[14:43:57] [Server thread/WARN]: Legacy plugin LunarClient-API v1.0 does not specify an api-version.
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loading 2 libraries... please wait
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[14:43:57] [Server thread/INFO]: [SpigotLibraryLoader] [ProMenus] Loaded library /home/container/libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
[14:43:57] [Server thread/INFO]: [CS-API] Attempting to initialize the library using detected version v1_19_R3
[14:43:57] [Server thread/INFO]: [CS-API] Successfully assigned the NMS methods for v1_19_R3
[14:43:57] [Server thread/INFO]: [CS-API] -------------------------------[ Loadings Timers ]-------------------------------
[14:43:57] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'SECOND', with a duration of 1000
[14:43:57] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'MINUTE', with a duration of 60000
[14:43:57] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'HOURLY', with a duration of 3600000
[14:43:57] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'DAILY', with a duration of 86400000
[14:43:57] [Server thread/INFO]: [EcoBits] Initializing EcoBits
[14:43:58] [Server thread/WARN]: Legacy plugin CommandNPC v1.9.1 does not specify an api-version.
[14:43:59] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loading 1 libraries... please wait
[14:43:59] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loaded library /home/container/libraries/dev/dejvokep/boosted-yaml-spigot/1.3/boosted-yaml-spigot-1.3.jar
[14:43:59] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.3-SNAPSHOT
[14:43:59] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.3-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[14:43:59] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[14:43:59] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.113
[14:43:59] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[14:43:59] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[14:43:59] [Server thread/INFO]: [JunoPerformanceCore] Loading server plugin JunoPerformanceCore v1.0-SNAPSHOT
[14:43:59] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.5-SNAPSHOT
[14:44:00] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@512ee4ee]
[14:44:00] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
[14:44:00] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8+33cdb4a
[14:44:00] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.2
[14:44:00] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.41
[14:44:00] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3293)
[14:44:00] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.5.1-9aedaa15
[14:44:00] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[14:44:00] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[14:44:00] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.27
[14:44:00] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.5
[14:44:00] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+16-b900444
[14:44:00] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.2.9-SNAPSHOT (build 1800-REL)
[14:44:00] [Server thread/INFO]: [MVdWPlaceholderAPI] Loading server plugin MVdWPlaceholderAPI v3.1.1
[14:44:00] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.2-beta-r4
[14:44:00] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.3
[14:44:00] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[14:44:00] [Server thread/INFO]: [MassiveCore] Loading server plugin MassiveCore vMC-1.19-SNAPSHOT (efcc3e77-LOCAL)
[14:44:00] [Server thread/INFO]: [JunoNMS] Loading server plugin JunoNMS v1.0-SNAPSHOT
[14:44:00] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.15
[14:44:00] [Server thread/INFO]: [KamiCommon] Loading server plugin KamiCommon v1.6.0
[14:44:00] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[14:44:00] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.6.5
[14:44:00] [Server thread/INFO]: [CombatTagPlus] Loading server plugin CombatTagPlus v1.0.0-SNAPSHOT
[14:44:00] [Server thread/INFO]: [ArmorEvents] Loading server plugin ArmorEvents v1.0.0-SNAPSHOT
[14:44:00] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.90.1
[14:44:00] [Server thread/INFO]: [JunoPrisonCore] Loading server plugin JunoPrisonCore v1.0.0
[14:44:00] [Server thread/INFO]: [GangsPlus] Loading server plugin GangsPlus v2.31.1
[14:44:00] [Server thread/INFO]: [HamsterAPI] Loading server plugin HamsterAPI v0.2.3
[14:44:00] [Server thread/INFO]: [ChatControlRed] Loading server plugin ChatControlRed v10.21.12
[14:44:01] [Server thread/INFO]: [eco] Loading server plugin eco v6.66.1
[14:44:01] [Server thread/INFO]: [JunoGenerators] Loading server plugin JunoGenerators v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.12.1
[14:44:01] [Server thread/INFO]: [NBTAPI] bStats disabled
[14:44:01] [Server thread/INFO]: [NBTAPI] Update check disabled
[14:44:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[14:44:01] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[14:44:01] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.7.3-SNAPSHOT (build 505)
[14:44:01] [Server thread/INFO]: [BeastCore] Loading server plugin BeastCore v1.2
[14:44:01] [Server thread/INFO]: [Effect Library] Loading server plugin EffectLib v9.0
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.8.0
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[14:44:01] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[14:44:01] [Server thread/INFO]: [GangRelations] Loading server plugin GangRelations v1.0.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [EliteLootbox] Loading server plugin EliteLootbox v2.3.6
[14:44:01] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+16-b900444
[14:44:01] [Server thread/INFO]: [JunoAdventures] Loading server plugin JunoAdventures v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [LunarClient-API] Loading server plugin LunarClient-API v1.0
[14:44:01] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.7.7.0
[14:44:01] [Server thread/INFO]: [DamageIndicator] Loading server plugin DamageIndicator v1.10.2
[14:44:01] [Server thread/INFO]: [EffectsPreviewer] Loading server plugin EffectsPreviewer v1.0.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [ExploitFixer] Loading server plugin ExploitFixer v2.0.6
[14:44:01] [Server thread/INFO]: [CustomSets] Loading server plugin CustomSets v1.0.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [MythicCrucible] Loading server plugin MythicCrucible v2.0.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[14:44:01] [Server thread/INFO]: [Insurance] Loading server plugin Insurance v1.0.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [ProMenus] Loading server plugin ProMenus v1.10.9
[14:44:01] [Server thread/INFO]: [PluginConstructorAPI] Loading server plugin PluginConstructorAPI v1.0.52
[14:44:01] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.9.0
[14:44:01] [Server thread/INFO]: [PacketWrapper] Loading server plugin PacketWrapper v${project.version}
[14:44:01] [Server thread/INFO]: [AdvancedBan] Loading server plugin AdvancedBan v2.3.0
[14:44:01] [Server thread/INFO]: [CombatRevert] Loading server plugin CombatRevert v1.0.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [EcoBits] Loading server plugin EcoBits v1.8.0
[14:44:01] [Server thread/INFO]: [PlayerKits2] Loading server plugin PlayerKits2 v1.7.1
[14:44:01] [Server thread/INFO]: [JunoMeteors] Loading server plugin JunoMeteors v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [MeteorsPro] Loading server plugin MeteorsPro v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [JunoBosses] Loading server plugin JunoBosses v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[14:44:01] [Server thread/INFO]: [CrazyEnvoys] Loading server plugin CrazyEnvoys v1.4.20.5
[14:44:01] [Server thread/INFO]: [UltimateKoth] Loading server plugin UltimateKoth v1.19.0
[14:44:01] [Server thread/INFO]: [JunoCells] Loading server plugin JunoCells v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [ItemFilter] Loading server plugin ItemFilter v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v1.2.2F
[14:44:01] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v3.9.19
[14:44:01] [Server thread/INFO]: [JunoConquestChest] Loading server plugin JunoConquestChest v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v2.100.3
[14:44:01] [Server thread/INFO]: [Showcase] Loading server plugin Showcase v1.5.1
[14:44:01] [Server thread/INFO]: [ServerUtils] Loading server plugin ServerUtils v3.5.4
[14:44:01] [Server thread/INFO]: [BeastWithdraw] Loading server plugin BeastWithdraw v2.3
[14:44:01] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v0.9.3
[14:44:01] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.5.1
[14:44:01] [Server thread/INFO]: [EnchantMenu] Loading server plugin EnchantMenu v1.0.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [JunoDeathBan] Loading server plugin JunoDeathBan v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.15
[14:44:01] [Server thread/INFO]: [OffsetCalculator] Loading server plugin OffsetCalculator v1.0
[14:44:01] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.37
[14:44:01] [Server thread/INFO]: [Join Commands] Loading server plugin JoinCommands v3.1.0.116
[14:44:01] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v2.9.14.2
[14:44:01] [Server thread/INFO]: [EnchantPouch] Loading server plugin EnchantPouch v1.0.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [CommandNPC] Loading server plugin CommandNPC v1.9.1
[14:44:01] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[14:44:01] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.21
[14:44:01] [Server thread/INFO]: [SkinDrops] Loading server plugin SkinDrops v1.0.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.6.2.239-Beta
[14:44:01] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.2
[14:44:01] [Server thread/INFO]: [RivalCredits] Loading server plugin RivalCredits v1.0.3
[14:44:01] [Server thread/INFO]: [RestartBackup] Loading server plugin RestartBackup v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [ChatGames] Loading server plugin ChatGames v1.2.1
[14:44:01] [Server thread/INFO]: [Kyra] Loading server plugin Kyra v1.3.3
[14:44:01] [Server thread/INFO]: [JunoOutpost] Loading server plugin JunoOutpost v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [CommandAlias] Loading server plugin CommandAlias v1.6.6-RELEASE
[14:44:01] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.0.0 (build 833)
[14:44:01] [Server thread/INFO]: [ConditionalCommands] Loading server plugin ConditionalCommands v1.6
[14:44:01] [Server thread/INFO]: [PhysicsToggle] Loading server plugin PhysicsToggle v1.0.6
[14:44:01] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.1.1
[14:44:01] [Server thread/INFO]: [RedLib] Loading server plugin RedLib v2022-09-25 01:04
[14:44:01] [Server thread/INFO]: [SmartSignEditor] Loading server plugin SmartSignEditor v2.7.7
[14:44:01] [Server thread/INFO]: [DarkAuctionsX] Loading server plugin DarkAuctionsX v2.3.2
[14:44:01] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v5.7
[14:44:01] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[14:44:01] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[14:44:01] [Server thread/INFO]: [AdventCalendar] Loading server plugin AdventCalendar v1.1.4
[14:44:01] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[14:44:01] [Server thread/INFO]: [DeluxeMenus] NMS hook has been setup successfully!
[14:44:01] [Server thread/INFO]: [FreeCoinFlip] Loading server plugin FreeCoinFlip v1.7
[14:44:01] [Server thread/INFO]: [PatheticTest] Loading server plugin PatheticTest v1.0-SNAPSHOT
[14:44:01] [Server thread/INFO]: [EliteMasks] Loading server plugin EliteMasks v1.5.7
[14:44:01] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:44:01] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.113
[14:44:02] [Server thread/INFO]:         __    
[14:44:02] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.113
[14:44:02] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[14:44:02] [Server thread/INFO]: 
[14:44:02] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:44:02] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MARIADB]
[14:44:02] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[14:44:02] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[14:44:03] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[14:44:03] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:44:03] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:44:04] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2681ms)
[14:44:04] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[14:44:04] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[14:44:04] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[14:44:04] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[14:44:04] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[14:44:04] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.5-SNAPSHOT
[14:44:04] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[14:44:04] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[14:44:04] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[14:44:04] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[14:44:04] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R3.PaperweightFaweAdapter as the Bukkit adapter
[14:44:04] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
[14:44:04] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.27
[14:44:04] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.5
[14:44:04] [Server thread/INFO]: [MassiveCore] Enabling MassiveCore vMC-1.19-SNAPSHOT (efcc3e77-LOCAL)
[14:44:04] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] === ENABLE START ===
[14:44:04] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Loading Cachefile datas...
[14:44:04] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Loading Onlineplayer datas...
[14:44:04] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Loading Registry datas...
[14:44:04] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Saving Cachefile...
[14:44:04] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Setup of IdUtil took 9ms.
[14:44:05] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Integration Activated IntegrationLiabilityAreaEffectCloud
[14:44:05] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Integration Activated IntegrationVault
[14:44:05] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] === ENABLE COMPLETE (Took 1067ms) ===
[14:44:05] [Server thread/INFO]: [eco] Enabling eco v6.66.1
[14:44:05] [Server thread/INFO]: [eco] Loading eco
[14:44:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eco [6.66.1]
[14:44:05] [Server thread/INFO]: [eco] Loaded integrations: ShopGUIPlus, Denizen, MythicMobs, DecentHolograms, ModelEngine, Essentials, Vault, PlaceholderAPI, WorldGuard, ItemsAdder
[14:44:05] [Server thread/INFO]: [eco] Scanning for conflicts...
[14:44:05] [Server thread/WARN]: [eco] CommandAlias will likely conflict with eco! Reason: Kotlin shaded into jar
[14:44:05] [Server thread/WARN]: [eco] You can fix the conflicts by either removing the conflicting plugins, or by asking on the support discord to have them patched!
[14:44:05] [Server thread/WARN]: [eco] Only remove potentially conflicting plugins if you see Loader Constraint Violation / LinkageError anywhere
[14:44:05] [Server thread/INFO]: [LunarClient-API] Enabling LunarClient-API v1.0*
[14:44:05] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[14:44:05] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[14:44:05] [Server thread/INFO]: [EcoBits] Enabling EcoBits v1.8.0
[14:44:05] [Server thread/INFO]: [EcoBits] Loading EcoBits
[14:44:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ecobits [1.8.0]
[14:44:05] [Server thread/INFO]: [EcoBits] Loaded integrations: Vault
[14:44:05] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.6.2.239-Beta
[14:44:06] [Server thread/INFO]: [Blue Slime Core] [Update Checker] The update checking feature is disabled.
[14:44:06] [Server thread/INFO]: [Blue Slime Core] [Update Checker] No plugin update information is available.
[14:44:06] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.2
[14:44:06] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[14:44:06] [Server thread/WARN]: It seems like you're running on paper.
[14:44:06] [Server thread/WARN]: This may cause issues.
[14:44:06] [Server thread/WARN]: If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
[14:44:06] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[14:44:06] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[14:44:06] [Server thread/INFO]: [RedLib] Enabling RedLib v2022-09-25 01:04
[14:44:06] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[14:44:06] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[14:44:06] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[14:44:06] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[14:44:06] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[14:44:06] [Server thread/INFO]: Preparing level "world"
[14:44:06] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.3-SNAPSHOT
[14:44:06] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.4 (762)
[14:44:06] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[14:44:06] [Server thread/INFO]: [JunoPerformanceCore] Enabling JunoPerformanceCore v1.0-SNAPSHOT
[14:44:06] [Server thread/INFO]: [JunoPerformanceCore] Loaded worlds.yml
[14:44:06] [Server thread/INFO]: Loaded world world
[14:44:06] [Server thread/INFO]: Loaded world cells_1
[14:44:06] [Server thread/INFO]: Loaded world Koth1
[14:44:07] [Server thread/INFO]: Loaded world aquaticadventure
[14:44:07] [Server thread/INFO]: Loaded world cells
[14:44:07] [Server thread/INFO]: Loaded world MMORPG
[14:44:07] [Server thread/INFO]: Loaded world Outpost2
[14:44:07] [Server thread/INFO]: Loaded world bosses
[14:44:07] [Server thread/INFO]: Loaded world Outpost1
[14:44:07] [Server thread/INFO]: Loaded world Outpost3
[14:44:07] [Server thread/INFO]: Loaded world Classes
[14:44:07] [Server thread/INFO]: Loaded world test2
[14:44:07] [Server thread/INFO]: [JunoPerformanceCore] [ACF] Enabled Asynchronous Tab Completion Support!
[14:44:08] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8+33cdb4a
[14:44:08] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:44:08] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[14:44:09] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[14:44:09] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.41
[14:44:09] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.40-Free.jar
[14:44:09] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R3 (v1_19_R3)
[14:44:09] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1290
[14:44:09] [Server thread/INFO]: [LibsDisguises] Build Date: 17/01/2024 10:26
[14:44:09] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[14:44:09] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[14:44:11] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[14:44:11] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise SushiChef
[14:44:11] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise RudolphGoat
[14:44:11] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise RudolphGoatpng
[14:44:11] [Server thread/INFO]: [LibsDisguises] Loaded 4 custom disguises
[14:44:11] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[14:44:11] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: LibsDisguises
[14:44:11] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3293)
[14:44:11] [Server thread/INFO]: [Citizens] Loading external libraries
[14:44:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[14:44:11] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[14:44:12] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[14:44:12] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.5.1-9aedaa15
[14:44:12] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.4)...
[14:44:12] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[14:44:13] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[14:44:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythic [5.0.0]
[14:44:13] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[14:44:13] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[14:44:13] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[14:44:13] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[14:44:13] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[14:44:13] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[14:44:14] [Server thread/INFO]: [MythicMobs] Loading Packs...
[14:44:14] [Server thread/INFO]: [MythicMobs] Loading Items...
[14:44:14] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[14:44:14] [Server thread/INFO]: [MythicMobs] Loading Skills...
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.duration><&sp>*<&sp>20"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.duration><&sp>*<&sp>20"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage><&sp>*<&sp>0.3"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage><&sp>*<&sp>0.3"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x> + 0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y> + 1.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z> + 0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '2.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '2.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '3.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '3.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '4.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '5.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '6.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '7.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '8.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '2.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"4"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"2"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"10"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"3"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"5"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"3"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"15"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"15"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"5"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:14] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[14:44:14] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[14:44:14] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[14:44:14] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Mechanic metaskill
[14:44:14] [Server thread/WARN]: [MythicMobs] --| Skill: GodVulcanHelionMechanics | File: /home/container/plugins/MythicMobs/Skills/GodVulcanSkillsMEG.yml
[14:44:14] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill GodVulcanHelionRemove
[14:44:14] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=GodVulcanHelionRemove}
[14:44:15] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 167 mobs.
[14:44:15] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 3 vanilla mob overrides.
[14:44:15] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 0 mob stacks.
[14:44:15] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 563 skills.
[14:44:15] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 8 random spawns.
[14:44:15] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 147 mythic items.
[14:44:15] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 2 drop tables.
[14:44:15] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 166 mob spawners.
[14:44:15] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[14:44:15] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[14:44:15] [Server thread/INFO]: [MythicMobs] โœ“ MythicMobs v5.5.1 ( build 9aedaa15 ) has been successfully loaded!
[14:44:15] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[14:44:15] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[14:44:15] [Server thread/INFO]: [MassiveCore (efcc3e77-LOCAL)] Integration Activated IntegrationMythicMobs
[14:44:15] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+16-b900444
[14:44:15] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[14:44:15] [Server thread/INFO]: [Essentials] No kits found to migrate.
[14:44:15] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[14:44:15] [Server thread/INFO]: [Essentials] Using locale en_US
[14:44:15] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[14:44:15] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[14:44:15] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[14:44:15] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[14:44:15] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.9-SNAPSHOT (build 1800-REL)
[14:44:15] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1362), impl for Spigot v1.2.9-SNAPSHOT (build 1800-REL) 
[14:44:15] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.9 
[14:44:15] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[14:44:15] [Server thread/WARN]: [Denizen] Debug is disabled in the Denizen config. This is almost always a mistake, and should not be done in the majority of cases.
[14:44:16] [Server thread/INFO]: [MVdWPlaceholderAPI] Enabling MVdWPlaceholderAPI v3.1.1*
[14:44:16] [Server thread/INFO]: [MVdWPlaceholderAPI] Initializing placeholders ...
[14:44:16] [Server thread/INFO]: [MVdWPlaceholderAPI] Sending metrics ...
[14:44:16] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.2-beta-r4
[14:44:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[14:44:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[14:44:16] [Server thread/INFO]: ๎•บ 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.2-beta-r4
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.27
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Purpur git-Purpur-1985 (MC: 1.19.4)
                                               
[14:44:16] [Server thread/INFO]: ๎•บ Registered Citizens NPC Trait: customentity
[14:44:16] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.3
[14:44:16] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[14:44:16] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[14:44:16] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[14:44:16] [Server thread/INFO]: [JunoNMS] Enabling JunoNMS v1.0-SNAPSHOT
[14:44:16] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.15
[14:44:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish [6.2.15]
[14:44:16] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[14:44:16] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[14:44:16] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[14:44:16] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_isvanished}
[14:44:16] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_vanishprefix}
[14:44:16] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_vanishsuffix}
[14:44:16] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_vanishedplayers}
[14:44:16] [Server thread/INFO]: [MVdWPlaceholderAPI] SuperVanish added custom placeholder {supervanish_playercount}
[14:44:16] [Server thread/INFO]: [SuperVanish] Hooked into MVdWPlaceholderAPI
[14:44:16] [Server thread/INFO]: [KamiCommon] Enabling KamiCommon v1.6.0
[14:44:16] [Server thread/INFO]: KamiCommon enabling...
[14:44:16] [Server thread/INFO]: KamiCommon enabled in 1ms
[14:44:16] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[14:44:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [4.1.2]
[14:44:16] [Server thread/INFO]: [TAB] [WARN] anti-override for scoreboard-teams is disabled in config. This is usually a mistake. If you notice the feature randomly breaking, enable it back.
[14:44:16] [Server thread/INFO]: [TAB] [WARN] Found a total of 1 issues.
[14:44:16] [Server thread/INFO]: [TAB] Enabled in 89ms
[14:44:16] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.6.5
[14:44:16] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[14:44:16] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuardExtraFlags.
[14:44:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedenchantments [1.0.0]
[14:44:16] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[14:44:16] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into MythicMobs.
[14:44:16] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[14:44:16] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Essentials.
[14:44:16] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[14:44:16] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[14:44:17] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[14:44:17] [Server thread/INFO]: [CombatTagPlus] Enabling CombatTagPlus v1.0.0-SNAPSHOT
[14:44:17] [Server thread/INFO]: [CombatTagPlus] === ENABLE START ===
[14:44:17] [Server thread/INFO]: [CombatTagPlus] Integrated WorldGuard successfully.
[14:44:17] [Server thread/INFO]: [CombatTagPlus] Integrated Citizens successfully.
[14:44:17] [Server thread/INFO]: [CombatTagPlus] === ENABLE COMPLETE (Took 17ms) ===
[14:44:17] [Server thread/INFO]: [ArmorEvents] Enabling ArmorEvents v1.0.0-SNAPSHOT
[14:44:17] [Server thread/INFO]: [ArmorEvents 1.0.0-SNAPSHOT] === ENABLE START ===
[14:44:17] [Server thread/INFO]: [ArmorEvents 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 3ms) ===
[14:44:17] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.90.1
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Enabling JunoPrisonCore v1.0.0
[14:44:17] [Server thread/INFO]: [JunoPrisonCore 1.0.0] === ENABLE START ===
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Enabling JunoPrisonCore...
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Initializing PatheticMapper...
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] pathetic successfully initialized
[14:44:17] [Server thread/INFO]: [JunoPrisonCore 1.0.0] Intergrated CombatTagPlus successfully.
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Registering modules...
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Registered PAPI expansion
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Activating ProfileColl
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Profiles] Module enabled
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Level] Module enabled
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Activating ToolDataColl
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [ToolData] Module enabled
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Enchants] Module enabled
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Activating BackpackColl
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] Regenerating Backpack Level Tree
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 1 to the backpack level tree
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 2 to the backpack level tree
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 3 to the backpack level tree
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 4 to the backpack level tree
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 5 to the backpack level tree
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 6 to the backpack level tree
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] - Adding level 7 to the backpack level tree
[14:44:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: backpack [1.0.0]
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Backpacks] Module enabled
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Activating ShardColl
[14:44:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: level [1.0.0]
[14:44:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: shards [1.0.0]
[14:44:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: levelsb [1.0.0]
[14:44:17] [Server thread/INFO]: [ShopGUIPlus] Registered custom economy provider 'Shards'.
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Economy] Module enabled
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] [Wormhole] Module enabled
[14:44:17] [Server thread/INFO]: [JunoPrisonCore] Activating EnergyColl
[14:44:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerenergy [1.0.0]
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [Energy] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] Activating BlockUpdateTask
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] Activating EconomyUpdateTask
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [Mining] Module enabled
[14:44:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pickaxe [1.0.0]
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [BlockAnimation] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [RestedXp] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [LevelCap] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [Contraband] Module enabled
[14:44:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: clazz [1.0.0]
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [Classes] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [Options] Module enabled
[14:44:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: guarded [1.0.0]
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [Guards] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] Activating CollectStackColl
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [Collect] Module enabled
[14:44:21] [Server thread/INFO]: [JunoPrisonCore] [ArmorLimit] Module enabled
[14:44:21] [Server thread/INFO]: [org.mongodb.driver.cluster] Cluster created with settings {hosts=[172.18.0.1:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms'}
[14:44:21] [Server thread/INFO]: Registered Booster: Xp15x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp16x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp17x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp18x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp19x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp20x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp25x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp26x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp27x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp28x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp29x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp30x30
[14:44:21] [Server thread/INFO]: Registered Booster: Xp35x90
[14:44:21] [Server thread/INFO]: Registered Booster: Energy15x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy16x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy17x30
[14:44:21] [cluster-rtt-ClusterId{value='66733515074e467d69cdc05a', description='null'}-172.18.0.1:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:2, serverValue:2657}] to 172.18.0.1:27017
[14:44:21] [cluster-ClusterId{value='66733515074e467d69cdc05a', description='null'}-172.18.0.1:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:1, serverValue:2656}] to 172.18.0.1:27017
[14:44:21] [cluster-ClusterId{value='66733515074e467d69cdc05a', description='null'}-172.18.0.1:27017/INFO]: [org.mongodb.driver.cluster] Monitor thread successfully connected to server with description ServerDescription{address=172.18.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=9, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=9604313}
[14:44:21] [Server thread/INFO]: Registered Booster: Energy18x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy19x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy25x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy26x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy27x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy28x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy29x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy30x30
[14:44:21] [Server thread/INFO]: Registered Booster: adminxptester
[14:44:21] [Server thread/INFO]: Registered Booster: XpG20x30
[14:44:21] [Server thread/INFO]: Registered Booster: XpG25x45
[14:44:21] [Server thread/INFO]: Registered Booster: Shard15x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard16x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard17x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard18x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard19x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard20x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard25x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard26x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard27x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard28x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard29x30
[14:44:21] [Server thread/INFO]: Registered Booster: Shard30x30
[14:44:21] [Server thread/INFO]: Registered Booster: ShardG20x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy20x30
[14:44:21] [Server thread/INFO]: Registered Booster: Energy25x10
[14:44:21] [Server thread/INFO]: Registered Booster: AllG20x10
[14:44:21] [Server thread/INFO]: Registered Booster: AllG20x30
[14:44:21] [Server thread/INFO]: Registered Booster: AdminTestBooster
[14:44:21] [Server thread/INFO]: Registered Booster: BOOSTER
[14:44:21] [Server thread/INFO]: Registered Booster: OPXP35x90m
[14:44:21] [Server thread/INFO]: Registered Booster: OPXP36x90m
[14:44:21] [Server thread/INFO]: Registered Booster: OPXP37x90m
[14:44:21] [Server thread/INFO]: Registered Booster: OPXP38x90m
[14:44:21] [Server thread/INFO]: Registered Booster: OPXP39x90m
[14:44:21] [Server thread/INFO]: Registered Booster: OPXP40x90m
[14:44:22] [Server thread/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:3, serverValue:2658}] to 172.18.0.1:27017
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [Boosters] Module enabled
[14:44:22] [Server thread/INFO]: Prestige command loaded!
[14:44:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: prestige [1.0.0]
[14:44:22] [Server thread/INFO]: 5 total prestiges loaded!
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [Prestige] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [Trinkets] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [EnergyShop] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [Merchant] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [TP] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [Drop] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [Brag] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [Jackpot] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [ItemFlip] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [LB] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [Ghost] Module enabled
[14:44:22] [Server thread/INFO]: Player Capacity: 5
[14:44:22] [Server thread/INFO]: Player Capacity: 3
[14:44:22] [Server thread/INFO]: Player Capacity: 2
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] Activating ChallengesColl
[14:44:22] [Server thread/INFO]: Scheduling challenge reset (DAILY) task 33337s!
[14:44:22] [Server thread/INFO]: Scheduling challenge reset (WEEKLY) task 378937s!
[14:44:22] [Server thread/INFO]: Scheduling challenge reset (MONTHLY) task 983737s!
[14:44:22] [Server thread/INFO]: [JunoPrisonCore] [Challenges] Module enabled
[14:44:22] [Server thread/INFO]: [JunoPrisonCore 1.0.0] === ENABLE COMPLETE (Took 5037ms) ===
[14:44:22] [Server thread/INFO]: [GangsPlus] Enabling GangsPlus v2.31.1
[14:44:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gangsplus [2.31.1]
[14:44:22] [Server thread/INFO]: [GangsPlus] Clip's PlaceholderAPI support enabled!
[14:44:22] [Server thread/INFO]: [GangsPlus] WorldGuard support enabled!
[14:44:22] [Server thread/INFO]: [HamsterAPI] Enabling HamsterAPI v0.2.3
[14:44:22] [Server thread/INFO]: [ChatControlRed] Enabling ChatControlRed v10.21.12
[14:44:22] [Server thread/INFO]:  ____ _  _ ____ ___ ____ ____ _  _ ___ ____ ____ _
[14:44:22] [Server thread/INFO]:  |    |__| |__|  |  |    |  | |\ |  |  |__/ |  | |
[14:44:22] [Server thread/INFO]:  |___ |  | |  |  |  |___ |__| | \|  |  |  \ |__| |___
[14:44:22] [Server thread/INFO]:   
[14:44:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatcontrolred [10.21.12]
[14:44:22] [Server thread/INFO]: Warning: Your log.csv file is over 10MB and won't be cleaned. We recommend archiving it and regenerating it for best performance. Or, use MySQL database for large log files.
[14:44:22] [Server thread/INFO]: Warning: Detected ViaVersion. If you're getting kicked out or see artifacts in chat, set Integration.ProtocolLib.Listen_For_Packets and Tab_Complete.Enabled both to false in settings.yml.
[14:44:22] [Server thread/INFO]:   
[14:44:22] [Server thread/INFO]: Tutorial & help:
[14:44:22] [Server thread/INFO]: https://github.com/kangarko/ChatControl-Red/wiki
[14:44:22] [Server thread/INFO]:   
[14:44:22] [Server thread/INFO]: Loaded! Random joke: Cracked by kangarko (MineAcademy.org) #joke
[14:44:22] [Server thread/INFO]:   
[14:44:22] [Server thread/INFO]: [JunoGenerators] Enabling JunoGenerators v1.0-SNAPSHOT
[14:44:22] [Server thread/INFO]: [org.mongodb.driver.cluster] Cluster created with settings {hosts=[172.18.0.1:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms'}
[14:44:22] [cluster-ClusterId{value='66733516074e467d69cdc05b', description='null'}-172.18.0.1:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:4, serverValue:2659}] to 172.18.0.1:27017
[14:44:22] [cluster-rtt-ClusterId{value='66733516074e467d69cdc05b', description='null'}-172.18.0.1:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:5, serverValue:2660}] to 172.18.0.1:27017
[14:44:22] [cluster-ClusterId{value='66733516074e467d69cdc05b', description='null'}-172.18.0.1:27017/INFO]: [org.mongodb.driver.cluster] Monitor thread successfully connected to server with description ServerDescription{address=172.18.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=9, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=934303}
[14:44:22] [Server thread/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:6, serverValue:2661}] to 172.18.0.1:27017
[14:44:23] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.12.1
[14:44:23] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.7.3-SNAPSHOT (build 505)
[14:44:23] [Server thread/INFO]: [Sentinel] Sentinel loading...
[14:44:23] [Server thread/INFO]: [Sentinel] Running on java version: 17.0.9
[14:44:23] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[14:44:23] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[14:44:23] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
[14:44:23] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[14:44:23] [Server thread/INFO]: [BeastCore] Enabling BeastCore v1.2
[14:44:23] [Server thread/INFO]: [Effect Library] Enabling EffectLib v9.0
[14:44:23] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.8.0
[14:44:23] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[14:44:23] [Server thread/INFO]: [ajLeaderboards] Loaded 4 boards
[14:44:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.8.0]
[14:44:23] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[14:44:23] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.8.0 by ajgeiss0702 enabled!
[14:44:23] [Server thread/INFO]: [GangRelations] Enabling GangRelations v1.0.0-SNAPSHOT
[14:44:23] [Server thread/INFO]: [GangRelations 1.0.0-SNAPSHOT] === ENABLE START ===
[14:44:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gangrelations [1.0.0]
[14:44:23] [Server thread/INFO]: [GangRelations 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 1ms) ===
[14:44:23] [Server thread/INFO]: [EliteLootbox] Enabling EliteLootbox v2.3.6
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/INFO]: [EliteLootbox] [ACF] Enabled Asynchronous Tab Completion Support!
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el addbonusreward' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el addreward' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el give' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el giveall' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el rewards' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el bonusrewards' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: togglelootbox' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el create' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el delete' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el reload' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el admin' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/WARN]: Plugin 'EliteLootbox' is creating timing 'Command: el' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-iron-monopoly-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded Random_Generator.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-leather-sonic-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-gold-monopoly-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded shardshop-pvp-2.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded OPBoosters.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-diamond-sonic-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded all-iron-special-sets.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded STRUCTURED_EFF_DIAMOND.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-energy-enchant.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded glitched_weapon_lootbox.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-iron-sonic-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded advent-day2.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded PrestigeI.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-trinket.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded Random-Pickaxe.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded outpost-vault.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded advent-day22.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-mining-enchant.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded STRUCTURED_EFF_STONE.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded Random-Generator-T1.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-iron-nightshade-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded all-diamond-special-sets.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded shardshop-mining-1.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-3x-contraband.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded shardshop-pvp-3.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded advent-day1.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-systemreboot-enchant.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-leather-nightshade-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded NitroCrate.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded RandomXpBooster.yaml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded advent-day24.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-leather-monopoly-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded sotw-pack_DONTUSE.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded advent-day4.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded shardshop-pvp-1.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random_low_tier_rank.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded shard-lootbox-tier2.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded SOTW_Crate_Bonus.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded chat_games_lootbox.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded carnage_lootbox.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-diamond-monopoly-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded enchant-pouch.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded all-leather-special-sets.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded all-gold-special-sets.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded advent-day3.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-drill-part.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded CrudeOre_Bundle_T1.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded shardshop-mining-3.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded STRUCTURED_EFF_IRON.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded shard-lootbox-tier3.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded SOTW_Crate.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-mask.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded STRUCTURED_EFF_GOLD.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-gold-sonic-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded shardshop-mining-2.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded all-special-sets.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-pummel-enchant.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded advent-day23.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded cosmetic-bundle.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded BugSmasher.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-booster.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded RandomXPBooster.yaml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-gold-nightshade-piece.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-contraband.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded SpaceKoth.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-armor-orb.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded Busty.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded shard-lootbox-tier1.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded STRUCTURED_EFF_RUBY.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random_gkit_shrine.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded 3x-blackscroll.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded STRUCTURED_EFF_WOOD.yml successfully!
[14:44:23] [Server thread/INFO]: EliteLootbox: Loaded random-diamond-nightshade-piece.yml successfully!
[14:44:23] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+16-b900444
[14:44:23] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[14:44:23] [Server thread/INFO]: [JunoAdventures] Enabling JunoAdventures v1.0-SNAPSHOT
[14:44:23] [Server thread/INFO]: [org.mongodb.driver.cluster] Cluster created with settings {hosts=[127.0.0.1:27017], srvHost=juno.a6irirr.mongodb.net, mode=MULTIPLE, requiredClusterType=REPLICA_SET, serverSelectionTimeout='30000 ms', requiredReplicaSetName='atlas-bajkv0-shard-0'}
[14:44:23] [Server thread/INFO]: Loaded Loot Chest: 16
[14:44:23] [Server thread/INFO]: Loaded Loot Chest: 12
[14:44:23] [Server thread/INFO]: Loaded Loot Chest: 12
[14:44:23] [Server thread/INFO]: Registered Outpost!
[14:44:23] [Server thread/ERROR]: Error occurred while enabling JunoAdventures v1.0-SNAPSHOT (Is it up to date?)
java.lang.NullPointerException: null
    at java.util.Objects.requireNonNull(Objects.java:209) ~[?:?]
    at dev.latestion.junoadventures.outpost.setting.MessageManager.loadMessages(MessageManager.java:26) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at dev.latestion.junoadventures.outpost.setting.MessageManager.<init>(MessageManager.java:21) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at dev.latestion.junoadventures.outpost.Outpost.<init>(Outpost.java:42) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at dev.latestion.junoadventures.map.Zone.<init>(Zone.java:56) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at dev.latestion.junoadventures.map.ZoneManager.lambda$new$0(ZoneManager.java:19) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?]
    at dev.latestion.junoadventures.map.ZoneManager.<init>(ZoneManager.java:17) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at dev.latestion.junoadventures.JunoAdventures.onEnable(JunoAdventures.java:77) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:577) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:488) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:643) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:442) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:345) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1120) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:44:23] [Server thread/INFO]: [JunoAdventures] Disabling JunoAdventures v1.0-SNAPSHOT
[14:44:23] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling JunoAdventures v1.0-SNAPSHOT (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getName()" because the return value of "org.bukkit.Location.getWorld()" is null
    at dev.latestion.junoadventures.utils.Util.toStringLoc(Util.java:30) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]
    at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:575) ~[?:?]
    at java.util.stream.AbstractPipeline.evaluateToArrayNode(AbstractPipeline.java:260) ~[?:?]
    at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:616) ~[?:?]
    at java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:622) ~[?:?]
    at java.util.stream.ReferencePipeline.toList(ReferencePipeline.java:627) ~[?:?]
    at dev.latestion.junoadventures.JunoAdventures.saveMobData(JunoAdventures.java:113) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at dev.latestion.junoadventures.JunoAdventures.onDisable(JunoAdventures.java:97) ~[JunoAdventures-1.0-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:283) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:224) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:193) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:577) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:488) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:643) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:442) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:345) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1120) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:44:23] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-srv-juno.a6irirr.mongodb.net/INFO]: [org.mongodb.driver.cluster] Adding discovered server ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017 to client view of cluster
[14:44:23] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-srv-juno.a6irirr.mongodb.net/INFO]: [org.mongodb.driver.cluster] Adding discovered server ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017 to client view of cluster
[14:44:23] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-srv-juno.a6irirr.mongodb.net/INFO]: [org.mongodb.driver.cluster] Adding discovered server ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017 to client view of cluster
[14:44:23] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.7.7.0
[14:44:23] [Server thread/INFO]: [ImageFrame] ImageFrame has hooked into ViaVersion!
[14:44:24] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[14:44:24] [Server thread/INFO]: [DamageIndicator] Enabling DamageIndicator v1.10.2
[14:44:24] [Server thread/ERROR]: [DamageIndicator] Failed to load config file "locale/en-us.yml" as it has syntax errors! Use this website to find them: "https://www.yamlchecker.com/". 
[14:44:24] [Server thread/INFO]: [EffectsPreviewer] Enabling EffectsPreviewer v1.0.0-SNAPSHOT
[14:44:24] [Server thread/INFO]: [ExploitFixer] Enabling ExploitFixer v2.0.6
[14:44:24] [Server thread/INFO]: [ExploitFixer] Successfully registered commands!
[14:44:24] [Server thread/INFO]: [ExploitFixer] Successfully registered listeners!
[14:44:24] [Server thread/INFO]: [ExploitFixer] Successfully hooked with HamsterAPI!
[14:44:24] [Server thread/INFO]: [ExploitFixer] Successfully registered tasks!
[14:44:24] [Server thread/INFO]: [CustomSets] Enabling CustomSets v1.0.0-SNAPSHOT
[14:44:24] [Server thread/INFO]: [CustomSets 1.0.0-SNAPSHOT] === ENABLE START ===
[14:44:24] [Server thread/INFO]: [CustomSets 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 28ms) ===
[14:44:24] [Server thread/INFO]: [MythicCrucible] Enabling MythicCrucible v2.0.0-SNAPSHOT
[14:44:24] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[14:44:24] [Server thread/INFO]: [MythicMobs] + Loading MythicCrucible for Bukkit
[14:44:24] [Server thread/INFO]: [MythicMobs] ------------------------------------------------
[14:44:24] [Server thread/ERROR]: Error occurred while enabling MythicCrucible v2.0.0-SNAPSHOT (Is it up to date?)
java.lang.NoSuchFieldError: CONFIG_GENERAL
    at io.lumine.mythiccrucible.config.Configuration.<clinit>(Configuration.java:24) ~[MythicCrucible-2.0.0-SNAPSHOT.jar:?]
    at io.lumine.mythiccrucible.MythicCrucible.enable(MythicCrucible.java:78) ~[MythicCrucible-2.0.0-SNAPSHOT.jar:?]
    at io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:86) ~[MythicMobs-5.5.1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[purpur-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:577) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:488) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:643) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:442) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:345) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1120) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325) ~[purpur-1.19.4.jar:git-Purpur-1985]
    at java.lang.Thread.run(Thread.java:840) ~[?:?]
[14:44:24] [Server thread/INFO]: [MythicCrucible] Disabling MythicCrucible v2.0.0-SNAPSHOT
[14:44:24] [Server thread/INFO]: [Insurance] Enabling Insurance v1.0.0-SNAPSHOT
[14:44:24] [Server thread/INFO]: [Insurance 1.0.0-SNAPSHOT] === ENABLE START ===
[14:44:24] [Server thread/INFO]: [Insurance 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 4ms) ===
[14:44:24] [Server thread/INFO]: [ProMenus] Enabling ProMenus v1.10.9
[14:44:24] [Server thread/INFO]: [CS-API] --------------------------[ Loading File Provisioners ]--------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Registered provisioner to handle files with the '.json' extension
[14:44:24] [Server thread/INFO]: [CS-API] Registered provisioner to handle files with the '.txt' extension
[14:44:24] [Server thread/INFO]: [CS-API] Registered provisioner to handle files with the '.yml' extension
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../container/plugins/CS-API/settings.yml'
[14:44:24] [Server thread/INFO]: [CS-API] -------------------------[ Loading settings.yml values ]-------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Registered config key check_for_support with the value true
[14:44:24] [Server thread/INFO]: [CS-API] Registered config key check_for_updates with the value false
[14:44:24] [Server thread/INFO]: [CS-API] Registered config key creator_timeout with the value 60000
[14:44:24] [Server thread/INFO]: [CS-API] Registered config key locale with the value en_us
[14:44:24] [Server thread/INFO]: [CS-API] Registered config key server_id with the value server
[14:44:24] [Server thread/INFO]: [CS-API] Registered config key use_bungeecord with the value true
[14:44:24] [Server thread/INFO]: [CS-API] Registered config key debug.enabled with the value false
[14:44:24] [Server thread/INFO]: [CS-API] Registered config key debug.plugins with 0 entries
[14:44:24] [Server thread/WARN]: [CS-API] -------------------------------------------------------------
[14:44:24] [Server thread/WARN]: [CS-API] Debug logging is currently disabled for ProMenus. You will need to re-enable it in order to request support.
[14:44:24] [Server thread/WARN]: [CS-API] -------------------------------------------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/CS-API/placeholders.yml'
[14:44:24] [Server thread/INFO]: [CS-API] -----------------------------[ Loading Placeholders ]-----------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'assert' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'assignment' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'calculate' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'command' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'entity' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'locale' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'menu_item' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'offline_player' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'offline_player_bed' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'player' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'player_menu' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'player_bed' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_command' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_permission' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_connection' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'random' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'server' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'static' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'time_type' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'wildcard' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'world' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'cs_api' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_connection' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'plugin_support_confirmation' prefix
[14:44:24] [Server thread/INFO]: [CS-API] -----------------------[ Loading Placeholder Assignments ]-----------------------
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'menu'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'online_player'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'player'
[14:44:24] [Server thread/INFO]: [CS-API] ------------------------[ Loading Placeholder Formatters ]------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'array'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'block-location'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'boolean'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'collection'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'color'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'database-timestamp'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'date'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'double'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'empty-line'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'float'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'integer'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'location'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'long'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'no-value'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'milliseconds'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'seconds'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder formatter with the id 'timestamp'
[14:44:24] [Server thread/INFO]: [ProMenus] Initializing ProMenus version 1.10.9, identifier 1665756, resource 82194
[14:44:24] [Server thread/INFO]: [CS-API] -----------------------------[ Loading Locale Files ]-----------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/CS-API/locale/en_us.txt'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded locale file with the 'en_us' identifier
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../container/plugins/CS-API/hooks.yml'
[14:44:24] [Server thread/INFO]: [CS-API] ----------------------------[ Loading External Hooks ]----------------------------
[14:44:24] [Server thread/INFO]: [CS-API] ----------------------------[ Loading External Hooks ]----------------------------
[14:44:24] [Server thread/WARN]: [CS-API] Unable to hook into CMI as the following required classes could not be found [com.Zrips.CMI.CMI]
[14:44:24] [Server thread/WARN]: [CS-API] Unable to hook into CMILib as the following required classes could not be found [net.Zrips.CMILib.CMILib]
[14:44:24] [Server thread/WARN]: [CS-API] Essentials version mismatch, referenced version is '2.20.1' however version '2.21.0-dev+16-b900444' was found. You will not receive support regarding this hook while using a mismatched version
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Essentials'
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Experience'
[14:44:24] [Server thread/WARN]: [CS-API] GangsPlus version mismatch, referenced version is '2.28.1' however version '2.31.1' was found. You will not receive support regarding this hook while using a mismatched version
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'GangsPlus'
[14:44:24] [Server thread/INFO]: [CS-API] Registered the NashornScriptEngineFactory with the name 'nashorn'
[14:44:24] [Server thread/INFO]: [CS-API] Registered the NashornScriptEngineFactory with the name 'js'
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'JavaScript'
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Level'
[14:44:24] [Server thread/WARN]: [CS-API] The MVdWPlaceholderAPI plugin is unmaintained, the last supported version is 3.1.1. Support will not be provided for this hook.
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'MVdWPlaceholderAPI'
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'MySQL'
[14:44:24] [Server thread/WARN]: [CS-API] PlaceholderAPI version mismatch, referenced version is '2.11.5' however version '2.11.2' was found. You will not receive support regarding this hook while using a mismatched version
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'PlaceholderAPI'
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'SQLite'
[14:44:24] [Server thread/WARN]: [CS-API] Unable to hook into TokenEnchant as the following required classes could not be found [com.vk2gpz.tokenenchant.api.TokenEnchantAPI]
[14:44:24] [Server thread/WARN]: [CS-API] Unable to hook into TokenManager as the following required classes could not be found [me.realized.tokenmanager.TokenManagerPlugin]
[14:44:24] [Server thread/INFO]: [CS-API] Successfully connected and hooked into 'Vault'
[14:44:24] [Server thread/INFO]: [CS-API] ----------------------------[ Loading External Hooks ]----------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../container/plugins/CS-API/actions.yml'
[14:44:24] [Server thread/INFO]: [CS-API] -------------------------------[ Loading Actions ]-------------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'abort' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'action-alias' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'actionbar-broadcast' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'actionbar' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-false' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number-equals' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number-greater' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-number-less' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-string-equals' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'assert-true' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'broadcast' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'bungee' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'chance' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'close-inventory' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'console-command' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'debug' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'delay' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'economy-balance' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'economy-deposit' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'economy-withdraw' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'give-item' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'javascript' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'json-broadcast' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'json-message' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-actionbar' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-json-message' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-message' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'locale-title' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'message' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'op-command' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'open-menu' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'param' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'permission' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'player-command' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-double' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-integer' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-long' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-offline-player' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-player' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'prompt-string' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'sound' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'stop' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'teleport' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'title-broadcast' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'title' action
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../container/plugins/CS-API/actions.yml'
[14:44:24] [Server thread/INFO]: [CS-API] ----------------------------[ Loading Action Aliases ]----------------------------
[14:44:24] [Server thread/WARN]: [CS-API] No action aliases entries found in the actions.yml file
[14:44:24] [Server thread/INFO]: [CS-API] --------------------------------[ Loading Files ]--------------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/locale/en_us.txt'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Sonic.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/Trash me pls.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Koth1.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/Drillcraft.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/teleport.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/GangsTop.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Trinkets.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/ShardsTop.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Classes.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/world.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/TutorialMenu.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/Cells_Teir_1.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/nightshade.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/Adventures.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/GangsTop copy.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/CreditsTop.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Websites.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/example.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Eventmenu.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/SpaceKothLoot.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/RepairManConfirm.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Armorsets.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Levelcap.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/KothSpaceInfo.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/player.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Masks.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Levels.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../plugins/ProMenus/menus/Temp.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/PickaxesGui.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../ProMenus/menus/BalanceTop.yml'
[14:44:24] [Server thread/INFO]: [CS-API] Loaded and registered file '../container/plugins/ProMenus/config.yml'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully loaded the contents of 32 files!
[14:44:24] [Server thread/INFO]: [ProMenus] -----------------------------[ Loading Locale Files ]-----------------------------
[14:44:24] [Server thread/INFO]: [ProMenus] Loaded locale file with the 'en_us' identifier
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'promenus-close-menu' action
[14:44:24] [Server thread/INFO]: [CS-API] Successfully registered the 'promenus-open-menu' action
[14:44:24] [Server thread/INFO]: [ProMenus] -------------------------------[ Loading Commands ]-------------------------------
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-list'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-create'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-add-command'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-add-open-item'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-add-item'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-disable'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-enable'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-help'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-reload'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-remove-command'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-remove-open-item'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-set-contents'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-menu-set-item'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-set-size'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-set-title'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-open'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-open-others'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-help'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-reload'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-discord'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-plugin-review'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-plugin-version'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-support-help'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-support-register'
[14:44:24] [Server thread/INFO]: [ProMenus] Successfully registered command 'promenus-support-confirm'
[14:44:24] [Server thread/INFO]: [ProMenus] --------------------------[ Loading config.yml values ]--------------------------
[14:44:24] [Server thread/INFO]: [ProMenus] Registered config key menu_identifier_prefix with the value promenus
[14:44:24] [Server thread/INFO]: [ProMenus] Registered config key menu_update_delay with the value 200
[14:44:24] [Server thread/INFO]: [ProMenus] Registered config key prefer_skull_texture with the value false
[14:44:24] [Server thread/INFO]: [ProMenus] Registered config key use_list_menu with the value true
[14:44:24] [Server thread/INFO]: [ProMenus] Registered config key use_menu_commands with the value true
[14:44:24] [Server thread/INFO]: [ProMenus] Registered config key use_menu_open_items with the value true
[14:44:24] [Server thread/INFO]: [ProMenus] -----------------------------[ Loading Custom Menus ]-----------------------------
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-CreditsTop', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Sonic', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Trinkets', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Classes', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Armorsets', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-RepairManConfirm', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-GangsTop copy', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Masks', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-GangsTop', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Cells_Teir_1', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Levels', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-nightshade', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Drillcraft', enabled = false
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-player', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-TutorialMenu', enabled = false
[14:44:24] [Server thread/WARN]: [CS-API] Unable to set menu item from the file 'Adventures.yml' with the path 'glass' as '18' is an invalid slot value. It must be greater than or equal to 0 and less than the menu size 18
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Adventures', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Websites', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-KothSpaceInfo', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Temp', enabled = false
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-BalanceTop', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-PickaxesGui', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Trash me pls', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-example', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Koth1', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Eventmenu', enabled = false
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-Levelcap', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-world', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-SpaceKothLoot', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-teleport', enabled = false
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'promenus-ShardsTop', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered timer with the identifier 'promenus-menu-timer', with a duration of 200
[14:44:24] [Server thread/INFO]: [CS-API] Registered menu with the identifier 'menu-list', enabled = true
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'promenus' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'promenus_menu' prefix
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder assignment with the id 'promenus_menu'
[14:44:24] [Server thread/INFO]: [CS-API] Registered placeholder with the 'promenus' prefix
[14:44:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: promenus [1.10.9]
[14:44:24] [CS-API Thread - 6/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_menu_open_items_formatted}
[14:44:24] [CS-API Thread - 3/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_menu_commands_formatted}
[14:44:24] [CS-API Thread - 5/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_menu_commands}
[14:44:24] [CS-API Thread - 4/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_menu_update_delay_formatted}
[14:44:24] [CS-API Thread - 7/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_prefer_skull_texture}
[14:44:24] [CS-API Thread - 5/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_menu_identifier_prefix_formatted}
[14:44:24] [CS-API Thread - 3/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_menu_identifier_prefix}
[14:44:24] [CS-API Thread - 6/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_list_menu}
[14:44:24] [CS-API Thread - 4/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_list_menu_formatted}
[14:44:24] [CS-API Thread - 8/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_menu_update_delay}
[14:44:24] [CS-API Thread - 8/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_prefer_skull_texture_formatted}
[14:44:24] [CS-API Thread - 9/INFO]: [MVdWPlaceholderAPI] ProMenus added custom placeholder {promenus_use_menu_open_items}
[14:44:24] [Server thread/INFO]: [PluginConstructorAPI] Enabling PluginConstructorAPI v1.0.52
[14:44:24] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.9.0
[14:44:24] [cluster-rtt-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:12, serverValue:14675}] to ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017
[14:44:24] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:9, serverValue:14436}] to ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017
[14:44:24] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.cluster] Monitor thread successfully connected to server with description ServerDescription{address=ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=21, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=536036626, setName='atlas-bajkv0-shard-0', canonicalAddress=ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017, hosts=[ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017, ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017, ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017], passives=[], arbiters=[], primary='ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017', tagSet=TagSet{[Tag{name='availabilityZone', value='aps1-az3'}, Tag{name='diskState', value='READY'}, Tag{name='nodeType', value='ELECTABLE'}, Tag{name='provider', value='AWS'}, Tag{name='region', value='AP_SOUTH_1'}, Tag{name='workloadType', value='OPERATIONAL'}]}, electionId=null, setVersion=90, topologyVersion=TopologyVersion{processId=6672c9ef19ff889c4e2700f1, counter=3}, lastWriteDate=Wed Jun 19 14:44:24 CDT 2024, lastUpdateTimeNanos=2094410314880020}
[14:44:24] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:11, serverValue:14675}] to ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017
[14:44:24] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.cluster] Monitor thread successfully connected to server with description ServerDescription{address=ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=21, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=545715009, setName='atlas-bajkv0-shard-0', canonicalAddress=ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017, hosts=[ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017, ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017, ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017], passives=[], arbiters=[], primary='ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017', tagSet=TagSet{[Tag{name='availabilityZone', value='aps1-az1'}, Tag{name='diskState', value='READY'}, Tag{name='nodeType', value='ELECTABLE'}, Tag{name='provider', value='AWS'}, Tag{name='region', value='AP_SOUTH_1'}, Tag{name='workloadType', value='OPERATIONAL'}]}, electionId=null, setVersion=90, topologyVersion=TopologyVersion{processId=6672c8e96ba65fd484e7f940, counter=4}, lastWriteDate=Wed Jun 19 14:44:24 CDT 2024, lastUpdateTimeNanos=2094410325878969}
[14:44:24] [cluster-rtt-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:10, serverValue:14436}] to ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017
[14:44:24] [cluster-rtt-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:8, serverValue:15880}] to ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017
[14:44:24] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:7, serverValue:15880}] to ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017
[14:44:24] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.cluster] Monitor thread successfully connected to server with description ServerDescription{address=ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=21, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=541785665, setName='atlas-bajkv0-shard-0', canonicalAddress=ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017, hosts=[ac-hbt4hod-shard-00-00.a6irirr.mongodb.net:27017, ac-hbt4hod-shard-00-01.a6irirr.mongodb.net:27017, ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017], passives=[], arbiters=[], primary='ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017', tagSet=TagSet{[Tag{name='availabilityZone', value='aps1-az2'}, Tag{name='diskState', value='READY'}, Tag{name='nodeType', value='ELECTABLE'}, Tag{name='provider', value='AWS'}, Tag{name='region', value='AP_SOUTH_1'}, Tag{name='workloadType', value='OPERATIONAL'}]}, electionId=7fffffff00000000000002e9, setVersion=90, topologyVersion=TopologyVersion{processId=6672c7c31078dcb2850ead5f, counter=6}, lastWriteDate=Wed Jun 19 14:44:24 CDT 2024, lastUpdateTimeNanos=2094410387603167}
[14:44:24] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.cluster] Setting max election id to 7fffffff00000000000002e9 from replica set primary ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017
[14:44:24] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.cluster] Setting max set version to 90 from replica set primary ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017
[14:44:24] [cluster-ClusterId{value='66733517074e467d69cdc05c', description='null'}-ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017/INFO]: [org.mongodb.driver.cluster] Discovered replica set primary ac-hbt4hod-shard-00-02.a6irirr.mongodb.net:27017
[14:44:24] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[14:44:24] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[14:44:24] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[14:44:24] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Eco (Core)!
[14:44:24] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[14:44:24] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ChatControlRed!
[14:44:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [4.2.9.0]
[14:44:25] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[14:44:25] [Server thread/INFO]: [PacketWrapper] Enabling PacketWrapper v${project.version}
[14:44:25] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[14:44:25] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[14:44:25] [Server thread/INFO]: AdvancedBan >> Failed to register command mute
[14:44:25] [Server thread/INFO]: 
[14:44:25] [Server thread/INFO]:  
[14:44:25] [Server thread/INFO]: []=====[Enabling AdvancedBan]=====[]
[14:44:25] [Server thread/INFO]: | Information:
[14:44:25] [Server thread/INFO]: |   Name: AdvancedBan
[14:44:25] [Server thread/INFO]: |   Developer: Leoko
[14:44:25] [Server thread/INFO]: |   Version: 2.3.0
[14:44:25] [Server thread/INFO]: |   Storage: HSQLDB (local)
[14:44:25] [Server thread/INFO]: | Support:
[14:44:25] [Server thread/INFO]: |   Github: https://github.com/DevLeoko/AdvancedBan/issues
[14:44:25] [Server thread/INFO]: |   Discord: https://discord.gg/ycDG6rS
[14:44:25] [Server thread/INFO]: | Twitter: @LeokoGar
[14:44:25] [Server thread/INFO]: | Update:
[14:44:25] [Server thread/INFO]: |   You have the newest version
[14:44:25] [Server thread/INFO]: []================================[]
[14:44:25] [Server thread/INFO]:  
[14:44:25] [Server thread/INFO]: [CombatRevert] Enabling CombatRevert v1.0.0-SNAPSHOT
[14:44:25] [Server thread/INFO]: [CombatRevert 1.0.0-SNAPSHOT] === ENABLE START ===
[14:44:25] [Server thread/INFO]: [CombatRevert 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 8ms) ===
[14:44:25] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.7.1
[14:44:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerkits [1.7.1]
[14:44:25] [Server thread/INFO]: [PlayerKitsยฒ] Has been enabled! Version: 1.7.1
[14:44:25] [Server thread/INFO]: [PlayerKitsยฒ] Thanks for using my plugin!   ~Ajneb97
[14:44:25] [Server thread/INFO]: There is a new version available. (1.11.4)
[14:44:25] [Server thread/INFO]: You can download it at: https://modrinth.com/plugin/playerkits-2
[14:44:25] [Server thread/INFO]: [JunoMeteors] Enabling JunoMeteors v1.0-SNAPSHOT
[14:44:25] [Server thread/INFO]: [JunoMeteors] Loaded 1 meteors!
[14:44:25] [Server thread/INFO]: [JunoMeteors] main
[14:44:25] [Server thread/INFO]: [MeteorsPro] Enabling MeteorsPro v1.0-SNAPSHOT
[14:44:25] [Server thread/INFO]:          __
[14:44:25] [Server thread/INFO]:    |\/| |__)   MeteoritesPro v1.0-SNAPSHOT
[14:44:25] [Server thread/INFO]:    |  | |        by OliPulse
[14:44:25] [Server thread/INFO]:  
[14:44:25] [Server thread/INFO]: [JunoBosses] Enabling JunoBosses v1.0-SNAPSHOT
[14:44:25] [Server thread/INFO]: Kit registered: flower
[14:44:25] [Server thread/INFO]: Kit registered: reaper
[14:44:25] [Server thread/INFO]: Kit registered: volcanic
[14:44:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: boss [1.0]
[14:44:25] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[14:44:25] [Server thread/INFO]: [BuycraftX] Validating your server key...
[14:44:25] [Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[14:44:25] [Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[14:44:25] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Enabling CrazyEnvoys v1.4.20.5
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Loading the config.yml
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded config.yml
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Loading the messages.yml
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded messages.yml
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Loading the data.yml
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded data.yml
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Loading custom files.
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/1.yml.
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/2.yml.
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/3.yml.
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] Finished loading custom files.
[14:44:25] [Server thread/INFO]: [CrazyEnvoys] DecentHolograms support has been enabled.
[14:44:25] [Server thread/WARN]: [CrazyEnvoys] We no longer support placeholders using {}
[14:44:25] [Server thread/WARN]: [CrazyEnvoys] We only support %% placeholders i.e %crazyenvoys_cooldown%
[14:44:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazyenvoys [1.4.20.5]
[14:44:25] [Server thread/INFO]: [UltimateKoth] Enabling UltimateKoth v1.19.0
[14:44:25] [Server thread/INFO]: [UltimateKoth] ========================================
[14:44:25] [Server thread/INFO]: [UltimateKoth]   _    _ _ _   _                 _       _  __     _   _     
[14:44:25] [Server thread/INFO]: [UltimateKoth]  | |  | | | | (_)               | |     | |/ /    | | | |  V1
[14:44:25] [Server thread/INFO]: [UltimateKoth]  | |  | | | |_ _ _ __ ___   __ _| |_ ___| ' / ___ | |_| |__  
[14:44:25] [Server thread/INFO]: [UltimateKoth]  | |  | | | __| | '_ ` _ \ / _` | __/ _ \  < / _ \| __| '_ \ 
[14:44:25] [Server thread/INFO]: [UltimateKoth]  | |__| | | |_| | | | | | | (_| | ||  __/ . \ (_) | |_| | | |
[14:44:25] [Server thread/INFO]: [UltimateKoth]   \____/|_|\__|_|_| |_| |_|\__,_|\__\___|_|\_\___/ \__|_| |_|
[14:44:25] [Server thread/INFO]: [UltimateKoth]                                                              
[14:44:26] [Server thread/INFO]: [UltimateKoth] Licensed to: BaseBallGod100 (2932)
[14:44:26] [Server thread/INFO]: [UltimateKoth] Language: EN (default)
[14:44:26] [Server thread/INFO]: [UltimateKoth] Setup database: SQLITE (Medium)
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - Koth database [OK]
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - LootBlocks database [OK]
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - Commands database [OK]
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - Loots database [OK]
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - Scheduler database [OK]
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - Hologram database [OK]
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - Stats database [OK]
[14:44:26] [Server thread/INFO]: [UltimateKoth] Setup hooks...
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - PlaceholderAPI
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - ProtocolLib
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - WorldGuard 7+
[14:44:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ukoth [UKoth V1]
[14:44:26] [Server thread/INFO]: [UltimateKoth] Setup economy...
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - Vault
[14:44:26] [Server thread/INFO]: [UltimateKoth] Economy: VAULT
[14:44:26] [Server thread/INFO]: [UltimateKoth] Setup Addons...
[14:44:26] [Server thread/INFO]: [UltimateKoth] Setup Extensions...
[14:44:26] [Server thread/INFO]: [UltimateKoth]  - GangsPlus (2.31.1) [USING]
[14:44:26] [Server thread/INFO]: [UltimateKoth] Timezone date: (America/Sao_Paulo) 6/19/24, 4:44 PM
[14:44:26] [Server thread/INFO]: [UltimateKoth] ========================================
[14:44:26] [Server thread/INFO]: [JunoCells] Enabling JunoCells v1.0-SNAPSHOT
[14:44:26] [Server thread/INFO]: [org.mongodb.driver.cluster] Cluster created with settings {hosts=[172.18.0.1:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms'}
[14:44:26] [cluster-rtt-ClusterId{value='6673351a074e467d69cdc05d', description='null'}-172.18.0.1:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:14, serverValue:2663}] to 172.18.0.1:27017
[14:44:26] [cluster-ClusterId{value='6673351a074e467d69cdc05d', description='null'}-172.18.0.1:27017/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:13, serverValue:2662}] to 172.18.0.1:27017
[14:44:26] [cluster-ClusterId{value='6673351a074e467d69cdc05d', description='null'}-172.18.0.1:27017/INFO]: [org.mongodb.driver.cluster] Monitor thread successfully connected to server with description ServerDescription{address=172.18.0.1:27017, type=STANDALONE, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=9, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=572284}
[14:44:26] [Server thread/ERROR]: [JunoCells] JunoCells v1.0-SNAPSHOT attempted to register an invalid EventHandler method signature "public void dev.latestion.junocells.events.GangJoin.onLeader()" in class dev.latestion.junocells.events.GangJoin
[14:44:26] [Server thread/INFO]: Registered add
[14:44:26] [Server thread/INFO]: Registered auto
[14:44:26] [Server thread/INFO]: Registered bypass
[14:44:26] [Server thread/INFO]: Registered debug
[14:44:26] [Server thread/INFO]: Registered home
[14:44:26] [Server thread/INFO]: Registered info
[14:44:26] [Server thread/INFO]: Registered list
[14:44:26] [Server thread/INFO]: Registered manage
[14:44:26] [Server thread/INFO]: Registered remove
[14:44:26] [Server thread/INFO]: Registered removeall
[14:44:26] [Server thread/INFO]: Registered test
[14:44:26] [Server thread/INFO]: Registered top
[14:44:26] [Server thread/INFO]: Registered help
[14:44:26] [Server thread/INFO]: Registered tp
[14:44:26] [Server thread/INFO]: Registered relic
[14:44:26] [Server thread/INFO]: Registered cell command!
[14:44:26] [Server thread/INFO]: [ItemFilter] Enabling ItemFilter v1.0-SNAPSHOT
[14:44:26] [Server thread/INFO]: [ItemFilter] ItemFilter enabled
[14:44:26] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.2.2F
[14:44:26] [Server thread/INFO]: [DungeonParties] Loading server plugin DungeonParties v1.0-SNAPSHOT
[14:44:26] [Server thread/INFO]: [DungeonParties] Enabling DungeonParties v1.0-SNAPSHOT
[14:44:26] [Server thread/INFO]: [MythicDungeons] DungeonParties plugin found! Enabled party support.
[14:44:26] [Server thread/INFO]: [MythicDungeons] MythicMobs plugin found! Enabled MythicMobs support.
[14:44:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: md [1.2.2F]
[14:44:26] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 44 ms to scan 1 urls, producing 11 keys and 149 values
[14:44:26] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 8 keys and 64 values
[14:44:26] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 1 ms to scan 1 urls, producing 5 keys and 20 values
[14:44:26] [Server thread/INFO]: [MythicDungeons] * Loaded 30 functions.
[14:44:26] [Server thread/INFO]: [MythicDungeons] * Loaded 13 triggers.
[14:44:26] [Server thread/INFO]: [MythicDungeons] * Loaded 4 conditions.
[14:44:26] [Server thread/INFO]: [MythicDungeons] GUI menus initialized!
[14:44:26] [Server thread/INFO]: [MythicDungeons] Mythic Dungeons v1.2.2F initialized! Happy dungeon-ing!
[14:44:26] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.9.19
[14:44:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedcrates [3.9.19]
[14:44:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[14:44:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[14:44:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[14:44:27] [Server thread/INFO]: [JunoConquestChest] Enabling JunoConquestChest v1.0-SNAPSHOT
[14:44:27] [Server thread/INFO]: Loading Chest Data!
[14:44:27] [Server thread/INFO]: All Worlds: world, cells_1, Koth1, aquaticadventure, cells, MMORPG, Outpost2, bosses, Outpost1, Outpost3, Classes, test2
[14:44:27] [Server thread/INFO]: Total Conquest Chest Loaded: 6
[14:44:27] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.100.3
[14:44:27] [Server thread/INFO]:  
[14:44:27] [Server thread/INFO]: =============================
[14:44:27] [Server thread/INFO]: AuctionHouse 2.100.3 by Kiran Hart
[14:44:27] [Server thread/INFO]: Action: Enabling...
[14:44:27] [Server thread/INFO]: [TweetyCore] Hooked into AuctionHouse.
[14:44:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse [1.0.0]
[14:44:27] [Server thread/INFO]: =============================
[14:44:27] [Server thread/INFO]:  
[14:44:27] [Server thread/INFO]: [Showcase] Enabling Showcase v1.5.1
[14:44:27] [Server thread/INFO]: [Showcase] Showcase has been enabled!
[14:44:27] [Server thread/INFO]: [ServerUtils] Enabling ServerUtils v3.5.4
[14:44:28] [Server thread/INFO]: [BeastWithdraw] Enabling BeastWithdraw v2.3
[14:44:28] [Server thread/INFO]: [BeastWithdraw] /bWithdraw command aliases [cashnote, withdraw, moneywithdraw, moneynote] are registered.
[14:44:28] [Server thread/INFO]: [BeastWithdraw] Version 2.3 : has been enabled!
[14:44:28] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v0.9.3
[14:44:28] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[14:44:28] [Server thread/INFO]: [AdvancedPortals] Modern forwarding detected. Enabling proxy features.
[14:44:28] [Server thread/INFO]: Advanced portals have been successfully enabled!
[14:44:28] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.5.1
[14:44:28] [Server thread/INFO]:  
[14:44:28] [Server thread/INFO]: __________________________________________________________
[14:44:28] [Server thread/INFO]:  
[14:44:28] [Server thread/INFO]:                        TradeSystem [2.5.1]
[14:44:28] [Server thread/INFO]:  
[14:44:28] [Server thread/INFO]: Status:
[14:44:28] [Server thread/INFO]:  
[14:44:28] [Server thread/INFO]: MC-Version: 1.19.4 (R0.1-SNAPSHOT, Purpur)
[14:44:28] [Server thread/INFO]:  
[14:44:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[14:44:28] [Server thread/INFO]:   > Loading sounds
[14:44:28] [Server thread/INFO]:   > Loading blacklist
[14:44:28] [Server thread/INFO]:     ...got 3 blocked item(s)
[14:44:28] [Server thread/INFO]:   > Loading layouts
[14:44:28] [Server thread/INFO]:     ...got 7 layout(s)
[14:44:28] [Server thread/INFO]:   > Queuing database initializing task
[14:44:28] [Server thread/INFO]:  
[14:44:28] [Server thread/INFO]: Finished (117ms)
[14:44:28] [Server thread/INFO]:  
[14:44:28] [Server thread/INFO]: __________________________________________________________
[14:44:28] [Server thread/INFO]:  
[14:44:28] [Server thread/INFO]: [EnchantMenu] Enabling EnchantMenu v1.0.0-SNAPSHOT
[14:44:28] [Server thread/INFO]: [EnchantMenu 1.0.0-SNAPSHOT] === ENABLE START ===
[14:44:28] [Server thread/INFO]: [EnchantMenu 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 18ms) ===
[14:44:28] [Server thread/INFO]: [JunoDeathBan] Enabling JunoDeathBan v1.0-SNAPSHOT
[14:44:28] [Server thread/INFO]: Koth1 28800
[14:44:28] [Server thread/INFO]: Outpost1 300
[14:44:28] [Server thread/INFO]: Outpost2 300
[14:44:28] [Server thread/INFO]: Outpost3 300
[14:44:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deathban [1.0.0]
[14:44:28] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.15
[14:44:28] [Server thread/INFO]: [PlayerVaults] Added BEDROCK to list of blocked materials.
[14:44:28] [Server thread/INFO]: [PlayerVaults] Loaded! Took 195ms
[14:44:28] [Server thread/INFO]: [OffsetCalculator] Enabling OffsetCalculator v1.0
[14:44:28] [Server thread/INFO]: [spark] Enabling spark v1.10.37
[14:44:28] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[14:44:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.37]
[14:44:28] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[14:44:28] [Server thread/INFO]: [MVdWPlaceholderAPI] spark added custom placeholder {spark_*}
[14:44:28] [Server thread/INFO]: [spark] Registered MVdWPlaceholderAPI placeholders
[14:44:28] [Server thread/INFO]: [Join Commands] Enabling JoinCommands v3.1.0.116
[14:44:28] [Server thread/WARN]: [Join Commands] Your config seems to be missing the 'world-join-commands' section.
[14:44:28] [Server thread/WARN]: [Join Commands] This means that commands will not be executed when a player joins a world.
[14:44:28] [Server thread/WARN]: [Join Commands] If you manually deleted it then please ignore this message.
[14:44:28] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v2.9.14.2
[14:44:28] [Server thread/INFO]: [CrazyVouchers] Loading the Config.yml
[14:44:28] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Config.yml
[14:44:28] [Server thread/INFO]: [CrazyVouchers] Loading the Data.yml
[14:44:28] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Data.yml
[14:44:28] [Server thread/INFO]: [CrazyVouchers] Loading the Messages.yml
[14:44:28] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Messages.yml
[14:44:28] [Server thread/INFO]: [CrazyVouchers] Loading the VoucherCodes.yml
[14:44:28] [Server thread/INFO]: [CrazyVouchers] Successfully loaded VoucherCodes.yml
[14:44:28] [Server thread/INFO]: [EnchantPouch] Enabling EnchantPouch v1.0.0-SNAPSHOT
[14:44:28] [Server thread/INFO]: [EnchantPouch 1.0.0-SNAPSHOT] === ENABLE START ===
[14:44:28] [Server thread/INFO]: [EnchantPouch 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 27ms) ===
[14:44:28] [Server thread/INFO]: [CommandNPC] Enabling CommandNPC v1.9.1*
[14:44:28] [Server thread/INFO]: [CommandNPC] Vault compatible economy found! Economy support for CommandNPC has been enabled.
[14:44:28] [Server thread/INFO]: [CommandNPC] Initiating Database
[14:44:28] [Server thread/INFO]: [CommandNPC] Injecting command info into Citizens.
[14:44:28] [Thread-44/INFO]: [CommandNPC] Loading commands complete!
[14:44:28] [Server thread/INFO]: [CommandNPC] CommandNPC successfully loaded!
[14:44:28] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[14:44:28] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[14:44:28] [Server thread/INFO]: [DeluxeTags] 24 tags loaded
[14:44:28] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[14:44:28] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[14:44:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[14:44:28] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[14:44:28] [Server thread/INFO]: [SkinDrops] Enabling SkinDrops v1.0.0-SNAPSHOT
[14:44:28] [Server thread/INFO]: [SkinDrops 1.0.0-SNAPSHOT] === ENABLE START ===
[14:44:28] [Server thread/INFO]: [SkinDrops 1.0.0-SNAPSHOT] === ENABLE COMPLETE (Took 31ms) ===
[14:44:28] [Server thread/INFO]: [RivalCredits] Enabling RivalCredits v1.0.3
[14:44:28] [Server thread/INFO]: [Rival Credits] Successfully connected to the SQLite Database.
[14:44:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rivalcredits [1.0]
[14:44:28] [Server thread/INFO]: ^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^
[14:44:28] [Server thread/INFO]: 
[14:44:28] [Server thread/INFO]: 
[14:44:28] [Server thread/INFO]: 
[14:44:28] [Server thread/INFO]:       :::::::::       :::::::::::    :::     :::           :::        :::   
[14:44:28] [Server thread/INFO]:      :+:    :+:          :+:        :+:     :+:         :+: :+:      :+:    
[14:44:28] [Server thread/INFO]:     +:+    +:+          +:+        +:+     +:+        +:+   +:+     +:+     
[14:44:28] [Server thread/INFO]:    +#++:++#:           +#+        +#+     +:+       +#++:++#++:    +#+      
[14:44:28] [Server thread/INFO]:   +#+    +#+          +#+         +#+   +#+        +#+     +#+    +#+       
[14:44:28] [Server thread/INFO]:  #+#    #+#          #+#          #+#+#+#         #+#     #+#    #+#        
[14:44:28] [Server thread/INFO]: ###    ###      ###########        ###           ###     ###    ##########  
[14:44:28] [Server thread/INFO]: 
[14:44:28] [Server thread/INFO]: 
[14:44:28] [Server thread/INFO]:       ::::::::       :::::::::       ::::::::::       :::::::::       :::::::::::   :::::::::::       :::::::: 
[14:44:28] [Server thread/INFO]:     :+:    :+:      :+:    :+:      :+:              :+:    :+:          :+:           :+:          :+:    :+:
[14:44:28] [Server thread/INFO]:    +:+             +:+    +:+      +:+              +:+    +:+          +:+           +:+          +:+         
[14:44:28] [Server thread/INFO]:   +#+             +#++:++#:       +#++:++#         +#+    +:+          +#+           +#+          +#++:++#++   
[14:44:28] [Server thread/INFO]:  +#+             +#+    +#+      +#+              +#+    +#+          +#+           +#+                 +#+    
[14:44:28] [Server thread/INFO]: #+#    #+#      #+#    #+#      #+#              #+#    #+#          #+#           #+#          #+#    #+#     
[14:44:28] [Server thread/INFO]: ########       ###    ###      ##########       #########       ###########       ###           ########       
[14:44:28] [Server thread/INFO]: 
[14:44:28] [Server thread/INFO]: 
[14:44:28] [Server thread/INFO]: 
[14:44:28] [Server thread/INFO]: ^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^
[14:44:28] [Server thread/INFO]: [RestartBackup] Enabling RestartBackup v1.0-SNAPSHOT
[14:44:28] [Server thread/INFO]: [RestartBackup] RestartBackup enabled for server: Prisons-PROD with id: 73b24953
[14:44:28] [Server thread/INFO]: [RestartBackup] Registering Timers. Current Time: Wed Jun 19 16:44:28 BRT 2024
[14:44:28] [Server thread/INFO]: [RestartBackup] Scheduling restart for Thu Jun 20 04:00:00 BRT 2024
[14:44:28] [Server thread/INFO]: [ChatGames] Enabling ChatGames v1.2.1
[14:44:28] [Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[14:44:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatgames [1.0.0]
[14:44:28] [Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[14:44:28] [Server thread/INFO]: [ChatGames] Points loaded successfully!
[14:44:28] [Server thread/INFO]: [Kyra] Enabling Kyra v1.3.3
[14:44:28] [Server thread/INFO]: [JunoOutpost] Enabling JunoOutpost v1.0-SNAPSHOT
[14:44:28] [Server thread/INFO]: 1.yml
[14:44:28] [Server thread/INFO]: 2.yml
[14:44:28] [Server thread/INFO]: 3.yml
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : shop: 1.5
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : meteor: 1.5
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : ore: 2.0
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : xp: 1.2
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : damage_reduction: 0.95
[14:44:28] [Server thread/INFO]: Registered Outpost!
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : book_success: 20.0
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : book_destroy: 50.0
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : energy: 1.25
[14:44:28] [Server thread/INFO]: Registered Outpost!
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : shard: 1.3
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : relic: 1.3
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : crystal: 1.5
[14:44:28] [Server thread/INFO]: Multiplier Registered:  : damage: 1.05
[14:44:28] [Server thread/INFO]: Registered Outpost!
[14:44:28] [Server thread/INFO]: [CommandAlias] Enabling CommandAlias v1.6.6-RELEASE
[14:44:29] [Server thread/INFO]: [CommandAlias] PlaceholderAPI found! Utilizing...
[14:44:29] [Server thread/INFO]: [CommandAlias] 14 command aliases were loaded!
[14:44:29] [Server thread/INFO]: [CommandAlias] CommandAlias v1.6.6-RELEASE, by Ellie#0006, has been enabled!
[14:44:29] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.0.0 (build 833)
[14:44:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: denizen [2.0.0]
[14:44:29] [Server thread/INFO]: [ConditionalCommands] Enabling ConditionalCommands v1.6
[14:44:29] [Server thread/INFO]: [ConditionalCommands] Initializing placeholders...
[14:44:29] [Server thread/INFO]: [ConditionalCommands] Ready.
[14:44:29] [Server thread/INFO]: [PhysicsToggle] Enabling PhysicsToggle v1.0.6
[14:44:29] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.1.1
[14:44:29] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[14:44:29] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[14:44:29] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[14:44:29] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[14:44:29] [Server thread/INFO]: [ItemEdit] placeholders:
[14:44:29] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[14:44:29] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[14:44:29] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[14:44:29] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[14:44:29] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[14:44:29] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[14:44:29] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[14:44:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[14:44:29] [Server thread/INFO]: [ItemEdit] Hooking into ShopGuiPlus
[14:44:29] [Server thread/INFO]: [ShopGUIPlus] Registered item provider 'ServerItem'.
[14:44:29] [Server thread/INFO]: [ItemEdit] Hooking into MythicMobs
[14:44:29] [Server thread/INFO]: [ItemEdit] # Enabled (took 40 ms)
[14:44:29] [Server thread/INFO]: [SmartSignEditor] Enabling SmartSignEditor v2.7.7
[14:44:29] [Server thread/INFO]: [SmartSignEditor] Registered version adapter with success! Using VersionAdapter_1_19_R3
[14:44:29] [Server thread/INFO]: [SmartSignEditor] [Config] Configuration loaded successfully!
[14:44:29] [Server thread/INFO]: [SmartSignEditor] [Messages] Configuration loaded successfully!
[14:44:29] [Server thread/INFO]: [DarkAuctionsX] Enabling DarkAuctionsX v2.3.2
[14:44:29] [Server thread/INFO]: [DarkAuctionsX] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[14:44:29] [Server thread/INFO]: [DarkAuctionsX]   Plugin: DarkAuctionsX
[14:44:29] [Server thread/INFO]: [DarkAuctionsX]   Version: 2.3
[14:44:29] [Server thread/INFO]: [DarkAuctionsX]   Author: qKing12 (Dragos-Dumitru Ghinea)
[14:44:29] [Server thread/INFO]: [DarkAuctionsX]   Copyright: 2021-2024 All Rights Reserved
[14:44:29] [Server thread/INFO]: [DarkAuctionsX] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[14:44:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: darkauctionsx [2.3.2]
[14:44:29] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v5.7
[14:44:29] [Server thread/INFO]: [AntiPopup] Config enabled.
[14:44:29] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[14:44:29] [Server thread/INFO]: [AntiPopup] Hooked on 1.19.4
[14:44:29] [Server thread/INFO]: [AntiPopup] Commands registered.
[14:44:29] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[14:44:29] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[14:44:29] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[14:44:29] [Server thread/INFO]: [ClearLag] Loading modules...
[14:44:29] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R3.MinecraftServer)
[14:44:29] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[14:44:29] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[14:44:29] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[14:44:29] [Server thread/INFO]: [AdventCalendar] Enabling AdventCalendar v1.1.4
[14:44:29] [Server thread/INFO]: [AdventCalendar] Version 1.1.0 Successfully Loaded!
[14:44:29] [Server thread/INFO]: MENU MANAGER HAS BEEN SETUP
[14:44:29] [Server thread/INFO]: EssentialsPlayerListener
[14:44:29] [Server thread/INFO]: cB
[14:44:29] [Server thread/INFO]: EnginePlayer
[14:44:29] [Server thread/INFO]: InventoryEvents
[14:44:29] [Server thread/INFO]: GUIListener
[14:44:29] [Server thread/INFO]: 
[14:44:29] [Server thread/INFO]: EngineMassiveCoreChestGui
[14:44:29] [Server thread/INFO]: EngineMassiveCoreLorePriority
[14:44:29] [Server thread/INFO]: ItemScriptHelper
[14:44:29] [Server thread/INFO]: InventoryActionListener
[14:44:29] [Server thread/INFO]: GuiListener
[14:44:29] [Server thread/INFO]: VoucherClick
[14:44:29] [Server thread/INFO]: InventoryListener
[14:44:29] [Server thread/INFO]: CraftingRecipeListener
[14:44:29] [Server thread/INFO]: GUIListener
[14:44:29] [Server thread/INFO]: BlacklistListener
[14:44:29] [Server thread/INFO]: BlacklistListener
[14:44:29] [Server thread/INFO]: DenizenNPCHelper
[14:44:29] [Server thread/INFO]: L
[14:44:29] [Server thread/INFO]: df
[14:44:29] [Server thread/INFO]: ej
[14:44:29] [Server thread/INFO]: ce
[14:44:29] [Server thread/INFO]: J
[14:44:29] [Server thread/INFO]: cq
[14:44:29] [Server thread/INFO]: fE
[14:44:29] [Server thread/INFO]: fV
[14:44:29] [Server thread/INFO]: fT
[14:44:29] [Server thread/INFO]: fU
[14:44:29] [Server thread/INFO]: ArmorListener
[14:44:29] [Server thread/INFO]: MenuManager
[14:44:29] [Server thread/INFO]: GrindstoneUseEvent
[14:44:29] [Server thread/INFO]: TransmogScroll
[14:44:29] [Server thread/INFO]: RenameTag
[14:44:29] [Server thread/INFO]: RandomizationScroll
[14:44:29] [Server thread/INFO]: BlackScroll
[14:44:29] [Server thread/INFO]: SlotIncreaser
[14:44:29] [Server thread/INFO]: BlockTrack
[14:44:29] [Server thread/INFO]: FishTrack
[14:44:29] [Server thread/INFO]: StatTrack
[14:44:29] [Server thread/INFO]: MobTracker
[14:44:29] [Server thread/INFO]: HolyWhiteScroll
[14:44:29] [Server thread/INFO]: AdminClickEvent
[14:44:29] [Server thread/INFO]: ConfirmInventory
[14:44:29] [Server thread/INFO]: SetMenuClick
[14:44:29] [Server thread/INFO]: SetSpecificPreviewClick
[14:44:29] [Server thread/INFO]: UserEnchantmentsHandler
[14:44:29] [Server thread/INFO]: InventoryClicks
[14:44:29] [Server thread/INFO]: StatTrak
[14:44:29] [Server thread/INFO]: GListeners
[14:44:29] [Server thread/INFO]: SoulGemClick
[14:44:29] [Server thread/INFO]: SoulgemCraftEvent
[14:44:29] [Server thread/INFO]: MarketInventory
[14:44:29] [Server thread/INFO]: AlchemistInventoryClicks
[14:44:29] [Server thread/INFO]: HolyWhiteScroll
[14:44:29] [Server thread/INFO]: OrbApply
[14:44:29] [Server thread/INFO]: PlayerListener
[14:44:29] [Server thread/INFO]: FailureEraser
[14:44:29] [Server thread/INFO]: BackpacksOffhandListener
[14:44:29] [Server thread/INFO]: BackpacksOffhandListener
[14:44:29] [Server thread/INFO]: BackpacksOffhandListener
[14:44:29] [Server thread/INFO]: ShardsListener
[14:44:29] [Server thread/INFO]: EnergyListeners
[14:44:29] [Server thread/INFO]: EnergyListeners
[14:44:29] [Server thread/INFO]: EnergyListeners
[14:44:29] [Server thread/INFO]: LevelCapModule
[14:44:29] [Server thread/INFO]: BragModule
[14:44:29] [Server thread/INFO]: FlipInventoryManager
[14:44:29] [Server thread/INFO]: ItemFlipAnimationManager
[14:44:29] [Server thread/INFO]: PlayerListener
[14:44:29] [Server thread/INFO]: PlayerListener
[14:44:29] [Server thread/INFO]: GeneratorGUIHandler
[14:44:29] [Server thread/INFO]: GuiListener
[14:44:29] [Server thread/INFO]: PlayerListener
[14:44:29] [Server thread/INFO]: InventoryEditListener
[14:44:29] [Server thread/INFO]: BossGUIHandler
[14:44:29] [Server thread/INFO]: ViewCategoriesGUI
[14:44:29] [Server thread/INFO]: GUIImpl
[14:44:29] [Server thread/INFO]: CellWallListener
[14:44:29] [Server thread/INFO]: GuardGUIHandler
[14:44:29] [Server thread/INFO]: CellViewGUIHandler
[14:44:29] [Server thread/INFO]: CellGolemGUIHandler
[14:44:29] [Server thread/INFO]: CellMembersGUIHandler
[14:44:29] [Server thread/INFO]: DrillCraftListener
[14:44:29] [Server thread/INFO]: DrillGuiHandler
[14:44:29] [Server thread/INFO]: CellRankGUIHandler
[14:44:29] [Server thread/INFO]: CellVisitorsGUIHandler
[14:44:29] [Server thread/INFO]: RaidPickaxeGUIHandler
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: MonthlyCrateHitListener
[14:44:29] [Server thread/INFO]: MonthlyCrateHitListener
[14:44:29] [Server thread/INFO]: MonthlyCrateHitListener
[14:44:29] [Server thread/INFO]: InventoryActionListener
[14:44:29] [Server thread/INFO]: InventoryActionListener
[14:44:29] [Server thread/INFO]: CrateHitListener
[14:44:29] [Server thread/INFO]: MeteorClientListeners
[14:44:29] [Server thread/INFO]: Events
[14:44:29] [Server thread/INFO]: CancelCraftingListener
[14:44:29] [Server thread/INFO]: CancelCraftingListener
[14:44:29] [Server thread/INFO]: CancelCraftingListener
[14:44:29] [Server thread/INFO]: GUIListener
[14:44:29] [Server thread/INFO]: GUIListener
[14:44:29] [Server thread/INFO]: Listeners
[14:44:29] [Server thread/INFO]: GUI
[14:44:29] [Server thread/INFO]: GUIHandler
[14:44:29] [Server thread/INFO]: EnginePlayer
[14:44:29] [Server thread/INFO]: ShopListener
[14:44:29] [Server thread/INFO]: ShopListener
[14:44:29] [Server thread/INFO]: ShopListener
[14:44:29] [Server thread/INFO]: OutpostManager
[14:44:29] [Server thread/INFO]: StackedRecipeListener
[14:44:29] [Server thread/INFO]: GUIListener
[14:44:29] [Server thread/INFO]: GUIListener
[14:44:29] [Server thread/INFO]: InventoryScriptHelper
[14:44:29] [Server thread/INFO]: EnginePlayer
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: Window
[14:44:29] [Server thread/INFO]: TradeGUIListener
[14:44:29] [Server thread/INFO]: ArmorListener
[14:44:29] [Server thread/INFO]: GUIListener
[14:44:29] [Server thread/INFO]: GUIListener
[14:44:29] [Server thread/INFO]: ArmorListener
[14:44:29] [Server thread/INFO]: ClickListener
[14:44:29] [Server thread/INFO]: SpigotListener
[14:44:29] [Server thread/INFO]: PlayerListener
[14:44:29] [Server thread/INFO]: BackpacksOffhandListener
[14:44:29] [Server thread/INFO]: MultiplierHandler
[14:44:29] [Server thread/INFO]: MenuListener
[14:44:29] [Server thread/INFO]: BukkitMenuListener
[14:44:29] [Server thread/INFO]: Events
[14:44:29] [Server thread/INFO]: InventoryEvents
[14:44:29] [Server thread/INFO]: EngineExploit
[14:44:29] [Server thread/INFO]: EngineExploit
[14:44:29] [Server thread/INFO]: EngineExploit
[14:44:29] [Server thread/INFO]: EngineExploit
[14:44:29] [Server thread/INFO]: GuiHandler
[14:44:29] [Server thread/INFO]: EngineMassiveCoreScheduledTeleport
[14:44:29] [Server thread/INFO]: fK
[14:44:29] [Server thread/INFO]: gc
[14:44:29] [Server thread/INFO]: fB
[14:44:29] [Server thread/INFO]: MapViewer
[14:44:29] [Server thread/INFO]: MapViewer
[14:44:29] [Server thread/WARN]: Plugin 'AdventCalendar' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: CaelenO42
[14:44:29] [Server thread/INFO]: [AdventCalendar] [ACF] Enabled Asynchronous Tab Completion Support!
[14:44:29] [Server thread/WARN]: Plugin 'AdventCalendar' is creating timing 'Command: adventcalendar' - this is deprecated behavior, please report it to the authors: CaelenO42
[14:44:29] [Server thread/WARN]: Plugin 'AdventCalendar' is creating timing 'Command: adventcalendar help' - this is deprecated behavior, please report it to the authors: CaelenO42
[14:44:29] [Server thread/WARN]: Plugin 'AdventCalendar' is creating timing 'Command: adventcalendar preview' - this is deprecated behavior, please report it to the authors: CaelenO42
[14:44:29] [Server thread/WARN]: Plugin 'AdventCalendar' is creating timing 'Command: adventcalendar' - this is deprecated behavior, please report it to the authors: CaelenO42
[14:44:29] [Server thread/WARN]: Plugin 'AdventCalendar' is creating timing 'Command: adventcalendar open' - this is deprecated behavior, please report it to the authors: CaelenO42
[14:44:29] [Server thread/WARN]: Plugin 'AdventCalendar' is creating timing 'Command: adventcalendar forceopen' - this is deprecated behavior, please report it to the authors: CaelenO42
[14:44:29] [Server thread/WARN]: Plugin 'AdventCalendar' is creating timing 'Command: adventcalendar reload' - this is deprecated behavior, please report it to the authors: CaelenO42
[14:44:29] [Server thread/INFO]: [AdventCalendar] Userdata folder found!
[14:44:29] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[14:44:29] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[14:44:29] [Server thread/ERROR]: [DeluxeMenus] Detected invalid configuration in file: advanced_menu.yml
[14:44:29] [Server thread/WARN]: [DeluxeMenus] Menu: advanced_menu in file: advanced_menu.yml not loaded.
[14:44:29] [Server thread/WARN]: [DeluxeMenus] Item flag: HIDE_UNBREAKABL for item: equipment in menu: testing is not a valid item flag!
[14:44:29] [Server thread/WARN]: [DeluxeMenus] Item flag: HIDE_UNBREAKABL for item: keys_and_crates in menu: testing is not a valid item flag!
[14:44:29] [Server thread/WARN]: [DeluxeMenus] Item flag: HIDE_UNBREAKABL for item: gadgets in menu: testing is not a valid item flag!
[14:44:29] [Server thread/WARN]: [DeluxeMenus] Item flag: HIDE_UNBREAKABL for item: currencies in menu: testing is not a valid item flag!
[14:44:29] [Server thread/WARN]: [DeluxeMenus] Item flag: HIDE_UNBREAKABL for item: enchants in menu: testing is not a valid item flag!
[14:44:29] [Server thread/WARN]: [DeluxeMenus] Item flag: HIDE_UNBREAKABL for item: ranks in menu: testing is not a valid item flag!
[14:44:29] [Server thread/WARN]: [DeluxeMenus] Item flag: HIDE_UNBREAKABL for item: misc in menu: testing is not a valid item flag!
[14:44:29] [Server thread/WARN]: [DeluxeMenus] Item flag: HIDE_UNBREAKABL for item: quests in menu: testing is not a valid item flag!
[14:44:29] [Server thread/INFO]: [DeluxeMenus] 5 GUI menus loaded!
[14:44:29] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[14:44:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-Release]
[14:44:29] [Server thread/INFO]: [FreeCoinFlip] Enabling FreeCoinFlip v1.7
[14:44:29] [Server thread/INFO]: [PatheticTest] Enabling PatheticTest v1.0-SNAPSHOT
[14:44:29] [Server thread/INFO]: [PatheticTest] pathetic successfully initialized
[14:44:29] [Server thread/INFO]: [EliteMasks] Enabling EliteMasks v1.5.7
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/INFO]: [EliteMasks] [ACF] Enabled Asynchronous Tab Completion Support!
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Command: elitemasks reload' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Command: elitemasks version' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Command: elitemasks give' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Command: elitemasks effects' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Command: elitemasks admin' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Command: elitemasks premade' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Command: elitemasks' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Command: elitemasks help' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/WARN]: Plugin 'EliteMasks' is creating timing 'Command: elitemasks create' - this is deprecated behavior, please report it to the authors: Splodgebox
[14:44:29] [Server thread/WARN]: Could not register alias Hub because it contains commands that do not exist: server hub-
[14:44:30] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[14:44:30] [Server thread/INFO]: Running delayed init tasks
[14:44:30] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[14:44:30] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Fetching version information...
[14:44:30] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 6 - DecentHolograms/INFO]: [DecentHolograms] Loading animations...
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[14:44:30] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[14:44:30] [Craft Scheduler Thread - 6 - DecentHolograms/INFO]: [DecentHolograms] Loaded 2 animations!
[14:44:30] [Craft Scheduler Thread - 14 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[14:44:30] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[14:44:30] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing Crate1.bbmodel.
[14:44:30] [Craft Scheduler Thread - 20 - ServerUtils/INFO]: [ServerUtils] Checking for updates...
[14:44:30] [Craft Scheduler Thread - 4 - UltimateKoth/INFO]: [UltimateKoth] Loaded 0 Holograms(s).
[14:44:30] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: ๎•บ [License] Spigot product licensed to: bbbotshot (1665756)
[14:44:30] [Craft Scheduler Thread - 16 - UltimateKoth/INFO]: [UltimateKoth] Loaded 1 Commands(s).
[14:44:30] [Craft Scheduler Thread - 11 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 0 ImageMaps!
[14:44:30] [Craft Scheduler Thread - 17 - UltimateKoth/INFO]: [UltimateKoth] Loaded 1 Scheduler(s).
[14:44:30] [Craft Scheduler Thread - 25 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[14:44:30] [Craft Scheduler Thread - 8 - UltimateKoth/INFO]: [UltimateKoth] Loaded 1 Koth(s).
[14:44:30] [Craft Scheduler Thread - 10 - UltimateKoth/INFO]: [UltimateKoth] Loaded 182 Stats(s).
[14:44:30] [Craft Scheduler Thread - 24 - BeastWithdraw/INFO]: [BeastWithdraw] There is a new update available.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[14:44:30] [Server thread/INFO]: ๎•บ [Pack] Extracting internal contents from .jar
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing Crate2.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing Crate3.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing awakened_shrub.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing backpack.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing blaze_king.bbmodel.
[14:44:30] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loaded 123 holograms!
[14:44:30] [Server thread/INFO]: ๎•บ [Pack] DONE extracting internal contents from .jar
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing blazeminion.bbmodel.
[14:44:30] [Craft Scheduler Thread - 20 - ServerUtils/INFO]: [ServerUtils] We are up-to-date!
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing bug_swarm.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_guard.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_guard_mini.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_medic_guard.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing cell_medic_guard_mini.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing crystal_golem.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing dark_imp.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing deathangel.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing drill.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing drill_100.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing drill_25.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing drill_50.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing drill_75.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ec_skeleton_blackbeard.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ec_skeleton_brute.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ec_skeleton_crew_gun.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ec_skeleton_crew_sword.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ec_skeleton_lord.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing explosive_seed.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing finishsoul.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing fire_imp.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing guard.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hell_hound.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing hologram.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ito_the_sumo.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ito_the_sumo_-_Converted.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ito_the_sumo_death.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing key1.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -15.0 ]
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing key2.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -15.0 ]
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing key3.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone bone has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -15.0 ]
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lava_mite.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lava_piranha.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing lost_soul.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing mutant_flower.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing mutant_flower_vine.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing nether_mushroom.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-ant_nexus-ne.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-ant_nexus.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-beetle_trooper-ne.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-beetle_trooper.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-bullet.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-gunship_moth-ne.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-gunship_moth.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-huntsman_spider-ne.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-huntsman_spider.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-ladybug_mortar-ne.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-ladybug_mortar.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-robot_bait.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-swarmer_ant-ne.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-swarmer_ant.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing pb_nul-woodlouse_tank.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing robot_guard.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right_hand has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone right_hand has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing rubypickaxe.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing thorn_spitter.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing vine_guardian.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing vine_root.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing vulcan.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing vulcanminion.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing desktop.ini.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing astral_projection.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing bubble_burst.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing colorful_explosion.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing desktop.ini.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing digital_disintegration.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing dissolve_into_ash.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing energy_dissipation.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing feather_scatter.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing glass_shatter.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing ice_shatter.bbmodel.
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:30] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Importing sand_dissolve.bbmodel.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_1 Another item is already using model_id 10005 [voxelspawns_pickaxes:voxelspawns_pickaxe_5]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[voxelspawns_pickaxes:voxelspawns_pickaxe_5]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_2 Another item is already using model_id 10009 [halloween_candy:north_pole_pickaxe]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[halloween_candy:north_pole_pickaxe]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_6 Another item is already using model_id 10010 [xenos:rubypickaxe]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[xenos:rubypickaxe]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_11 Another item is already using model_id 10007 [voxelspawns_pickaxes:voxelspawns_pickaxe_16]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[voxelspawns_pickaxes:voxelspawns_pickaxe_16]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_13 Another item is already using model_id 10005 [voxelspawns_pickaxes:voxelspawns_pickaxe_9]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[voxelspawns_pickaxes:voxelspawns_pickaxe_9]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_19 Another item is already using model_id 10007 [voxelspawns_pickaxes:voxelspawns_pickaxe_24]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[voxelspawns_pickaxes:voxelspawns_pickaxe_24]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_21 Another item is already using model_id 10005 [voxelspawns_pickaxes:voxelspawns_pickaxe_17]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[voxelspawns_pickaxes:voxelspawns_pickaxe_17]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_27 Another item is already using model_id 10007 [voxelspawns_pickaxes:voxelspawns_pickaxe_32]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[voxelspawns_pickaxes:voxelspawns_pickaxe_32]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_29 Another item is already using model_id 10005 [voxelspawns_pickaxes:voxelspawns_pickaxe_25]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[voxelspawns_pickaxes:voxelspawns_pickaxe_25]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_35 Another item is already using model_id 10007 [voxelspawns_pickaxes:voxelspawns_pickaxe_40]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[voxelspawns_pickaxes:voxelspawns_pickaxe_40]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/ERROR]: ๎•บ Cannot set model_id for item voxelspawns_pickaxes:voxelspawns_pickaxe_37 Another item is already using model_id 10005 [voxelspawns_pickaxes:voxelspawns_pickaxe_33]
[14:44:30] [Server thread/ERROR]: ๎•บ If '[voxelspawns_pickaxes:voxelspawns_pickaxe_33]' doesn't exists anymore you can run '/iacleancache items' command and then '/iareload'.
[14:44:30] [Server thread/WARN]: ๎•บ Custom entities 'fast_packets_creation' is disabled. This might cause stuttering animations. More info: https://a.devs.beer/ia-delaypackets
[14:44:30] [Craft Scheduler Thread - 28 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[14:44:31] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:44:31] [Craft Scheduler Thread - 7 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[14:44:31] [User Authenticator #0/INFO]: UUID of player Latestion is 6f467808-3697-4cef-9254-9f8269d095ad
[14:44:31] [Server thread/INFO]: [Citizens] Loaded 36 NPCs.
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:31] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:31] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:31] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:31] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:31] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:31] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:31] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:31] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:31] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Mechanic CustomMechanic
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Skill: Pesticide_ModeSwitch | File: /home/container/plugins/MythicMobs/Packs/PixelBarrel's Null Return/Skills/Item Skills/Pesticide_skills.yml
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelset{m=3001}
[14:44:31] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Mechanic CustomMechanic
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Skill: Pesticide_ModeSwitch-ToHitscan | File: /home/container/plugins/MythicMobs/Packs/PixelBarrel's Null Return/Skills/Item Skills/Pesticide_skills.yml
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:44:31] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelset{m=3000}
[14:44:31] [Server thread/INFO]: Found a new version of PluginConstructorAPI: v1.1.53 downloading now!!
[14:44:31] [Server thread/INFO]: --------------------------------------------------------
[14:44:31] [Server thread/INFO]: 
[14:44:31] [Server thread/INFO]: Thank you for purchasing Auction House, it means a lot
[14:44:31] [Server thread/INFO]:  - Kiran Hart
[14:44:31] [Server thread/INFO]: 
[14:44:31] [Server thread/INFO]: --------------------------------------------------------
[14:44:31] [Server thread/INFO]: ---------------------------------------------------------------------
[14:44:31] [Server thread/INFO]:  
[14:44:31] [Server thread/INFO]: Pl-Hide โ–Ž Update available: 1.5.22. You are on 1.5.21!
[14:44:31] [Server thread/INFO]:  
[14:44:31] [Server thread/INFO]: ---------------------------------------------------------------------
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.3]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [2.3]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: localtime [1.2]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerlist [3.0.7]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: math [2.0.2]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ascii [1.0.0]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.8]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: healthbar [1.3]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: formatter [2.3.0]
[14:44:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[14:44:31] [Server thread/INFO]: 12 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[14:44:31] [Server thread/INFO]: Done (37.072s)! For help, type "help"
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Server thread/INFO]: [ShopGUIPlus] Registered item provider 'eco'.
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/ERROR]: ๎•บ Duplicate ingredient 'ores:blue_pink_spiked_steel_ingot' found for recipe 'blue_pink_spiked_steel_block'. File: /contents/oress/configs/recipe_blue_pink_spiked_steel_block.yml
[14:44:31] [Server thread/INFO]: [eco] Loaded eco
[14:44:31] [Server thread/INFO]: [EcoBits] Loaded EcoBits
[14:44:31] [Server thread/INFO]: Setting world spawn for world...
[14:44:31] [Server thread/INFO]: Setting world spawn for cells_1...
[14:44:31] [Server thread/INFO]: Setting world spawn for Koth1...
[14:44:31] [Server thread/INFO]: Setting world spawn for aquaticadventure...
[14:44:31] [Server thread/INFO]: Setting world spawn for cells...
[14:44:31] [Server thread/INFO]: Setting world spawn for MMORPG...
[14:44:31] [Server thread/INFO]: Setting world spawn for Outpost2...
[14:44:31] [Server thread/INFO]: Setting world spawn for bosses...
[14:44:31] [Server thread/INFO]: Setting world spawn for Outpost1...
[14:44:31] [Server thread/INFO]: Setting world spawn for Outpost3...
[14:44:31] [Server thread/INFO]: Setting world spawn for Classes...
[14:44:31] [Server thread/INFO]: Setting world spawn for test2...
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: ๎•บ Loaded 473 items
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: ๎•บ Used 0/188 REAL block IDs
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: ๎•บ Used 92/750 REAL_NOTE block IDs
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: ๎•บ Used 0/63 REAL_TRANSPARENT block IDs
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: ๎•บ Used 0/127 REAL_WIRE block IDs
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: ๎•บ Used 0/14 FIRE block IDs
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: ๎•บ Used 1599/6608 font_images
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]: java.io.FileNotFoundException: https://github.com/ZombieStriker/PluginConstructorAPI/releases/download/v1.1.53/PluginConstructorAPI.jar
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1996)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at java.base/java.net.URL.openStream(URL.java:1161)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at PluginConstructorAPI.jar//me.zombie_striker.pluginconstructor.GithubUpdater$1.run(GithubUpdater.java:56)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[14:44:31] [Craft Scheduler Thread - 28 - PluginConstructorAPI/WARN]:     at java.base/java.lang.Thread.run(Thread.java:840)
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: ๎•บ [Init] Loaded 10 categories
[14:44:31] [Craft Scheduler Thread - 7 - ItemsAdder/INFO]: ๎•บ [Init] Loaded successfully.
[14:44:32] [Server thread/INFO]: [AuctionHouse] Updating profile player reference for: Latestion
[14:44:32] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel main-chat in mode write
[14:44:32] [Server thread/INFO]: [ChatControlRed] TIP: Joining player to his saved channel helperchat in mode read
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Profiles] Fetching profile for 6f467808-3697-4cef-9254-9f8269d095ad...
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Profiles] Updating last login time for 6f467808-3697-4cef-9254-9f8269d095ad...
[14:44:32] [Server thread/INFO]: Latestion[<ip address withheld>] logged in with entity id 1387 at ([world]1541.8165928094263, 13.0, 329.11179492165496)
[14:44:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: img [1.0.1]
[14:44:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iaplayerstat [1.0.1]
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [ItemsAdderLoadDataEvent] Calling Modules...
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with COAL_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with COPPER_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with LAPIS_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_REDSTONE_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_GOLD_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_DIAMOND_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with GILDED_BLACKSTONE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with coal
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with copper
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with lapis
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with redstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with gold
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with diamond
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with gilded_blackstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registering pickaxes...
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with WOODEN_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with STONE_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with GOLDEN_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with IRON_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with DIAMOND_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with RUBY_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registering ore rush with coal
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registered ore rush with coal and mine coal
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registering ore rush with copper
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registered ore rush with copper and mine copper
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registering ore rush with lapis
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registered ore rush with lapis and mine lapis
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registering ore rush with redstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registered ore rush with redstone and mine redstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registering ore rush with gold
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registered ore rush with gold and mine gold
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registering ore rush with diamond
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registered ore rush with diamond and mine diamond
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registering ore rush with gilded
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [OreRush] Registered ore rush with gilded and mine gilded_blackstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone coal with mine coal
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone copper with mine copper
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone lapis with mine lapis
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone redstone with mine redstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone gold with mine gold
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone diamond with mine diamond
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone gilded with mine gilded_blackstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Removing all holograms (0)
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [ItemsAdderLoadDataEvent] Calling Modules...
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with COAL_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with COPPER_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with LAPIS_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_REDSTONE_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_GOLD_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with DEEPSLATE_DIAMOND_ORE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered ore with GILDED_BLACKSTONE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with coal
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with copper
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with lapis
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with redstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with gold
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with diamond
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Mining] Registered mine with gilded_blackstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registering pickaxes...
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with WOODEN_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with STONE_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with GOLDEN_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with IRON_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with DIAMOND_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [Pickaxes] Registered pickaxe with RUBY_PICKAXE
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone coal with mine coal
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone copper with mine copper
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone lapis with mine lapis
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone redstone with mine redstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone gold with mine gold
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone diamond with mine diamond
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Registered zone gilded with mine gilded_blackstone
[14:44:32] [Server thread/INFO]: [JunoPrisonCore] [TieredZones] Removing all holograms (0)
[14:44:32] [Server thread/INFO]: ๎•บ Reloading ItemsAdder Custom Entities Citizens NPCs
[14:44:32] [Server thread/INFO]: [Mythic] Reloading plugin...
[14:44:32] [Server thread/INFO]: [MythicMobs] Loading Packs...
[14:44:32] [Server thread/INFO]: [MythicMobs] Loading Items...
[14:44:32] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[14:44:32] [Server thread/INFO]: [MythicMobs] Loading Skills...
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.duration><&sp>*<&sp>20"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.duration><&sp>*<&sp>20"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage><&sp>*<&sp>0.3"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage><&sp>*<&sp>0.3"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"<modifier.damage>"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x> + 0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y> + 1.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z> + 0.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '2.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '2.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '3.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '3.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '4.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '5.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '6.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '7.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '8.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '2.5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"4"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"2"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"10"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"3"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"5"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"3"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"15"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"15"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"5"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:32] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '"7"': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:44:33] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[14:44:33] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[14:44:33] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Mechanic metaskill
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Skill: GodVulcanHelionMechanics | File: /home/container/plugins/MythicMobs/Skills/GodVulcanSkillsMEG.yml
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill GodVulcanHelionRemove
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=GodVulcanHelionRemove}
[14:44:33] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 167 mobs.
[14:44:33] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 3 vanilla mob overrides.
[14:44:33] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 0 mob stacks.
[14:44:33] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 563 skills.
[14:44:33] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 8 random spawns.
[14:44:33] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 147 mythic items.
[14:44:33] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 2 drop tables.
[14:44:33] [Server thread/INFO]: [MythicMobs] โœ“ Loaded 166 mob spawners.
[14:44:33] [Server thread/INFO]: [JunoPrisonCore] [MythicReloadedEvent] Calling Modules in 1 second ...
[14:44:33] [Server thread/INFO]: [JunoPrisonCore] [MythicReloadedEvent] Calling Modules in 1 second ...
[14:44:33] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[14:44:33] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:33] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:33] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:33] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:33] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:33] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:33] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:33] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:33] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Condition CustomCondition
[14:44:33] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition mmoCanTarget
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: mmoCanTarget{interaction=OFFENSE_ACTION}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Mechanic CustomMechanic
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Skill: Pesticide_ModeSwitch | File: /home/container/plugins/MythicMobs/Packs/PixelBarrel's Null Return/Skills/Item Skills/Pesticide_skills.yml
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelset{m=3001}
[14:44:33] [Server thread/WARN]: [MythicMobs] โœ— Configuration Error in Mechanic CustomMechanic
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Skill: Pesticide_ModeSwitch-ToHitscan | File: /home/container/plugins/MythicMobs/Packs/PixelBarrel's Null Return/Skills/Item Skills/Pesticide_skills.yml
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:44:33] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelset{m=3000}
[14:44:33] [Craft Scheduler Thread - 11 - UltimateKoth/INFO]: [UltimateKoth] Loaded 0 Loots(s).
[14:44:33] [Craft Scheduler Thread - 12 - UltimateKoth/INFO]: [UltimateKoth] Loaded 0 LootBlocks(s).
[14:44:33] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib, AdvancedEnchantments, WorldGuard, PlaceholderAPI, MythicMobs, ItemsAdder.
[14:44:34] [Server thread/INFO]: 281192
[14:44:34] [Craft Scheduler Thread - 20 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:44:34] [Craft Scheduler Thread - 20 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:44:34] [Server thread/WARN]: java.io.FileNotFoundException: https://discord.com/api/webhooks/1069188447845240974/8AHO5tCDiIxcwT7Vs0hjj30Kk9qOgIfosVNnVrsoMppNxhIiYB7bio7DHes-4CHr3Cyf
[14:44:34] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1996)
[14:44:34] [Server thread/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589)
[14:44:34] [Server thread/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224)
[14:44:34] [Server thread/WARN]:     at restartbackup-1.0-SNAPSHOT.jar//com.kamikazejamplugins.restartbackup.utils.DiscordWebhook.execute(DiscordWebhook.java:155)
[14:44:34] [Server thread/WARN]:     at restartbackup-1.0-SNAPSHOT.jar//com.kamikazejamplugins.restartbackup.RestartBackup.lambda$onEnable$0(RestartBackup.java:55)
[14:44:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:101)
[14:44:34] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[14:44:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1510)
[14:44:34] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:488)
[14:44:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1424)
[14:44:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1195)
[14:44:34] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:325)
[14:44:34] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:840)
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Registered custom economy provider 'Shards'.
[14:44:34] [Server thread/INFO]: ShardsEconomy Loaded!
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.90.1 ]================================
[14:44:34] [Server thread/INFO]: [ShopGUIPlus]  
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Shards economy enabled.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ItemsAdder.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ServerItem.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for eco.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 main menu items.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'shards' with 9 items.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 25 items.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 14 items.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'CellItems' with 17 items.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 6 items.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 4 items.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'adventures' with 5 items.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 shops with total of 80 items.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[14:44:34] [Server thread/INFO]: [ShopGUIPlus]  
[14:44:34] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[14:44:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[14:44:35] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R3) is not supported by this NBT-API Version(2.11.1) located at net.splodgebox.elitemasks.pluginapi.item.nbt.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[14:44:35] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[14:44:35] [Thread-65/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package net.splodgebox.elitemasks.pluginapi.item.nbt' seems to be outdated!
[14:44:35] [Thread-65/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.13.0'
[14:44:35] [Thread-65/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[14:44:35] [Craft Scheduler Thread - 22 - AuctionHouse/INFO]: [AuctionHouse] Updating profile player reference for: Latestion
[14:44:35] [Server thread/INFO]: [JunoPrisonCore] Activating GuardPostColl
[14:44:35] [Server thread/INFO]: [JunoPrisonCore] Activating GuardPostColl
[14:44:35] [Server thread/WARN]: [JunoPrisonCore] GuardPostColl is already active!
[14:44:35] [Craft Scheduler Thread - 30 - AuctionHouse/INFO]: AuctionHouse ยป Auto saved auction items & transactions
[14:44:38] [Server thread/INFO]: [org.mongodb.driver.connection] Opened connection [connectionId{localValue:15, serverValue:2664}] to 172.18.0.1:27017
[14:44:38] [Server thread/INFO]: Loaded JunoCells!
[14:44:50] [Server thread/INFO]: Latestion issued server command: /pickaxes give Latestion STONE_PICKAXE
[14:44:50] [Server thread/INFO]: [ChatControlRed] Note: Not sending Latestion's command to spying players because he had 'chatcontrol.bypass.spy.command' permission. Player messages with such permission are not spied on. To disable that, negate this permission (a false value if using LuckPerms). This message only shows once per 3 hours.
[14:44:53] [Server thread/INFO]: Latestion issued server command: /pickaxes give Latestion rubypickaxe
[14:44:54] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[14:44:54] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[14:44:54] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class me.mraxetv.beastcore.lib.gson.Gson
[14:44:58] [Server thread/INFO]: Latestion issued server command: /ci
[14:44:59] [Server thread/INFO]: Latestion issued server command: /ci
[14:45:00] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[14:45:03] [Server thread/INFO]: Saving Citizens... 
[14:45:03] [Server thread/INFO]: Citizens saved.
[14:45:29] [Craft Scheduler Thread - 12 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[14:45:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[14:45:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[14:45:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[14:45:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[14:45:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[14:45:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[14:45:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R3! Trying to find NMS support
[14:45:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R3' loaded!
[14:45:30] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[14:45:30] [Thread-70/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.badbones69.crazyvouchers.library.de.tr7zw.changeme.nbtapi' seems to be outdated!
[14:45:30] [Thread-70/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.2' Newest Version: 2.13.0'
[14:45:30] [Thread-70/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[14:45:30] [Craft Scheduler Thread - 20 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:45:31] [Craft Scheduler Thread - 20 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:46:00] [Server thread/INFO]: Latestion issued server command: /backpack give Latestion xenosbackpack
[14:46:16] [Server thread/INFO]: Latestion issued server command: /backpack give Latestion junobackpack1
[14:46:31] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:46:31] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:47:31] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:47:31] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:48:19] [Server thread/INFO]: Latestion issued server command: /gmc
[14:48:31] [Craft Scheduler Thread - 34 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:48:31] [Craft Scheduler Thread - 34 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:49:05] [Server thread/INFO]: Latestion issued server command: /log
[14:49:14] [Server thread/INFO]: Latestion issued server command: /spawn
[14:49:16] [Server thread/INFO]: Latestion issued server command: /https://discord.gg/xenosmc
[14:49:16] [Server thread/INFO]: *--------- Rule match (global/url) for Latestion ---------
[14:49:16] [Server thread/INFO]: MATCH: [a-zA-Z0-9\-\.\*]+\s?(\.|\*|dot|\(dot\)|-|\(\*\)|;|:|,)\s?(c(| +)o(| +)m|o(| +)r(| +)g|n(| +)e(| +)t|c(| +)z|(?<! )c(| +)o|u(| +)k|s(| +)k|b(| +)i(| +)z|m(| +)o(| +)b(| +)i|x(| +)x(| +)x|e(| +)u|(?<! )m(| +)e|i(| +)o|o(| +)n(| +)l(| +)i(| +)n(| +)e|x(| +)y(| +)z|f(| +)r|b(| +)e|d(| +)e|c(| +)a|a(| +)l|a(| +)i|d(| +)e(| +)v|a(| +)p(| +)p|(?<! )i(| +)n|(?<! )i(| +)s|g(| +)g|(?<! )t(| +)o|p(| +)h|n(| +)l|(?<! )i(| +)d|i(| +)n(| +)c|(?<! )u(| +)s|p(| +)w|(?<! )p(| +)r(| +)o|t(| +)v|c(| +)x|m(| +)x|f(| +)m|c(| +)c|(?<! )v(| +)i(| +)p|(?<! )f(| +)u(| +)n|i(| +)c(| +)u)\b
[14:49:16] [Server thread/INFO]: CATCH: /https://discord.gg/xenosmc
[14:49:17] [Server thread/INFO]: Latestion issued server command: /https://discord.gg/xenosmc
[14:49:17] [Server thread/INFO]: *--------- Rule match (global/url) for Latestion ---------
[14:49:17] [Server thread/INFO]: MATCH: [a-zA-Z0-9\-\.\*]+\s?(\.|\*|dot|\(dot\)|-|\(\*\)|;|:|,)\s?(c(| +)o(| +)m|o(| +)r(| +)g|n(| +)e(| +)t|c(| +)z|(?<! )c(| +)o|u(| +)k|s(| +)k|b(| +)i(| +)z|m(| +)o(| +)b(| +)i|x(| +)x(| +)x|e(| +)u|(?<! )m(| +)e|i(| +)o|o(| +)n(| +)l(| +)i(| +)n(| +)e|x(| +)y(| +)z|f(| +)r|b(| +)e|d(| +)e|c(| +)a|a(| +)l|a(| +)i|d(| +)e(| +)v|a(| +)p(| +)p|(?<! )i(| +)n|(?<! )i(| +)s|g(| +)g|(?<! )t(| +)o|p(| +)h|n(| +)l|(?<! )i(| +)d|i(| +)n(| +)c|(?<! )u(| +)s|p(| +)w|(?<! )p(| +)r(| +)o|t(| +)v|c(| +)x|m(| +)x|f(| +)m|c(| +)c|(?<! )v(| +)i(| +)p|(?<! )f(| +)u(| +)n|i(| +)c(| +)u)\b
[14:49:17] [Server thread/INFO]: CATCH: /https://discord.gg/xenosmc
[14:49:18] [Server thread/INFO]: Latestion issued server command: /https://discord.gg/xenosmc
[14:49:18] [Server thread/INFO]: *--------- Rule match (global/url) for Latestion ---------
[14:49:18] [Server thread/INFO]: MATCH: [a-zA-Z0-9\-\.\*]+\s?(\.|\*|dot|\(dot\)|-|\(\*\)|;|:|,)\s?(c(| +)o(| +)m|o(| +)r(| +)g|n(| +)e(| +)t|c(| +)z|(?<! )c(| +)o|u(| +)k|s(| +)k|b(| +)i(| +)z|m(| +)o(| +)b(| +)i|x(| +)x(| +)x|e(| +)u|(?<! )m(| +)e|i(| +)o|o(| +)n(| +)l(| +)i(| +)n(| +)e|x(| +)y(| +)z|f(| +)r|b(| +)e|d(| +)e|c(| +)a|a(| +)l|a(| +)i|d(| +)e(| +)v|a(| +)p(| +)p|(?<! )i(| +)n|(?<! )i(| +)s|g(| +)g|(?<! )t(| +)o|p(| +)h|n(| +)l|(?<! )i(| +)d|i(| +)n(| +)c|(?<! )u(| +)s|p(| +)w|(?<! )p(| +)r(| +)o|t(| +)v|c(| +)x|m(| +)x|f(| +)m|c(| +)c|(?<! )v(| +)i(| +)p|(?<! )f(| +)u(| +)n|i(| +)c(| +)u)\b
[14:49:18] [Server thread/INFO]: CATCH: /https://discord.gg/xenosmc
[14:49:18] [Server thread/INFO]: Latestion issued server command: /https://discord.gg/xenosmc
[14:49:18] [Server thread/INFO]: *--------- Rule match (global/url) for Latestion ---------
[14:49:18] [Server thread/INFO]: MATCH: [a-zA-Z0-9\-\.\*]+\s?(\.|\*|dot|\(dot\)|-|\(\*\)|;|:|,)\s?(c(| +)o(| +)m|o(| +)r(| +)g|n(| +)e(| +)t|c(| +)z|(?<! )c(| +)o|u(| +)k|s(| +)k|b(| +)i(| +)z|m(| +)o(| +)b(| +)i|x(| +)x(| +)x|e(| +)u|(?<! )m(| +)e|i(| +)o|o(| +)n(| +)l(| +)i(| +)n(| +)e|x(| +)y(| +)z|f(| +)r|b(| +)e|d(| +)e|c(| +)a|a(| +)l|a(| +)i|d(| +)e(| +)v|a(| +)p(| +)p|(?<! )i(| +)n|(?<! )i(| +)s|g(| +)g|(?<! )t(| +)o|p(| +)h|n(| +)l|(?<! )i(| +)d|i(| +)n(| +)c|(?<! )u(| +)s|p(| +)w|(?<! )p(| +)r(| +)o|t(| +)v|c(| +)x|m(| +)x|f(| +)m|c(| +)c|(?<! )v(| +)i(| +)p|(?<! )f(| +)u(| +)n|i(| +)c(| +)u)\b
[14:49:18] [Server thread/INFO]: CATCH: /https://discord.gg/xenosmc
[14:49:18] [Server thread/INFO]: Latestion issued server command: /https://discord.gg/xenosmc
[14:49:18] [Server thread/INFO]: *--------- Rule match (global/url) for Latestion ---------
[14:49:18] [Server thread/INFO]: MATCH: [a-zA-Z0-9\-\.\*]+\s?(\.|\*|dot|\(dot\)|-|\(\*\)|;|:|,)\s?(c(| +)o(| +)m|o(| +)r(| +)g|n(| +)e(| +)t|c(| +)z|(?<! )c(| +)o|u(| +)k|s(| +)k|b(| +)i(| +)z|m(| +)o(| +)b(| +)i|x(| +)x(| +)x|e(| +)u|(?<! )m(| +)e|i(| +)o|o(| +)n(| +)l(| +)i(| +)n(| +)e|x(| +)y(| +)z|f(| +)r|b(| +)e|d(| +)e|c(| +)a|a(| +)l|a(| +)i|d(| +)e(| +)v|a(| +)p(| +)p|(?<! )i(| +)n|(?<! )i(| +)s|g(| +)g|(?<! )t(| +)o|p(| +)h|n(| +)l|(?<! )i(| +)d|i(| +)n(| +)c|(?<! )u(| +)s|p(| +)w|(?<! )p(| +)r(| +)o|t(| +)v|c(| +)x|m(| +)x|f(| +)m|c(| +)c|(?<! )v(| +)i(| +)p|(?<! )f(| +)u(| +)n|i(| +)c(| +)u)\b
[14:49:18] [Server thread/INFO]: CATCH: /https://discord.gg/xenosmc
[14:49:18] [Server thread/INFO]: Latestion issued server command: /https://discord.gg/xenosmc
[14:49:18] [Server thread/INFO]: *--------- Rule match (global/url) for Latestion ---------
[14:49:18] [Server thread/INFO]: MATCH: [a-zA-Z0-9\-\.\*]+\s?(\.|\*|dot|\(dot\)|-|\(\*\)|;|:|,)\s?(c(| +)o(| +)m|o(| +)r(| +)g|n(| +)e(| +)t|c(| +)z|(?<! )c(| +)o|u(| +)k|s(| +)k|b(| +)i(| +)z|m(| +)o(| +)b(| +)i|x(| +)x(| +)x|e(| +)u|(?<! )m(| +)e|i(| +)o|o(| +)n(| +)l(| +)i(| +)n(| +)e|x(| +)y(| +)z|f(| +)r|b(| +)e|d(| +)e|c(| +)a|a(| +)l|a(| +)i|d(| +)e(| +)v|a(| +)p(| +)p|(?<! )i(| +)n|(?<! )i(| +)s|g(| +)g|(?<! )t(| +)o|p(| +)h|n(| +)l|(?<! )i(| +)d|i(| +)n(| +)c|(?<! )u(| +)s|p(| +)w|(?<! )p(| +)r(| +)o|t(| +)v|c(| +)x|m(| +)x|f(| +)m|c(| +)c|(?<! )v(| +)i(| +)p|(?<! )f(| +)u(| +)n|i(| +)c(| +)u)\b
[14:49:18] [Server thread/INFO]: CATCH: /https://discord.gg/xenosmc
[14:49:22] [Server thread/INFO]: Latestion issued server command: /npc command
[14:49:26] [Server thread/INFO]: Latestion issued server command: /npc sel
[14:49:29] [Server thread/INFO]: Latestion issued server command: /npc command
[14:49:29] [Craft Scheduler Thread - 20 - Kyra/INFO]: [Kyra] Saved all data
[14:49:31] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[14:49:31] [Craft Scheduler Thread - 37 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[14:49:39] [Server thread/INFO]: Latestion issued server command: /npc cmd remove 2
[14:49:48] [Server thread/INFO]: Latestion issued server command: /npc command
[14:50:00] [Server thread/INFO]: Saving Citizens... 
[14:50:00] [Server thread/INFO]: Citizens saved.