Paste #108955: latest.log

Date: 2023/04/17 16:24:29 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[18:48:06] [ServerMain/INFO]: Building unoptimized datafixer
[18:48:08] [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'
[18:48:10] [ServerMain/INFO]: Loaded 7 recipes
[18:48:11] [Server thread/INFO]: Starting minecraft server version 1.19.3
[18:48:11] [Server thread/INFO]: Loading properties
[18:48:12] [Server thread/INFO]: This server is running Paper version git-Paper-"155aa36" (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 155aa36)
[18:48:12] [Server thread/INFO]: Server Ping Player Sample Count: 12
[18:48:12] [Server thread/INFO]: Using 4 threads for Netty based IO
[18:48:12] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and gen parallelism of 2 threads
[18:48:12] [Server thread/INFO]: Default game type: SURVIVAL
[18:48:12] [Server thread/INFO]: Generating keypair
[18:48:12] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25570
[18:48:12] [Server thread/INFO]: Using epoll channel type
[18:48:12] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[18:48:12] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[18:48:13] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[18:48:19] [Server thread/WARN]: Legacy plugin VoidWorld v1.0 does not specify an api-version.
[18:48:19] [Server thread/WARN]: Legacy plugin CosmeticTitles v3.0.0 does not specify an api-version.
[18:48:19] [Server thread/WARN]: Legacy plugin MVdWPlaceholderAPI v3.1.1 does not specify an api-version.
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loading 4 libraries... please wait
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/container/libraries/org/eclipse/persistence/javax.persistence/2.1.0/javax.persistence-2.1.0.jar
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/container/libraries/com/j256/ormlite/ormlite-core/5.0/ormlite-core-5.0.jar
[18:48:19] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/container/libraries/com/j256/ormlite/ormlite-jdbc/5.0/ormlite-jdbc-5.0.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loading 1 libraries... please wait
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [AntiPopup] Loaded library /home/container/libraries/dev/dejvokep/boosted-yaml-spigot/1.3/boosted-yaml-spigot-1.3.jar
[18:48:20] [Server thread/WARN]: [RoseStacker] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [HSSlayer] Loading 1 libraries... please wait
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [HSSlayer] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/3.1.2/caffeine-3.1.2.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [HSSlayer] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.27.0/checker-qual-3.27.0.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [HSSlayer] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loading 2 libraries... please wait
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/inject/guice/5.1.0/guice-5.1.0.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/javax/inject/javax.inject/1/javax.inject-1.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/guava/30.1-jre/guava-30.1-jre.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[18:48:20] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[18:48:21] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_19_R2
[18:48:21] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 436 ms to scan 1 urls, producing 1248 keys and 3924 values
[18:48:21] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_19_R2
[18:48:22] [Server thread/INFO]: [SpigotLibraryLoader] [RNodes] Loading 1 libraries... please wait
[18:48:22] [Server thread/INFO]: [SpigotLibraryLoader] [RNodes] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/3.1.2/caffeine-3.1.2.jar
[18:48:22] [Server thread/INFO]: [SpigotLibraryLoader] [RNodes] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.27.0/checker-qual-3.27.0.jar
[18:48:22] [Server thread/INFO]: [SpigotLibraryLoader] [RNodes] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar
[18:48:22] [Server thread/INFO]: [SpigotLibraryLoader] [HSMiner] Loading 1 libraries... please wait
[18:48:22] [Server thread/INFO]: [SpigotLibraryLoader] [HSMiner] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/3.1.2/caffeine-3.1.2.jar
[18:48:22] [Server thread/INFO]: [SpigotLibraryLoader] [HSMiner] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.27.0/checker-qual-3.27.0.jar
[18:48:22] [Server thread/INFO]: [SpigotLibraryLoader] [HSMiner] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.16/error_prone_annotations-2.16.jar
[18:48:22] [Server thread/INFO]: [SlotBot] Loading server plugin SlotBot v1.1.7
[18:48:22] [Server thread/INFO]: [TubeTils] Loading server plugin TubeTils v1.0.6
[18:48:22] [Server thread/INFO]: [VoidWorld] Loading server plugin VoidWorld v1.0
[18:48:22] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[18:48:22] [Server thread/INFO]: [CommandToItem] Loading server plugin CommandToItem v${version}
[18:48:22] [Server thread/INFO]: [AutoLapis] Loading server plugin AutoLapis v1.2.1
[18:48:22] [Server thread/INFO]: [DisableRecipe] Loading server plugin DisableRecipe v1.4.1
[18:48:22] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.6.2.239-Beta
[18:48:22] [Server thread/INFO]: [CombatPlus] Loading server plugin CombatPlus v1.6.7
[18:48:22] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.2
[18:48:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[18:48:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[18:48:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[18:48:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'SlotBot' to create a bStats instance!
[18:48:22] [Server thread/INFO]: [EZColors] Loading server plugin EZColors v2.2.2
[18:48:22] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.62
[18:48:22] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[18:48:22] [Server thread/INFO]: [CosmeticTitles] Loading server plugin CosmeticTitles v3.0.0
[18:48:22] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[18:48:22] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.24
[18:48:22] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-b630
[18:48:22] [Thread-9/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[18:48:24] [Server thread/INFO]: [MVdWPlaceholderAPI] Loading server plugin MVdWPlaceholderAPI v3.1.1
[18:48:24] [Server thread/INFO]: [HSScrolls] Loading server plugin HSScrolls v1.0.7-TEST-1
[18:48:24] [Server thread/INFO]: [OreRegenerator] Loading server plugin OreRegenerator v2.0.5-BETA
[18:48:24] [Server thread/INFO]: [FeatherBoard] Loading server plugin FeatherBoard v5.1.0
[18:48:24] [Server thread/INFO]: [AntiPopup] Loading server plugin AntiPopup v5.3
[18:48:24] [Server thread/INFO]: [AntiPopup] Loaded PacketEvents.
[18:48:24] [Server thread/INFO]: [HSWarps] Loading server plugin HSWarps v1.0.8-STABLE-1
[18:48:24] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[18:48:24] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.11.1
[18:48:24] [Server thread/INFO]: [ChatItem] Loading server plugin ChatItem v2.4.6
[18:48:24] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.14
[18:48:24] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.19.7
[18:48:24] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.29
[18:48:24] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.17.0
[18:48:24] [Server thread/INFO]: [DeluxeCoinflip] Loading server plugin DeluxeCoinflip v2.6.2
[18:48:24] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.18.6.2
[18:48:24] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.11.1
[18:48:24] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.0-SNAPSHOT-401;5cd9616
[18:48:26] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@e42b229]
[18:48:26] [Server thread/INFO]: [KitPreview] Loading server plugin KitPreview v2.4
[18:48:26] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.19.7
[18:48:26] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.2.1
[18:48:26] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8-beta-01+cbb2ba7
[18:48:26] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v3.3.2
[18:48:26] [Server thread/INFO]: [EliteBosses] Loading server plugin EliteBosses v1.5.1
[18:48:26] [Server thread/INFO]: [BeastWithdraw] Loading server plugin BeastWithdraw v2.21
[18:48:26] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.19.7
[18:48:26] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[18:48:26] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.1
[18:48:26] [Server thread/INFO]: [EssentialsDiscord] Loading server plugin EssentialsDiscord v2.19.7
[18:48:26] [Server thread/INFO]: [SimpleClans] Loading server plugin SimpleClans v2.18.1-43da5bd
[18:48:26] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.30-SNAPSHOT (build 2947)
[18:48:26] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.3.1
[18:48:26] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker
[18:48:26] [Server thread/INFO]: [IridiumSkyblock] Loading server plugin IridiumSkyblock v3.2.10-hotfix-1.2
[18:48:27] [Server thread/INFO]: [HSSlayer] Loading server plugin HSSlayer v1.0
[18:48:27] [Server thread/INFO]: [HSDave] Loading server plugin HSDave v1.0.2-STABLE-1
[18:48:27] [Server thread/INFO]: [HSIslandFarming] Loading server plugin HSIslandFarming v1.0.8-STABLE-1
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading server plugin CombatLogX v11.1.0.8.1056
[18:48:27] [Server thread/INFO]: [CombatLogX] Configuration version is recent, no major changes necessary.
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansions...
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/BSkyBlock Compatibility.jar' because a plugin dependency was not loaded: BentoBox
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'IridiumSkyblock Compatibility v16.3'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Force Field v17.1'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskHomes Compatibility.jar' because a plugin dependency was not loaded: HuskHomes
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/uSkyBlock Compatibility.jar' because a plugin dependency was not loaded: uSkyBlock
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/GriefDefender Compatibility.jar' because a plugin dependency was not loaded: GriefDefender
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/RedProtect Compatibility.jar' because a plugin dependency was not loaded: RedProtect
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Death Effects v16.4'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'EssentialsX Compatibility v16.3'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CrackShot Compatibility.jar' because a plugin dependency was not loaded: CrackShot
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/FabledSkyBlock Compatibility.jar' because a plugin dependency was not loaded: FabledSkyBlock
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'FeatherBoard Compatibility v16.3'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/PreciousStones Compatibility.jar' because a plugin dependency was not loaded: PreciousStones
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Citizens Compatibility v16.15'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/ASkyBlock Compatibility.jar' because a plugin dependency was not loaded: ASkyBlock
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Boss Bar v16.9'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Loot Protection v16.6'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/MarriageMaster Compatibility.jar' because a plugin dependency was not loaded: MarriageMaster
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Konquest Compatibility.jar' because a plugin dependency was not loaded: Konquest
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'PlaceholderAPI Compatibility v16.9'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/MythicMobs Compatibility.jar' because a plugin dependency was not loaded: MythicMobs
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Towny Compatibility.jar' because a plugin dependency was not loaded: Towny
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Cheat Prevention v16.23'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Scoreboard v16.12'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Action Bar v17.0'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Logger v16.3'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/ProtectionStones Compatibility.jar' because a plugin dependency was not loaded: ProtectionStones
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Lands Compatibility.jar' because a plugin dependency was not loaded: Lands
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'SuperVanish/PremiumVanish Compatibility v16.2'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CrashClaim Compatibility.jar' because a plugin dependency was not loaded: CrashClaim
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/CMI Compatibility.jar' because a plugin dependency was not loaded: CMI
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/PlayerParticles Compatibility.jar' because a plugin dependency was not loaded: PlayerParticles
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/VanishNoPacket Compatibility.jar' because a plugin dependency was not loaded: VanishNoPacket
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/Residence Compatibility.jar' because a plugin dependency was not loaded: Residence
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Newbie Helper v16.12'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/LibsDisguises Compatibility.jar' because a plugin dependency was not loaded: LibsDisguises
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskSync Compatibility.jar' because a plugin dependency was not loaded: HuskSync
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Rewards v16.8'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/iDisguise Compatibility.jar' because a plugin dependency was not loaded: iDisguise
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'Glowing v16.5'...
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/KingdomsX Compatibility.jar' because a plugin dependency was not loaded: Kingdoms
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/HuskTowns Compatibility.jar' because a plugin dependency was not loaded: HuskTowns
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/UltimateClaims Compatibility.jar' because a plugin dependency was not loaded: UltimateClaims
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/GriefPrevention Compatibility.jar' because a plugin dependency was not loaded: GriefPrevention
[18:48:27] [Server thread/INFO]: [CombatLogX]  
[18:48:27] [Server thread/INFO]: [CombatLogX] Loading expansion 'WorldGuard Compatibility v16.5'...
[18:48:27] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.8-beta-01+cbb2ba7
[18:48:28] [Server thread/INFO]: [CombatLogX]  
[18:48:28] [Server thread/INFO]: [CombatLogX] Loading expansion 'Damage Tagger v16.7'...
[18:48:28] [Server thread/INFO]: [CombatLogX]  
[18:48:28] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/SuperiorSkyblock Compatibility.jar' because a plugin dependency was not loaded: SuperiorSkyblock2
[18:48:28] [Server thread/INFO]: [CombatLogX]  
[18:48:28] [Server thread/INFO]: [CombatLogX] Loading expansion 'Factions Compatibility v16.3'...
[18:48:28] [Server thread/INFO]: [CombatLogX]  
[18:48:28] [Server thread/WARN]: [CombatLogX] Failed to load expansion 'plugins/CombatLogX/expansions/AngelChest Compatibility.jar' because a plugin dependency was not loaded: AngelChest
[18:48:28] [Server thread/INFO]: [CombatLogX]  
[18:48:28] [Server thread/INFO]: [CombatLogX] Successfully loaded 20 expansions.
[18:48:28] [Server thread/INFO]: [VoidChest-1.11.0] Loading server plugin VoidChest v1.11.0
[18:48:28] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.0.2
[18:48:28] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[18:48:28] [Server thread/INFO]: [HSAutoReplant] Loading server plugin HSAutoReplant v1.0.5-STABLE-1
[18:48:28] [Server thread/INFO]: [HSAdventure] Loading server plugin HSAdventure v1.0.7-BETA-1
[18:48:28] [Server thread/INFO]: [KOTH] Loading server plugin KOTH v6.1
[18:48:28] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.4.1-r6
[18:48:28] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v3.8.3
[18:48:28] [Server thread/INFO]: [SCore] Loading server plugin SCore v3.9.60
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.16.9.6
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Generate Functional Recipes
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[18:48:28] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[18:48:28] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.6.0
[18:48:28] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.9.6
[18:48:28] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.6.0
[18:48:28] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[18:48:28] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[18:48:28] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[18:48:28] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[18:48:28] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[18:48:28] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[18:48:28] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[18:48:28] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[18:48:28] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[18:48:28] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v5.9.60
[18:48:28] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.82.0
[18:48:28] [Server thread/INFO]: [EliteMasks] Loading server plugin EliteMasks v1.5.6
[18:48:28] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.13.3-5a28efa
[18:48:28] [Server thread/INFO]: [RNodes] Loading server plugin RNodes v1.0
[18:48:28] [Server thread/INFO]: [HSMiner] Loading server plugin HSMiner v1.0
[18:48:28] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[18:48:28] [Server thread/INFO]: [TubeTils] Enabling TubeTils v1.0.6
[18:48:28] [Server thread/INFO]: [TubeTils] The Plugin will be activated ...
[18:48:28] [Server thread/INFO]: [TubeTils] Set Instances ...
[18:48:28] [Server thread/INFO]: [TubeTils] Setting Instances done!
[18:48:28] [Server thread/INFO]: [TubeTils] The plugin was successfully activated!
[18:48:28] [Server thread/INFO]: [VoidWorld] Enabling VoidWorld v1.0*
[18:48:28] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.6.2.239-Beta
[18:48:29] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.62
[18:48:30] [Server thread/INFO]:         __    
[18:48:30] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.62
[18:48:30] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[18:48:30] [Server thread/INFO]: 
[18:48:30] [Server thread/INFO]: [LuckPerms] Loading configuration...
[18:48:31] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[18:48:32] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[18:48:32] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[18:48:33] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3826ms)
[18:48:33] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.24
[18:48:33] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b630
[18:48:33] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[18:48:33] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[18:48:33] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[18:48:33] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[18:48:33] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[18:48:33] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.0-SNAPSHOT-401;5cd9616
[18:48:33] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[18:48:33] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[18:48:33] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[18:48:33] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[18:48:33] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightFaweAdapter as the Bukkit adapter
[18:48:34] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.9.6
[18:48:34] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.19.3
[18:48:34] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.9.6
[18:48:34] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[18:48:35] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[18:48:35] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[18:48:35] [Server thread/INFO]: [WolfyUtilities]  - ExecutableItems
[18:48:35] [Server thread/INFO]: [WolfyUtilities]  - ItemsAdder
[18:48:35] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[18:48:35] [Server thread/INFO]: [WolfyUtilities] Register API references
[18:48:35] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[18:48:35] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[18:48:35] [Server thread/INFO]: Preparing level "world"
[18:48:35] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[18:48:35] [Server thread/INFO]: Time elapsed: 153 ms
[18:48:35] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[18:48:35] [Server thread/INFO]: Time elapsed: 64 ms
[18:48:35] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[18:48:35] [Server thread/INFO]: Time elapsed: 29 ms
[18:48:35] [Server thread/INFO]: [SlotBot] Enabling SlotBot v1.1.7
[18:48:36] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[18:48:36] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0) located at net.ivenomx.slotbot.api.item.nbt.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[18:48:36] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[18:48:36] [Server thread/INFO]: [SlotBot] Loaded 38 rewards
[18:48:36] [Server thread/INFO]: [SlotBot] Loaded 3 high roller rewards
[18:48:36] [Thread-12/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package net.ivenomx.slotbot.api.item.nbt' seems to be outdated!
[18:48:36] [Thread-12/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.2'
[18:48:36] [Thread-12/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)!
[18:48:36] [Server thread/INFO]: [SlotBot] Loaded 18 credit shop rewards
[18:48:36] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[18:48:36] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[18:48:36] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[18:48:36] [Server thread/INFO]: [CommandToItem] Enabling CommandToItem v${version}
[18:48:36] [Server thread/INFO]: [CommandToItem] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[18:48:36] [Server thread/INFO]: [CommandToItem] Your server is running version v1_19_R2.
[18:48:36] [Server thread/INFO]: [AutoLapis] Enabling AutoLapis v1.2.1
[18:48:36] [Server thread/INFO]: [DisableRecipe] Enabling DisableRecipe v1.4.1
[18:48:36] [Server thread/INFO]: [CombatPlus] Enabling CombatPlus v1.6.7
[18:48:36] [Server thread/INFO]:  
[18:48:36] [Server thread/INFO]: Combat Plus v1.6.7
[18:48:36] [Server thread/INFO]:  
[18:48:36] [Server thread/INFO]:   Author: Nik
[18:48:36] [Server thread/INFO]:  
[18:48:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: combatplus [1.6.7]
[18:48:36] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.2
[18:48:36] [Server thread/INFO]: [NBTAPI] Adding listeners...
[18:48:36] [Server thread/INFO]: [NBTAPI] Gson:
[18:48:36] [Server thread/INFO]: [NBTAPI] Checking bindings...
[18:48:36] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[18:48:36] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[18:48:36] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[18:48:37] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[18:48:37] [Server thread/INFO]: [EZColors] Enabling EZColors v2.2.2
[18:48:37] [Server thread/INFO]: EZColors ยป  Successfully downloaded 12 languages from the cloud!
[18:48:37] [Server thread/INFO]: EZColors ยป  Loading EZColors v2.2.2!
[18:48:37] [Server thread/INFO]: EZColors ยป  Found a compatible version. Hooking into V1_19_R2!
[18:48:37] [Server thread/INFO]: EZColors ยป  Using HIGHEST as the Chat Listener.
[18:48:37] [Server thread/INFO]: EZColors ยป  Found PlaceholderAPI. Loading hook!
[18:48:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ezcolors [1.0.0]
[18:48:38] [Server thread/INFO]: EZColors ยป  Successfully Loaded EZColors v2.2.2 in 904ms!
[18:48:38] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[18:48:38] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[18:48:38] [Server thread/INFO]: [ClearLag] Loading modules...
[18:48:38] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R2.MinecraftServer)
[18:48:38] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[18:48:38] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[18:48:38] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[18:48:38] [Thread-13/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Enabling CosmeticTitles v3.0.0*
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Initializing messages
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-cleared'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-exists'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-created'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-does-not-exist'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-deleted'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'no-permission'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-selected'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-help'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-edited-set-prefix'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-edited-cleared-prefix'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-edited-set-suffix'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-edited-cleared-suffix'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-edited-set-permission'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-edited-cleared-permission'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Loaded message 'title-edit-sync-warning'
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Initializing backend
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Database configuration loaded
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Attempting to find SQLite driver...
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Attempting to connect to SQLite database...
[18:48:38] [Thread-13/INFO]: [ClearLag] No updates found!
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Connected to database...
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Initializing listeners
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Initializing commands
[18:48:38] [Server thread/INFO]: [CosmeticTitles] Initializing subcommands
[18:48:38] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[18:48:38] [Server thread/INFO]: [BuycraftX] Validating your server key...
[18:48:38] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[18:48:38] [Server thread/INFO]: [MVdWPlaceholderAPI] Enabling MVdWPlaceholderAPI v3.1.1*
[18:48:38] [Server thread/INFO]: [MVdWPlaceholderAPI] Initializing placeholders ...
[18:48:38] [Server thread/INFO]: [MVdWPlaceholderAPI] Sending metrics ...
[18:48:38] [Server thread/INFO]: [HSScrolls] Enabling HSScrolls v1.0.7-TEST-1
[18:48:38] [Server thread/INFO]: [OreRegenerator] Enabling OreRegenerator v2.0.5-BETA
[18:48:39] [Server thread/INFO]: [OreRegenerator] [ACF] Enabled Asynchronous Tab Completion Support!
[18:48:39] [Server thread/INFO]: [FeatherBoard] Enabling FeatherBoard v5.1.0
[18:48:39] [Server thread/INFO]: [FeatherBoard] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[18:48:39] [Server thread/INFO]: [FeatherBoard] Plugin: FeatherBoard v5.1.0
[18:48:39] [Server thread/INFO]: [FeatherBoard] Framework version: 2021-12
[18:48:39] [Server thread/INFO]: [FeatherBoard] Author: Maximvdw (Maxim Van de Wynckel)
[18:48:39] [Server thread/INFO]: [FeatherBoard] Site: https://www.mvdw-software.com/
[18:48:39] [Server thread/INFO]: [FeatherBoard] Copyright: 2013-2021 All Rights Received
[18:48:39] [Server thread/INFO]: [FeatherBoard] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[18:48:39] [Server thread/INFO]: [FeatherBoard] Loading configuration ...
[18:48:39] [Server thread/INFO]: [FeatherBoard] Loading messages ...
[18:48:39] [Server thread/INFO]: [FeatherBoard] Loading language file: lang_en
[18:48:39] [Server thread/INFO]: [FeatherBoard] Checking for module updates ...
[18:48:39] [Server thread/INFO]: [FeatherBoard] Fetching modules from server ...
[18:48:40] [Server thread/INFO]: [FeatherBoard] Loading custom effect 'example3' ...
[18:48:40] [Server thread/INFO]: [FeatherBoard] Creating new custom effect: example3
[18:48:40] [Server thread/INFO]: [FeatherBoard] Loading custom effect 'example2' ...
[18:48:40] [Server thread/INFO]: [FeatherBoard] Creating new custom effect: example2
[18:48:40] [Server thread/INFO]: [FeatherBoard] Loading custom effect 'example1' ...
[18:48:40] [Server thread/INFO]: [FeatherBoard] Creating new custom effect: example1
[18:48:40] [Server thread/INFO]: [FeatherBoard] Using OPTIMAL as the update strategy
[18:48:40] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'default' ...
[18:48:40] [Server thread/INFO]: [FeatherBoard] Added 'PERMISSION' as the default assigning method
[18:48:40] [Server thread/INFO]: [FeatherBoard] A new update for FeatherBoard is available for download on Spigot!
[18:48:41] [Server thread/INFO]: [FeatherBoard] Toggle persistence is disabled!
[18:48:41] [Server thread/INFO]: [FeatherBoard] Adding command 'featherboard'
[18:48:41] [Server thread/INFO]: [AntiPopup] Enabling AntiPopup v5.3
[18:48:41] [Server thread/INFO]: [AntiPopup] Config enabled.
[18:48:41] [Server thread/INFO]: [AntiPopup] Initiated PacketEvents.
[18:48:41] [Server thread/INFO]: [AntiPopup] Commands registered.
[18:48:41] [Server thread/INFO]: [AntiPopup] Logger filter enabled.
[18:48:41] [Server thread/INFO]: [HSWarps] Enabling HSWarps v1.0.8-STABLE-1
[18:48:41] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.11.1
[18:48:41] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[18:48:41] [Server thread/INFO]: [EpicRename] Version: 3.11.1 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[18:48:41] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[18:48:41] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[18:48:41] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[18:48:41] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[18:48:41] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.6
[18:48:41] [Server thread/INFO]: [ChatItem] Detected server version: v1_19
[18:48:41] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[18:48:41] [Server thread/INFO]: [ChatItem] Loaded 4 getter for base components.
[18:48:41] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[18:48:41] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[18:48:41] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.14
[18:48:41] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[18:48:41] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[18:48:41] [Server thread/INFO]: [PlayerVaults] Loaded! Took 381ms
[18:48:41] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[18:48:41] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[18:48:42] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[18:48:42] [Server thread/INFO]: [Essentials] No kits found to migrate.
[18:48:42] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[18:48:42] [Server thread/INFO]: [Essentials] Using locale en_US
[18:48:42] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[18:48:42] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[18:48:42] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[18:48:42] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[18:48:42] [Server thread/INFO]: [spark] Enabling spark v1.10.29
[18:48:42] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[18:48:42] [Server thread/INFO]: [spark] Starting background profiler...
[18:48:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.29]
[18:48:43] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[18:48:43] [Server thread/INFO]: [MVdWPlaceholderAPI] spark added custom placeholder {spark_*}
[18:48:43] [Server thread/INFO]: [spark] Registered MVdWPlaceholderAPI placeholders
[18:48:43] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[18:48:43] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[18:48:43] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[18:48:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] Enabling DeluxeCoinflip v2.6.2
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] 
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip]  __ __    DeluxeCoinflip v2.6.2
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] /  |_     Author: ItsLewizzz
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] \_ |      (c) Lewis D 2021. All rights reserved.
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] 
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] Registered economy provider 'Vault' using Vault plugin.
[18:48:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxecoinflip [2.6.2]
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] Hooked into PlaceholderAPI successfully
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] 
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] Successfully loaded in 41ms
[18:48:43] [Server thread/INFO]: [DeluxeCoinflip] 
[18:48:43] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.18.6.2
[18:48:43] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.6.2 Plugin Loading...
[18:48:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: commandpanels [1.0.0]
[18:48:44] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.6.2 Plugin Loaded!
[18:48:44] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.11.1
[18:48:44] [Server thread/INFO]: [LiteBans] Using default database drivers (version:7).
[18:48:44] [Server thread/INFO]: [LiteBans] Using system locale (en)
[18:48:44] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[18:48:44] [Server thread/INFO]: [LiteBans] Loading SQL driver: mariadb 3.0.7 (org.mariadb.jdbc.Driver)
[18:48:44] [Server thread/INFO]: [LiteBans] Connecting to database...
[18:48:44] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[18:48:44] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[18:48:44] [Server thread/INFO]: [LiteBans] Connected to MariaDB database successfully (115.8 ms).
[18:48:44] [Server thread/INFO]: [LiteBans] [Sync] Server name: litebans
[18:48:44] [Server thread/INFO]: [LiteBans] [Sync] Server UUID: 133d7d22b9314afba46ef65a0172fb05 <1>
[18:48:44] [Server thread/INFO]: [LiteBans] Database connection fully initialized (160.6 ms).
[18:48:44] [Server thread/INFO]: [LiteBans] v2.11.1 enabled. Startup took 415 ms.
[18:48:44] [Server thread/INFO]: [KitPreview] Enabling KitPreview v2.4
[18:48:44] [Server thread/INFO]: [KitPreview] You config/lang is updating!
[18:48:44] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.19.7
[18:48:44] [Server thread/INFO]: [EssentialsChat] Secure signed chat and previews are enabled.
[18:48:44] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[18:48:44] [Server thread/INFO]: [TAB] Enabling TAB v3.2.1
[18:48:44] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[18:48:44] [Server thread/INFO]: [TAB] Loaded NMS hook in 31ms
[18:48:44] [Server thread/INFO]: [TAB] Enabled in 102ms
[18:48:44] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7
[18:48:45] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[18:48:45] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[18:48:45] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[18:48:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[18:48:45] [Server thread/INFO]: [WorldGuard] Loading region data...
[18:48:45] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.3.2
[18:48:45] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[18:48:45] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[18:48:45] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_19_R2
[18:48:45] [Server thread/INFO]: [AuctionHouse] Enabled HeadDatabase support
[18:48:45] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[18:48:45] [Server thread/INFO]: [AuctionHouse] Loaded 183 listings
[18:48:45] [Server thread/INFO]: [EliteBosses] Enabling EliteBosses v1.5.1
[18:48:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[18:48:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[18:48:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[18:48:45] [Server thread/INFO]: EliteBosses: Factions Support Success
[18:48:45] [Server thread/INFO]: EliteBosses: Factions Support Disabled
[18:48:45] [Server thread/INFO]: EliteBosses: Skyblock Support Failed
[18:48:45] [Server thread/INFO]: EliteBosses: WorldGuard Support Success
[18:48:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: elitebosses [1.0.0]
[18:48:45] [Thread-16/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package net.splodgebox.elitebosses.pluginapi.item.nbt' seems to be outdated!
[18:48:45] [Thread-16/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[18:48:45] [Thread-16/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)!
[18:48:45] [Server thread/INFO]: [EliteBosses] [ACF] Enabled Asynchronous Tab Completion Support!
[18:48:45] [Server thread/INFO]: [BeastWithdraw] Enabling BeastWithdraw v2.21
[18:48:45] [Server thread/INFO]: [BeastWithdraw] /XpBottle command aliases [bottle] are registered.
[18:48:45] [Server thread/INFO]: [BeastWithdraw] /bWithdraw command aliases [withdraw] are registered.
[18:48:46] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[18:48:46] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0-SNAPSHOT) located at me.mraxetv.beastwithdraw.utils.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[18:48:46] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[18:48:46] [Server thread/INFO]: [BeastWithdraw] Version 2.21 : has been enabled!
[18:48:46] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.19.7
[18:48:46] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[18:48:46] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[18:48:46] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[18:48:46] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[18:48:46] [Server thread/INFO]: --------------------
[18:48:46] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[18:48:46] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[18:48:46] [Server thread/INFO]: --------------------
[18:48:46] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.1
[18:48:46] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[18:48:46] [Server thread/INFO]: [EssentialsDiscord] Enabling EssentialsDiscord v2.19.7
[18:48:46] [Server thread/INFO]: [EssentialsDiscord] Starting Metrics. Opt-out using the global bStats config.
[18:48:46] [Server thread/INFO]: [EssentialsDiscord] Attempting to login to Discord...
[18:48:46] [Server thread/ERROR]: [EssentialsDiscord] An error occurred while logging into Discord, which has caused the plugin to disable itself: 
No token provided! Please follow the tutorial in the config in order to setup the plugin.
[18:48:46] [Server thread/INFO]: [SimpleClans] Enabling SimpleClans v2.18.1-43da5bd
[18:48:46] [Server thread/INFO]: [SimpleClans] SQLite Connection successful
[18:48:46] [Server thread/INFO]: [SimpleClans] Registering 4 chat handlers...
[18:48:46] [Server thread/INFO]: [SimpleClans] [ACF] Enabled Asynchronous Tab Completion Support!
[18:48:46] [Server thread/INFO]: [SimpleClans] Registering 12 command contexts...
[18:48:46] [Server thread/INFO]: [SimpleClans] Registering 15 base commands...
[18:48:46] [Server thread/INFO]: [SimpleClans] Registering 32 command conditions...
[18:48:46] [Server thread/INFO]: [SimpleClans] Registering 18 command completions...
[18:48:46] [Server thread/INFO]: [SimpleClans] Multithreading: true
[18:48:46] [Server thread/INFO]: [SimpleClans] BungeeCord: false
[18:48:46] [Server thread/INFO]: [SimpleClans] HEX support: true
[18:48:46] [Server thread/INFO]: [SimpleClans] Help us translate SimpleClans to your language! Access https://crowdin.com/project/simpleclans/
[18:48:46] [Server thread/INFO]: [SimpleClans] PlaceholderAPI found. Registering hook...
[18:48:46] [Server thread/INFO]: [SimpleClans] Registering 7 placeholder resolvers...
[18:48:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: simpleclans [2.18.1-43da5bd]
[18:48:46] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2947)
[18:48:46] [Server thread/INFO]: [Citizens] Loading external libraries
[18:48:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[18:48:47] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[18:48:47] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.3.1
[18:48:47] [Server thread/INFO]:  
[18:48:47] [Server thread/INFO]: __________________________________________________________
[18:48:47] [Server thread/INFO]:  
[18:48:47] [Server thread/INFO]:                        TradeSystem [2.3.1]
[18:48:47] [Server thread/INFO]:  
[18:48:47] [Server thread/INFO]: Status:
[18:48:47] [Server thread/INFO]:  
[18:48:47] [Server thread/INFO]: MC-Version: 1.19.3 (R0.1-SNAPSHOT, Paper)
[18:48:47] [Server thread/INFO]:  
[18:48:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[18:48:47] [Server thread/INFO]:   > Loading sounds
[18:48:47] [Server thread/INFO]:   > Loading blacklist
[18:48:47] [Server thread/INFO]:     ...got 3 blocked item(s)
[18:48:47] [Server thread/INFO]:   > Loading layouts
[18:48:47] [Server thread/INFO]:     ...got 4 layout(s)
[18:48:47] [Server thread/INFO]:   > Database logging is disabled
[18:48:47] [Server thread/INFO]:  
[18:48:47] [Server thread/INFO]: Finished (227ms)
[18:48:47] [Server thread/INFO]:  
[18:48:47] [Server thread/INFO]: __________________________________________________________
[18:48:47] [Server thread/INFO]:  
[18:48:47] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker
[18:48:47] [Server thread/INFO]: [RoseStacker] Initializing using RoseGarden v1.2.1
[18:48:47] [Server thread/INFO]: [RoseStacker] Paper's new chunk system detected, using it to spawn entities
[18:48:48] [Server thread/WARN]: [RoseStacker] Ignored loading stack settings for entities: [SNIFFER]
[18:48:49] [Server thread/INFO]: [RoseStacker] Hijacking world RandomSources to allow async mob creation...
[18:48:49] [Server thread/INFO]: [RoseStacker] Detected server API version as v1_19_R2
[18:48:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rosestacker [1.5.6]
[18:48:49] [Server thread/INFO]: [IridiumSkyblock] Enabling IridiumSkyblock v3.2.10-hotfix-1.2
[18:48:49] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock
[18:48:51] [Server thread/INFO]: Time elapsed: 1668 ms
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock) TNT ignition is PERMITTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock) Lighters are PERMITTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock) Lava fire is PERMITTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock) Fire spread is UNRESTRICTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Skyblock'
[18:48:51] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock_nether
[18:48:51] [Server thread/INFO]: Time elapsed: 73 ms
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock_nether) TNT ignition is PERMITTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock_nether) Lighters are PERMITTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock_nether) Lava fire is PERMITTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock_nether) Fire spread is UNRESTRICTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Skyblock_nether'
[18:48:51] [Server thread/INFO]: Preparing start region for dimension minecraft:skyblock_the_end
[18:48:51] [Server thread/INFO]: Time elapsed: 39 ms
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock_the_end) TNT ignition is PERMITTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock_the_end) Lighters are PERMITTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock_the_end) Lava fire is PERMITTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] (Skyblock_the_end) Fire spread is UNRESTRICTED.
[18:48:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Skyblock_the_end'
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_current_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_player_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_upgrade_warp_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_visitors}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_members}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_booster_experience_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_upgrade_size_dimensions}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_booster_farming_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_visitor_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_player_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_upgrade_warp_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_upgrade_member_amount}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_7_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_upgrade_size_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_booster_farming_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_3_nether_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_experience_remaining}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_20_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_upgrade_generator_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_name}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_bank_money}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_4_member_names}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_value}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_19_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_players}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_extravalue}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_16_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_10_bank_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_14_experience_required}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_6_rank}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_8_end_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_2_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_overworld_biome}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_5_upgrade_member_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_9_booster_experience_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_booster_spawner_remaining_minutes}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_booster_spawner_remaining_seconds}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_18_bank_crystals}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_15_experience}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_12_upgrade_blocklimit_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_13_level}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_17_owner}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_1_visitable}
[18:48:52] [Server thread/INFO]: [MVdWPlaceholderAPI] IridiumSkyblock added custom placeholder {iridiumskyblock_island_top_11_visitor_names}
[18:48:52] [Server thread/INFO]: [IridiumSkyblock] Successfully registered 73 placeholders with MVDWPlaceholderAPI.
[18:48:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iridiumskyblock [3.2.10-hotfix-1.2]
[18:48:52] [Server thread/INFO]: [IridiumSkyblock] Successfully registered 73 placeholders with PlaceholderAPI.
[18:48:52] [Server thread/INFO]: [IridiumSkyblock] ----------------------------------------
[18:48:52] [Server thread/INFO]: [IridiumSkyblock] 
[18:48:52] [Server thread/INFO]: [IridiumSkyblock] IridiumSkyblock Enabled!
[18:48:52] [Server thread/INFO]: [IridiumSkyblock] Version: 3.2.10-hotfix-1.2
[18:48:52] [Server thread/INFO]: [IridiumSkyblock] 
[18:48:52] [Server thread/INFO]: [IridiumSkyblock] ----------------------------------------
[18:48:52] [Server thread/INFO]: [HSSlayer] Enabling HSSlayer v1.0
[18:48:52] [Server thread/INFO]: [HSDave] Enabling HSDave v1.0.2-STABLE-1
[18:48:52] [Server thread/INFO]: [HSIslandFarming] Enabling HSIslandFarming v1.0.8-STABLE-1
[18:48:52] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v11.1.0.8.1056
[18:48:52] [Server thread/INFO]: CombatLogX was loaded successfully.
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansions...
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Action Bar v17.0'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Boss Bar v16.9'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v16.23'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Citizens Compatibility v16.15'...
[18:48:53] [Server thread/INFO]: [CombatLogX] [Citizens Compatibility] Successfully found a dependency: Citizens v2.0.30-SNAPSHOT (build 2947)
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'EssentialsX Compatibility v16.3'...
[18:48:53] [Server thread/INFO]: [CombatLogX] [EssentialsX Compatibility] Successfully found a dependency: Essentials v2.19.7
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Factions Compatibility v16.3'...
[18:48:53] [Server thread/WARN]: [CombatLogX] Failed to find any of the following plugins:
[18:48:53] [Server thread/WARN]: [CombatLogX] [Factions, FactionsX, LegacyFactions]
[18:48:53] [Server thread/WARN]: [CombatLogX] Please contact SirBlobman if you believe this is mistake.
[18:48:53] [Server thread/WARN]: [CombatLogX] https://github.com/SirBlobman/BlueSlimeCore/issues/new/choose
[18:48:53] [Server thread/INFO]: [CombatLogX] [Factions Compatibility] Some dependencies for this expansion are missing!
[18:48:53] [Server thread/INFO]: [CombatLogX] Disabling expansion 'Factions Compatibility v16.3'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'FeatherBoard Compatibility v16.3'...
[18:48:53] [Server thread/INFO]: [CombatLogX] [FeatherBoard Compatibility] Successfully found a dependency: FeatherBoard v5.1.0
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'IridiumSkyblock Compatibility v16.3'...
[18:48:53] [Server thread/INFO]: [CombatLogX] [IridiumSkyblock Compatibility] Successfully found a dependency: IridiumSkyblock v3.2.10-hotfix-1.2
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'PlaceholderAPI Compatibility v16.9'...
[18:48:53] [Server thread/INFO]: [CombatLogX] [PlaceholderAPI Compatibility] Successfully found a dependency: PlaceholderAPI v2.11.3
[18:48:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: combatlogx [16.9]
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'SuperVanish/PremiumVanish Compatibility v16.2'...
[18:48:53] [Server thread/WARN]: [CombatLogX] [SuperVanish/PremiumVanish Compatibility] A dependency is not installed on the server: SuperVanish
[18:48:53] [Server thread/WARN]: [CombatLogX] [SuperVanish/PremiumVanish Compatibility] A dependency is not installed on the server: PremiumVanish
[18:48:53] [Server thread/INFO]: [CombatLogX] Disabling expansion 'SuperVanish/PremiumVanish Compatibility v16.2'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'WorldGuard Compatibility v16.5'...
[18:48:53] [Server thread/INFO]: [CombatLogX] [WorldGuard Compatibility] Successfully found a dependency: WorldGuard v7.0.8-beta-01+cbb2ba7
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Damage Tagger v16.7'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Death Effects v16.4'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Force Field v17.1'...
[18:48:53] [Server thread/INFO]: [CombatLogX] [Force Field] Successfully found a dependency: ProtocolLib v5.0.0-SNAPSHOT-b630
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Glowing v16.5'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Logger v16.3'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Loot Protection v16.6'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Newbie Helper v16.12'...
[18:48:53] [Server thread/INFO]: [CombatLogX]  
[18:48:53] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Rewards v16.8'...
[18:48:53] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully found a dependency: Vault v1.7.3-b131
[18:48:53] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully hooked into economy handler 'EssentialsX Economy' from plugin 'Essentials v2.19.7'.
[18:48:53] [Server thread/INFO]: [CombatLogX] [Rewards] Successfully loaded 2 reward(s).
[18:48:54] [Server thread/INFO]: [CombatLogX]  
[18:48:54] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Scoreboard v16.12'...
[18:48:54] [Server thread/INFO]: [CombatLogX]  
[18:48:54] [Server thread/INFO]: [CombatLogX] Successfully enabled 18 expansions.
[18:48:54] [Server thread/INFO]: CombatLogX was enabled successfully.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] Enabling VoidChest v1.11.0
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] Plugin attempting to load now...
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] YML files loaded.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] messages.yml file fully loaded.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] Attempting to load voidchest files in memory.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] VoidChest file: HS successfully loaded in memory.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] Attempting to load voidchest items in memory.
[18:48:54] [Server thread/INFO]: Currently loaded files: 1
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] Loaded voidchest item for: HS
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] Attempted registering the following tasks: voidchest-purge, hologram, data-purge, sell-message
[18:48:54] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:48:54] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.0.2
[18:48:54] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[18:48:54] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[18:48:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedenchantments [1.0.0]
[18:48:54] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[18:48:54] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[18:48:54] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Essentials.
[18:48:54] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into CoreProtect.
[18:48:54] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[18:48:54] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[18:48:55] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[18:48:55] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[18:48:55] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[18:48:55] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[18:48:55] [Server thread/INFO]: Preparing start region for dimension minecraft:koth_iron
[18:48:56] [Server thread/INFO]: Time elapsed: 569 ms
[18:48:56] [Server thread/INFO]: [WorldGuard] (KOTH_Iron) TNT ignition is PERMITTED.
[18:48:56] [Server thread/INFO]: [WorldGuard] (KOTH_Iron) Lighters are PERMITTED.
[18:48:56] [Server thread/INFO]: [WorldGuard] (KOTH_Iron) Lava fire is PERMITTED.
[18:48:56] [Server thread/INFO]: [WorldGuard] (KOTH_Iron) Fire spread is UNRESTRICTED.
[18:48:56] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KOTH_Iron'
[18:48:56] [Server thread/INFO]: Preparing start region for dimension minecraft:adventure_iron
[18:48:56] [Server thread/INFO]: Time elapsed: 16 ms
[18:48:56] [Server thread/INFO]: [WorldGuard] (Adventure_Iron) TNT ignition is PERMITTED.
[18:48:56] [Server thread/INFO]: [WorldGuard] (Adventure_Iron) Lighters are PERMITTED.
[18:48:56] [Server thread/INFO]: [WorldGuard] (Adventure_Iron) Lava fire is PERMITTED.
[18:48:56] [Server thread/INFO]: [WorldGuard] (Adventure_Iron) Fire spread is UNRESTRICTED.
[18:48:56] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Adventure_Iron'
[18:48:56] [Server thread/INFO]: Preparing start region for dimension minecraft:koth_chainmail
[18:48:57] [Server thread/INFO]: Time elapsed: 112 ms
[18:48:57] [Server thread/INFO]: [WorldGuard] (KOTH_Chainmail) TNT ignition is PERMITTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] (KOTH_Chainmail) Lighters are PERMITTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] (KOTH_Chainmail) Lava fire is PERMITTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] (KOTH_Chainmail) Fire spread is UNRESTRICTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KOTH_Chainmail'
[18:48:57] [Server thread/INFO]: Preparing start region for dimension minecraft:koth_diamond
[18:48:57] [Server thread/INFO]: Time elapsed: 97 ms
[18:48:57] [Server thread/INFO]: [WorldGuard] (KOTH_Diamond) TNT ignition is PERMITTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] (KOTH_Diamond) Lighters are PERMITTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] (KOTH_Diamond) Lava fire is PERMITTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] (KOTH_Diamond) Fire spread is UNRESTRICTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KOTH_Diamond'
[18:48:57] [Server thread/INFO]: Preparing start region for dimension minecraft:adventure_chainmail
[18:48:57] [Server thread/INFO]: Time elapsed: 61 ms
[18:48:57] [Server thread/INFO]: [WorldGuard] (Adventure_Chainmail) TNT ignition is PERMITTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] (Adventure_Chainmail) Lighters are PERMITTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] (Adventure_Chainmail) Lava fire is PERMITTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] (Adventure_Chainmail) Fire spread is UNRESTRICTED.
[18:48:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Adventure_Chainmail'
[18:48:57] [Server thread/INFO]: Preparing start region for dimension minecraft:iridiumskyblock
[18:48:58] [Server thread/INFO]: Time elapsed: 55 ms
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) TNT ignition is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Lighters are PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Lava fire is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Fire spread is UNRESTRICTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock'
[18:48:58] [Server thread/INFO]: Preparing start region for dimension minecraft:iridiumskyblock_the_end
[18:48:58] [Server thread/INFO]: Time elapsed: 58 ms
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) TNT ignition is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) Lighters are PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) Lava fire is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) Fire spread is UNRESTRICTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock_the_end'
[18:48:58] [Server thread/INFO]: Preparing start region for dimension minecraft:iridiumskyblock_nether
[18:48:58] [Server thread/INFO]: Time elapsed: 95 ms
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) TNT ignition is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Lighters are PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Lava fire is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Fire spread is UNRESTRICTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock_nether'
[18:48:58] [Server thread/INFO]: Preparing start region for dimension minecraft:adventure_diamond
[18:48:58] [Server thread/INFO]: Time elapsed: 35 ms
[18:48:58] [Server thread/INFO]: [WorldGuard] (Adventure_Diamond) TNT ignition is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (Adventure_Diamond) Lighters are PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (Adventure_Diamond) Lava fire is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (Adventure_Diamond) Fire spread is UNRESTRICTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Adventure_Diamond'
[18:48:58] [Server thread/INFO]: Preparing start region for dimension minecraft:flat
[18:48:58] [Server thread/INFO]: Time elapsed: 44 ms
[18:48:58] [Server thread/INFO]: [WorldGuard] (flat) TNT ignition is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (flat) Lighters are PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (flat) Lava fire is PERMITTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] (flat) Fire spread is UNRESTRICTED.
[18:48:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'flat'
[18:48:58] [Server thread/INFO]: [Multiverse-Core] 16 - World(s) loaded.
[18:48:58] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[18:48:58] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[18:48:59] [Server thread/INFO]: [HSAutoReplant] Enabling HSAutoReplant v1.0.5-STABLE-1
[18:48:59] [Server thread/INFO]: [HSAdventure] Enabling HSAdventure v1.0.7-BETA-1
[18:48:59] [Server thread/INFO]: [KOTH] Enabling KOTH v6.1
[18:48:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: koth [6.1]
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_total_wins}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_time_left}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_maxruntime}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_active}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_capping_players}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_coordinate_x}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_coordinate_y}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_coordinate_z}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_next_coordinate_x}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_next_coordinate_y}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_next_coordinate_z}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_worlds}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_minutes_left}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_seconds_left}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_capping_teams}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_status}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_distance}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_scheduled_next}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_scheduled_countdown}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_scheduled_name}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_last_capped_team}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_last_capped_player}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_max_points}
[18:48:59] [Server thread/INFO]: [MVdWPlaceholderAPI] KOTH added custom placeholder {koth_points_player}
[18:48:59] [pool-129-thread-1/INFO]: [KOTH] Sorting through upcoming KOTH schedules...
[18:48:59] [Server thread/INFO]: ===================================
[18:48:59] [Server thread/INFO]: 
[18:48:59] [Server thread/INFO]: - Plugin: KOTH
[18:48:59] [Server thread/INFO]: - Version: 6.1
[18:48:59] [Server thread/INFO]: - Server Version: null
[18:48:59] [Server thread/INFO]: - Author: Benzimmer
[18:48:59] [Server thread/INFO]: - Discord: https://discord.gg/fuffySb
[18:48:59] [Server thread/INFO]: 
[18:48:59] [Server thread/INFO]: - Searching for plugin updates...
[18:48:59] [Server thread/INFO]: : Latest plugin version found.
[18:48:59] [Server thread/INFO]: 
[18:48:59] [Server thread/INFO]: - Successfully registered placeholders with PlaceholderAPI.
[18:48:59] [Server thread/INFO]: 
[18:48:59] [Server thread/INFO]: - Successfully registered placeholders with MVdWPlaceholderAPI.
[18:48:59] [Server thread/INFO]: 
[18:48:59] [Server thread/INFO]: - Loaded 3 koths.
[18:48:59] [Server thread/INFO]: - Loaded 45 commands.
[18:48:59] [Server thread/INFO]: 
[18:48:59] [Server thread/INFO]: - Enabled plugin in 114 ms
[18:48:59] [Server thread/INFO]: 
[18:48:59] [pool-129-thread-1/INFO]: [KOTH] Successfully sorted through all KOTH schedules.
[18:48:59] [Server thread/INFO]: ===================================
[18:48:59] [Server thread/ERROR]: [KOTH] Failed to register events for class com.benzimmer123.koth.d.b.b because com/SirBlobman/combatlogx/api/event/PlayerUntagEvent does not exist.
[18:48:59] [Server thread/INFO]: [KOTH] Successfully hooked into CombatLogX.
[18:48:59] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.4.1-r6
[18:48:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[18:48:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[18:48:59] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[18:48:59] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.4.1-r6
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.24
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-"155aa36" (MC: 1.19.3)
                                               
[18:49:00] [Server thread/WARN]: [ItemsAdder] (Liquids disabled. If you want to use liquids enable them in config.yml please)
[18:49:00] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 25566
[18:49:00] [Server thread/WARN]: [ItemsAdder] "ItemsAdder v3.4.1-r6" has registered a listener for com.destroystokyo.paper.event.inventory.PrepareGrindstoneEvent on method "private void ia.m.fE.a(org.bukkit.event.inventory.PrepareGrindstoneEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [LoneDev].
[18:49:00] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[18:49:00] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.8.3
[18:49:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedcrates [3.8.3]
[18:49:01] [Thread-20/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package de.tr7zw.advancedcrates.nbtapi' seems to be outdated!
[18:49:01] [Thread-20/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[18:49:01] [Thread-20/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)!
[18:49:05] [Server thread/INFO]: [SCore] Enabling SCore v3.9.60
[18:49:05] [Server thread/INFO]: ================ SCore ================
[18:49:05] [Server thread/INFO]: SCore Version of the server git-Paper-"155aa36" (MC: 1.19.3) !
[18:49:05] [Server thread/INFO]: SCore ExecutableItems hooked !  (5.9.60) Load After
[18:49:05] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.3)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.8-beta-01+cbb2ba7)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore IridiumSkyblock hooked !  (3.2.10-hotfix-1.2)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore CoreProtect hooked !  (21.3)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore ProtocolLib hooked !
[18:49:05] [Server thread/INFO]: SCore Locale setup: EN
[18:49:05] [Server thread/INFO]: SCore NBTAPI hooked !  (2.11.2)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.17.0)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.1)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore ItemsAdder hooked !  (3.4.1-r6)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore ShopGUIPlus hooked !  (1.82.0) Load After
[18:49:05] [Server thread/INFO]: SCore TAB hooked !  (3.2.1)  8aLoad Before
[18:49:05] [Server thread/INFO]: SCore Language of the editor setup on EN
[18:49:05] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[18:49:05] [Server thread/INFO]: SCore onnection to the db...
[18:49:05] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[18:49:05] [Server thread/INFO]: SCore Creating table Commands if not exists...
[18:49:05] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[18:49:05] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[18:49:05] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[18:49:05] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[18:49:05] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[18:49:05] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[18:49:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore [1.0.0]
[18:49:05] [Server thread/INFO]: ================ SCore ================
[18:49:05] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.6.0
[18:49:05] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[18:49:05] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[18:49:05] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[18:49:05] [Server thread/INFO]: [CustomCrafting]     Version    | v4.16.6.0
[18:49:05] [Server thread/INFO]: [CustomCrafting]     WolfyUtils | v4.16.9.6
[18:49:05] [Server thread/INFO]: [CustomCrafting]     Bukkit     | git-Paper-"155aa36" (MC: 1.19.3)(API: 1.19.3-R0.1-SNAPSHOT)
[18:49:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[18:49:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[18:49:05] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[18:49:05] [Thread-21/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.wolfyscript.lib.nbt.nbtapi' seems to be outdated!
[18:49:05] [Thread-21/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[18:49:05] [Thread-21/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)!
[18:49:05] [Server thread/INFO]: [CustomCrafting] 
[18:49:05] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[18:49:05] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Junye Zhou, PwassonDoDouce, Mr_Mint_, Mithran
[18:49:05] [Server thread/INFO]: [CustomCrafting] Spunkerz, Teddy, ้œœ็ฅžCreamGod, lance fector
[18:49:05] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[18:49:05] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[18:49:05] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.1.0 translated by WolfyScript
[18:49:06] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[18:49:06] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[18:49:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: customcrafting [4.16.6.0]
[18:49:06] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[18:49:06] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[18:49:06] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[18:49:07] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[18:49:07] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v5.9.60
[18:49:07] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[18:49:07] [CC-update-check/WARN]: [CustomCrafting] Your version is outdated! There is a new version available! Download it here: https://www.spigotmc.org/resources/55883/
[18:49:07] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
[18:49:07] [Server thread/INFO]: ExecutableItems HeadDatabase hooked !
[18:49:07] [Server thread/INFO]: ExecutableItems NBTAPI hooked !
[18:49:07] [Server thread/INFO]: ExecutableItems CustomCrafting hooked !
[18:49:09] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[18:49:09] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.82.0
[18:49:09] [Server thread/INFO]: [EliteMasks] Enabling EliteMasks v1.5.6
[18:49:10] [Server thread/INFO]: [EliteMasks] [ACF] Enabled Asynchronous Tab Completion Support!
[18:49:10] [Server thread/INFO]: [Quests] Enabling Quests v3.13.3-5a28efa
[18:49:10] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[18:49:10] [Server thread/INFO]: [Quests] Your server is running version 1.19
[18:49:10] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[18:49:10] [Server thread/INFO]: [RNodes] Enabling RNodes v1.0
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=COBBLESTONE, soundName=BLOCK_STONE_PLACE, cooldown=2}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=COAL_ORE, soundName=BLOCK_STONE_PLACE, cooldown=5}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=COPPER_ORE, soundName=BLOCK_STONE_PLACE, cooldown=12}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=NETHER_GOLD_ORE, soundName=BLOCK_NETHER_GOLD_ORE_PLACE, cooldown=30}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=NETHER_QUARTZ_ORE, soundName=BLOCK_NETHER_ORE_PLACE, cooldown=75}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=IRON_ORE, soundName=BLOCK_STONE_PLACE, cooldown=190}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=REDSTONE_ORE, soundName=BLOCK_STONE_PLACE, cooldown=475}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=LAPIS_ORE, soundName=BLOCK_STONE_PLACE, cooldown=1200}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=DIAMOND_ORE, soundName=BLOCK_STONE_PLACE, cooldown=3000}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=EMERALD_ORE, soundName=BLOCK_STONE_PLACE, cooldown=7500}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=ANCIENT_DEBRIS, soundName=BLOCK_ANCIENT_DEBRIS_PLACE, cooldown=18750}
[18:49:10] [Server thread/INFO]: Loaded Node Type: NodeType{nodeItemType=BEDROCK, soundName=BLOCK_STONE_PLACE, cooldown=99999}
[18:49:10] [Server thread/INFO]: EFO FINISHED READING NODE DATA
[18:49:10] [Server thread/INFO]: READING NODE DATA FINISHED IN: 30ms
[18:49:10] [Server thread/INFO]: NODE CACHE SIZE: 145
[18:49:10] [Server thread/INFO]: [RNodes] Iridum found, registering support
[18:49:10] [Server thread/INFO]: [HSMiner] Enabling HSMiner v1.0
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@2c1db89a
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@549f40c2
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@5941bcc7
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@1bb25f4c
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@5a2afdc8
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@741d2f1f
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@206e02df
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@292f61a1
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@24660df1
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@399ebbb5
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@69362ea3
[18:49:10] [Server thread/INFO]: [HSMiner] Loaded level: sh.miles.hsminer.data.MinerLevel@3bc6684d
[18:49:11] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[18:49:11] [Server thread/INFO]: Running delayed init tasks
[18:49:11] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Fetching version information...
[18:49:11] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[18:49:11] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[18:49:11] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[18:49:11] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] Checking for Updates ... 
[18:49:11] [Craft Scheduler Thread - 9 - DecentHolograms/INFO]: [DecentHolograms] Loaded 8 holograms!
[18:49:11] [Craft Scheduler Thread - 15 - BeastWithdraw/INFO]: [BeastWithdraw] There is a new update available.
[18:49:11] [Craft Scheduler Thread - 11 - CombatPlus/INFO]: [Combat+]: No updates are found, You're running the Latest Version <3
[18:49:11] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: NegativeKB (735196)
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[18:49:11] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] No new version available
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'BlueSlimeCore'.
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 2.6.2.239-Beta
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 2.7.0.303
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/83189/
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] A possible update was found for plugin 'CombatLogX'.
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Current Version: 11.1.0.8.1056
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] New Version: 11.2.0.1.1085
[18:49:11] [Craft Scheduler Thread - 16 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] Download Link: https://www.spigotmc.org/resources/31689/
[18:49:11] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[18:49:11] [Server thread/INFO]: [DeluxeCoinflip] Found and using VAULT economy provider(s).
[18:49:11] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Essentials for Vault's Economy API
[18:49:11] [Server thread/INFO]: [AuctionHouse] Registered Service Provider LuckPerms for Vault's Chat API
[18:49:11] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[18:49:11] [Server thread/INFO]: [SimpleClans] Registered WorldGuardProvider successfully
[18:49:11] [Server thread/WARN]: [SimpleClans] Error registering provider WorldGuard6Provider
[18:49:12] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for RoseStacker.
[18:49:12] [Craft Scheduler Thread - 19 - RoseStacker/INFO]: [RoseStacker] Fetched 125 translation locales.
[18:49:12] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[18:49:12] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[18:49:12] [Server thread/ERROR]: [ItemsAdder] Image not found for font_image 'iasurvival:thirst_bar_positive'. assets/iasurvival/textures/hud/thirst_bar/positive.png
[18:49:12] [Server thread/ERROR]: [ItemsAdder] Image not found for font_image 'iasurvival:thirst_bar_negative'. assets/iasurvival/textures/hud/thirst_bar/negative.png
[18:49:12] [Server thread/ERROR]: [ItemsAdder] Image not found for font_image 'iasurvival:thirst_bar_half'. assets/iasurvival/textures/hud/thirst_bar/half.png
[18:49:12] [Craft Scheduler Thread - 12 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 52139 heads!
[18:49:12] [Craft Scheduler Thread - 12 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[18:49:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests [3.13.3-5a28efa]
[18:49:13] [Server thread/INFO]: [Quests] 37 task types have been registered.
[18:49:13] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[18:49:13] [Server thread/INFO]: [Quests] 2 quests have been registered.
[18:49:13] [Server thread/WARN]: [Quests] You have configuration issues preventing some quests from loading.
[18:49:13] [Server thread/WARN]: [Quests] You can view these issues with the command: /q a config.
[18:49:14] [Server thread/INFO]: [Citizens] Loaded 85 NPCs.
[18:49:14] [Server thread/INFO]: [CombatLogX] Successfully enabled 0 late-load expansions.
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] ********************************************************
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] * There is a new version of IridiumSkyblock available!
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] *  
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] * Your version:   3.2.10-hotfix-1.2
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] * Latest version: 4.0.0
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] *  
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] * Please update to the newest version.
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] *  
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] * Download:
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] *   https://www.spigotmc.org/resources/62480
[18:49:14] [Server thread/WARN]: [IridiumSkyblock] ********************************************************
[18:49:14] [Server thread/INFO]: [AuctionHouse] Found PlaceholderAPI plugin
[18:49:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse [3.3.2]
[18:49:14] [Server thread/INFO]: [AuctionHouse] Registered PlaceholderAPI placeholders
[18:49:14] [Server thread/INFO]: [AuctionHouse] Found MVdWPlaceholderAPI plugin
[18:49:14] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_active_listings}
[18:49:14] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_player_listings}
[18:49:14] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_expired_listings}
[18:49:14] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_sold_items}
[18:49:14] [Server thread/INFO]: [MVdWPlaceholderAPI] AuctionHouse added custom placeholder {auctionhouse_max_listings}
[18:49:14] [Server thread/INFO]: [AuctionHouse] Registered MVdWPlaceholderAPI placeholders
[18:49:14] [Server thread/INFO]: Done (63.049s)! For help, type "help"
[18:49:14] [Server thread/INFO]: Timings Reset
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Attempt on registering the hologram type.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Hologram input is either invalid or the hologram plugin was not enabled properly.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Attempt on registering the bank type.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Bank type is invalid, no bank will be used at this point and all bank features will be disabled.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Attempt on registering the tnt bank type.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] TNT Bank type is invalid, no bank will be used at this point and all bank features will be disabled.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Attempting to load player datas.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Emptied storages and loaded to stats a size of: 0 player data
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Load Data: Data for: Trickyricky89TTV have been removed.
[18:49:15] [Server thread/INFO]: Player owned: 0 voidchests.
[18:49:15] [Server thread/INFO]: Booster: 1.0, No active booster
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Starting a hook attempt for economy...
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Path was set correctly and economy selected is: Vault, VaultEconomy{name=Vault, version=1.7.3-b131} attempting to hook now.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Starting a hook attempt for sell mode...
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] Event details: VoidChestShopGUIPlusEconomy{name=ShopGUIPlus, version=1.82.0}
[18:49:15] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] Loaded 347 items
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] Used 29/750 REAL_NOTE block IDs
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] Used 566/6608 font_images
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 29 categories
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[18:49:15] [Craft Scheduler Thread - 23 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url... 
[18:49:15] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://154.53.37.241:25566/generated.zip
[18:49:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: img [1.0.1]
[18:49:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iaplayerstat [1.0.1]
[18:49:15] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs
[18:49:17] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5285ms or 105 ticks behind
[18:49:17] [Server thread/INFO]: [WolfyUtilities] Dependencies Loaded. Calling DependenciesLoadedEvent!
[18:49:17] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[18:49:17] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[18:49:17] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[18:49:17] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[18:49:17] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[18:49:17] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/inode": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/lapis": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/emf": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/redstone": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/adnf": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/coal": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/gold": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/dnn": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/copper": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error] Invalid Recipe: "customcrafting:frags/cobble": Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/WARN]: [CustomCrafting] [LOCAL] [Error]   Caused by: Invalid ingredients! Recipe requires non-air ingredients!
[18:49:18] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 108 recipes; Skipped: 10 error/s, 0 already existing
[18:49:18] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[18:49:18] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[18:49:18] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 108 recipes
[18:49:18] [Server thread/INFO]: [CustomCrafting] 
[18:49:18] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[18:49:18] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[18:49:18] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[18:49:20] [Craft Scheduler Thread - 16 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:49:20] [Server thread/INFO]: EliteBosses: Loaded brood-mother.yml successfully!
[18:49:20] [Server thread/INFO]: EliteBosses: Loaded plague-bloater.yml successfully!
[18:49:20] [Server thread/INFO]: EliteBosses: Loaded treasure-goblin.yml successfully!
[18:49:20] [Server thread/INFO]: EliteBosses: Loaded king-slime.yml successfully!
[18:49:20] [Server thread/INFO]: EliteBosses: Loaded undead-assassin.yml successfully!
[18:49:20] [Server thread/INFO]: EliteBosses: Loaded yijki.yml successfully!
[18:49:20] [Craft Scheduler Thread - 16 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:49:20] [Server thread/WARN]: [HSAdventure] Task #5330 for HSAdventure v1.0.7-BETA-1 generated an exception
java.lang.NullPointerException: Cannot invoke "java.util.UUID.toString()" because "uuid" is null
    at com.mattisadev.hsadventure.api.utils.ChestUtils.loadGuards(ChestUtils.java:184) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.api.utils.ChestUtils.spawn(ChestUtils.java:100) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.HSAdventure.loadCrates(HSAdventure.java:142) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.HSAdventure$1.run(HSAdventure.java:69) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1473) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.82.0 ]================================
[18:49:20] [Server thread/INFO]: [ShopGUIPlus]  
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for HeadDatabase.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ExecutableItems.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ItemsAdder.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Using RoseStacker for spawners support.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Loaded 45 main menu items.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'solo_upgrades_main' with 3 items.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 10 items.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'solo_upgrades_armor' with 46 items.
[18:49:20] [Server thread/WARN]: [ShopGUIPlus] No slot specified for item recipes3 > w1, item not loaded.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'recipes3' with 8 items.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'enchantments' with 6 items.
[18:49:20] [Server thread/WARN]: [ShopGUIPlus] No slot specified for item recipes2 > w1, item not loaded.
[18:49:20] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'recipes2' with 9 items.
[18:49:21] [Server thread/WARN]: [ShopGUIPlus] No slot specified for item recipes1 > w1, item not loaded.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'recipes1' with 7 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 78 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'spawners' with 24 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 33 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'nodes' with 21 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ranks' with 20 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'solo_upgrades_tools' with 46 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'redstone' with 83 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mob-drops' with 39 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'minerals' with 62 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blockssand' with 41 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'decorations' with 176 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'color-blocks' with 245 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 68 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksstone' with 46 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'solo_upgrades_blocks' with 21 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'misc' with 72 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksprismarine' with 79 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksoak' with 225 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksblock' with 80 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocksbricks' with 73 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded 27 shops with total of 1621 items.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[18:49:21] [Server thread/INFO]: [ShopGUIPlus]  
[18:49:21] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[18:49:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[18:49:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[18:49:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[18:49:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: healthbar [0.6]
[18:49:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ascii [1.0.0]
[18:49:21] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to a missing plugin: VotingPlugin
[18:49:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[18:49:21] [Server thread/INFO]: 6 placeholder hook(s) registered! 3 placeholder hook(s) have an update available.
[18:49:21] [Server thread/INFO]: [FeatherBoard] PAPI expansions loaded. Checking for missing expansions ...
[18:49:22] [Server thread/INFO]: [KOTH] Featherboard found but hook was not enabled in the config.
[18:49:22] [Server thread/INFO]: [KOTH] Successfully hooked into TAB.
[18:49:22] [Server thread/INFO]: [KOTH] Successfully hooked into Featherboard.
[18:49:22] [Server thread/INFO]: [KOTH] Could not find plugin supported with the name TAB.
[18:49:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[18:49:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[18:49:22] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[18:49:22] [Thread-27/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package net.splodgebox.elitemasks.pluginapi.item.nbt' seems to be outdated!
[18:49:22] [Thread-27/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[18:49:22] [Thread-27/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)!
[18:49:23] [Server thread/INFO]: [VoidChest-1.11.0] Plugin loaded in 20.975 seconds
[18:49:23] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:26] [ForkJoinPool.commonPool-worker-1/INFO]:  
[18:49:26] [ForkJoinPool.commonPool-worker-1/INFO]:  
[18:49:26] [ForkJoinPool.commonPool-worker-1/INFO]:      Debugging... [VoidChest-1.11.0]
[18:49:26] [ForkJoinPool.commonPool-worker-1/INFO]: Your version of VoidChest (1.11.0) is up to date!
[18:49:26] [ForkJoinPool.commonPool-worker-1/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:26] [ForkJoinPool.commonPool-worker-1/INFO]:  
[18:49:26] [ForkJoinPool.commonPool-worker-1/INFO]:  
[18:49:51] [User Authenticator #0/INFO]: UUID of player Trickyricky89TTV is 0aaf73a7-fa8a-4551-8e3f-13e11f5c6803
[18:49:52] [Server thread/INFO]: [VoidChest-1.11.0] Join listener: Data for: Trickyricky89TTV have been removed.
[18:49:52] [Server thread/INFO]: Player owned: 0 voidchests.
[18:49:52] [Server thread/INFO]: Booster: 1.0, No active booster
[18:49:52] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:49:52] [Server thread/INFO]: Trickyricky89TTV[/2.127.192.40:62615] logged in with entity id 998 at ([Adventure_Chainmail]281.84371786094556, 75.0, 293.8790771729187)
[18:49:52] [Server thread/INFO]: [+] Trickyricky89TTV
[18:49:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[18:49:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[18:49:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[18:49:58] [Thread-28/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.iridium.iridiumcore.dependencies.nbtapi' seems to be outdated!
[18:49:58] [Thread-28/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[18:49:58] [Thread-28/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)!
[18:49:58] [Server thread/ERROR]: Could not pass event BlockPlaceEvent to HSAdventure v1.0.7-BETA-1
java.lang.NullPointerException: Cannot invoke "java.util.UUID.toString()" because "uuid" is null
    at com.mattisadev.hsadventure.api.utils.ChestUtils.loadGuards(ChestUtils.java:184) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.api.utils.ChestUtils.spawn(ChestUtils.java:100) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.listeners.CratePlaceListener.cratePlaceListener(CratePlaceListener.java:59) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor925.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callBlockPlaceEvent(CraftEventFactory.java:397) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.world.item.ItemStack.useOn(ItemStack.java:404) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:587) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1959) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:49:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[18:49:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[18:49:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[18:49:58] [Thread-29/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[18:50:06] [Server thread/INFO]: Trickyricky89TTV issued server command: /hsa reload
[18:50:06] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.util.UUID.toString()" because "uuid" is null
[18:50:06] [Server thread/WARN]:     at HSAdventure-1.0.7-BETA-1 (1).jar//com.mattisadev.hsadventure.api.utils.ChestUtils.loadGuards(ChestUtils.java:184)
[18:50:06] [Server thread/WARN]:     at HSAdventure-1.0.7-BETA-1 (1).jar//com.mattisadev.hsadventure.api.utils.ChestUtils.spawn(ChestUtils.java:100)
[18:50:06] [Server thread/WARN]:     at HSAdventure-1.0.7-BETA-1 (1).jar//com.mattisadev.hsadventure.commands.commands.ReloadCMD.onCommand(ReloadCMD.java:46)
[18:50:06] [Server thread/WARN]:     at HSAdventure-1.0.7-BETA-1 (1).jar//com.mattisadev.hsadventure.commands.CommandManager.onCommand(CommandManager.java:69)
[18:50:06] [Server thread/WARN]:     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[18:50:06] [Server thread/WARN]:     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155)
[18:50:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:911)
[18:50:06] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64)
[18:50:06] [Server thread/WARN]:     at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264)
[18:50:06] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.performCommand(CommandDispatcher.java:316)
[18:50:06] [Server thread/WARN]:     at net.minecraft.commands.CommandDispatcher.a(CommandDispatcher.java:300)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.a(PlayerConnection.java:2288)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.network.PlayerConnection.lambda$handleChatCommand$20(PlayerConnection.java:2248)
[18:50:06] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.b(IAsyncTaskHandler.java:59)
[18:50:06] [Server thread/WARN]:     at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.TickTask.run(TickTask.java:18)
[18:50:06] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.d(IAsyncTaskHandler.java:153)
[18:50:06] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandlerReentrant.d(IAsyncTaskHandlerReentrant.java:24)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1341)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197)
[18:50:06] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.x(IAsyncTaskHandler.java:126)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.bh(MinecraftServer.java:1318)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.x(MinecraftServer.java:1311)
[18:50:06] [Server thread/WARN]:     at net.minecraft.util.thread.IAsyncTaskHandler.bq(IAsyncTaskHandler.java:114)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1445)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1173)
[18:50:06] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[18:50:06] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[18:50:16] [Craft Scheduler Thread - 13 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[18:50:17] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:50:17] [Craft Scheduler Thread - 26 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:50:23] [Server thread/INFO]: Trickyricky89TTV issued server command: /hsa edit ct1
[18:50:30] [Server thread/INFO]: Trickyricky89TTV issued server command: /hsa edit ct2
[18:50:36] [Server thread/INFO]: Trickyricky89TTV issued server command: /hsa edit ct3
[18:50:46] [Server thread/INFO]: Trickyricky89TTV issued server command: /butcher -t
[18:50:46] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightStarlightRelighterFactory as relighter factory.
[18:51:05] [Server thread/INFO]: Trickyricky89TTV issued server command: /hsa give ct1 1
[18:51:12] [Server thread/INFO]: Trickyricky89TTV issued server command: /hsa give ct2 1
[18:51:13] [Server thread/ERROR]: Could not pass event BlockPlaceEvent to HSAdventure v1.0.7-BETA-1
java.lang.NullPointerException: Cannot invoke "java.util.UUID.toString()" because "uuid" is null
    at com.mattisadev.hsadventure.api.utils.ChestUtils.loadGuards(ChestUtils.java:184) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.api.utils.ChestUtils.spawn(ChestUtils.java:100) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.listeners.CratePlaceListener.cratePlaceListener(CratePlaceListener.java:59) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor925.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callBlockPlaceEvent(CraftEventFactory.java:397) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.world.item.ItemStack.useOn(ItemStack.java:404) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:587) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1959) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:51:17] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:51:17] [Craft Scheduler Thread - 10 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:51:38] [Server thread/INFO]: Trickyricky89TTV issued server command: /butcher -t
[18:52:14] [Server thread/INFO]: Trickyricky89TTV issued server command: /hsa give ct3 1
[18:52:17] [Server thread/ERROR]: Could not pass event BlockPlaceEvent to HSAdventure v1.0.7-BETA-1
java.lang.NullPointerException: Cannot invoke "java.util.UUID.toString()" because "uuid" is null
    at com.mattisadev.hsadventure.api.utils.ChestUtils.loadGuards(ChestUtils.java:184) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.api.utils.ChestUtils.spawn(ChestUtils.java:100) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.listeners.CratePlaceListener.cratePlaceListener(CratePlaceListener.java:59) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor925.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callBlockPlaceEvent(CraftEventFactory.java:397) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.world.item.ItemStack.useOn(ItemStack.java:404) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:587) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1959) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:52:17] [Craft Scheduler Thread - 33 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:52:18] [Craft Scheduler Thread - 33 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:52:19] [Server thread/ERROR]: Could not pass event BlockPlaceEvent to HSAdventure v1.0.7-BETA-1
java.lang.NullPointerException: Cannot invoke "java.util.UUID.toString()" because "uuid" is null
    at com.mattisadev.hsadventure.api.utils.ChestUtils.loadGuards(ChestUtils.java:184) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.api.utils.ChestUtils.spawn(ChestUtils.java:100) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.mattisadev.hsadventure.listeners.CratePlaceListener.cratePlaceListener(CratePlaceListener.java:59) ~[HSAdventure-1.0.7-BETA-1 (1).jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor925.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callBlockPlaceEvent(CraftEventFactory.java:397) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.world.item.ItemStack.useOn(ItemStack.java:404) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.level.ServerPlayerGameMode.useItemOn(ServerPlayerGameMode.java:587) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1959) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:37) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[18:52:21] [User Authenticator #1/INFO]: UUID of player Aidn__ is 1721387f-7764-41dd-b9dd-6fe1708e7000
[18:52:21] [Server thread/INFO]: [VoidChest-1.11.0] Join listener: Data for: Aidn__ have been removed.
[18:52:21] [Server thread/INFO]: Player owned: 0 voidchests.
[18:52:21] [Server thread/INFO]: Booster: 1.0, No active booster
[18:52:21] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:52:21] [Server thread/INFO]: Aidn__[/104.28.195.39:47616] logged in with entity id 2082 at ([Skyblock]300.01609030245714, 91.0, -903.1845005441422)
[18:52:21] [Server thread/INFO]: [+] Aidn__
[18:52:25] [Server thread/INFO]: Trickyricky89TTV issued server command: /butcher -t
[18:52:46] [Server thread/INFO]: Trickyricky89TTV lost connection: Disconnected
[18:52:46] [Server thread/INFO]: [-] Trickyricky89TTV
[18:52:46] [Server thread/INFO]: [VoidChest-1.11.0] Quit listener: Data for: Trickyricky89TTV have been removed.
[18:52:46] [Server thread/INFO]: Player owned: 0 voidchests.
[18:52:46] [Server thread/INFO]: Booster: 1.0, No active booster
[18:52:46] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[18:53:13] [Server thread/INFO]: Aidn__ issued server command: /is go
[18:53:16] [Craft Scheduler Thread - 41 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[18:53:18] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:53:18] [Craft Scheduler Thread - 35 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:54:21] [Craft Scheduler Thread - 41 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:54:21] [Craft Scheduler Thread - 41 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:55:18] [Craft Scheduler Thread - 45 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:55:18] [Craft Scheduler Thread - 45 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:56:18] [Craft Scheduler Thread - 48 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:56:18] [Craft Scheduler Thread - 48 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:57:17] [Server thread/INFO]: Aidn__ issued server command: /quest
[18:57:18] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:57:18] [Craft Scheduler Thread - 29 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:58:18] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:58:18] [Craft Scheduler Thread - 25 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[18:59:18] [Craft Scheduler Thread - 44 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[18:59:18] [Craft Scheduler Thread - 44 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:00:18] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:00:18] [Craft Scheduler Thread - 64 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:00:55] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:01:18] [Craft Scheduler Thread - 65 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:01:18] [Craft Scheduler Thread - 65 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:01:26] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:02:06] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:02:18] [Craft Scheduler Thread - 82 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:02:18] [Craft Scheduler Thread - 82 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:03:18] [Craft Scheduler Thread - 56 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:03:19] [Craft Scheduler Thread - 56 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:04:18] [Craft Scheduler Thread - 79 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:04:19] [Craft Scheduler Thread - 79 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:04:55] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:04:55] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:04:55] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:04:56] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:05:03] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:05:19] [Craft Scheduler Thread - 100 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:05:19] [Craft Scheduler Thread - 100 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:05:51] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:05:51] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:05:51] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:05:53] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:06:19] [Craft Scheduler Thread - 102 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:06:19] [Craft Scheduler Thread - 102 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:07:19] [Craft Scheduler Thread - 104 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:07:19] [Craft Scheduler Thread - 104 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:07:22] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:07:22] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:07:22] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:07:24] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:07:51] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:07:51] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:07:51] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:07:53] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:08:19] [Craft Scheduler Thread - 101 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:08:19] [Craft Scheduler Thread - 101 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:08:35] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:08:35] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:08:35] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:08:36] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:08:39] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:08:52] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:08:52] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:08:52] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:08:53] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:09:06] [User Authenticator #2/INFO]: UUID of player MattFTP is 8308c2fd-76ff-4d47-ace5-fea952af2a79
[19:09:06] [Server thread/INFO]: [VoidChest-1.11.0] Join listener: Data for: MattFTP have been removed.
[19:09:06] [Server thread/INFO]: Player owned: 0 voidchests.
[19:09:06] [Server thread/INFO]: Booster: 1.0, No active booster
[19:09:06] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:09:06] [Server thread/INFO]: MattFTP[/12.179.106.2:54023] logged in with entity id 8931 at ([Adventure_Chainmail]288.334207950262, 75.0, 299.27766539782067)
[19:09:06] [Server thread/INFO]: [+] MattFTP
[19:09:14] [User Authenticator #2/INFO]: UUID of player Trickyricky89TTV is 0aaf73a7-fa8a-4551-8e3f-13e11f5c6803
[19:09:14] [Server thread/INFO]: [VoidChest-1.11.0] Join listener: Data for: Trickyricky89TTV have been removed.
[19:09:14] [Server thread/INFO]: Player owned: 0 voidchests.
[19:09:14] [Server thread/INFO]: Booster: 1.0, No active booster
[19:09:14] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:09:14] [Server thread/INFO]: Trickyricky89TTV[/2.127.192.40:63727] logged in with entity id 9002 at ([Adventure_Chainmail]279.0499991142347, 75.0, 299.38604646413734)
[19:09:14] [Server thread/INFO]: [+] Trickyricky89TTV
[19:09:16] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[19:09:19] [Craft Scheduler Thread - 110 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:09:19] [Craft Scheduler Thread - 110 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:09:22] [Server thread/INFO]: Trickyricky89TTV issued server command: /is go
[19:09:34] [Server thread/INFO]: MattFTP issued server command: /spawn
[19:09:58] [Server thread/INFO]: Villager EntityVillager['Move Dave'/9107, uuid='1f77ee76-839d-4bda-9bc6-fcf24111ff45', l='ServerLevel[Skyblock]', x=454.18, y=-273.39, z=-902.85, cpos=[28, -57], tl=579, v=true] died, message: 'Move Dave fell out of the world'
[19:09:58] [Server thread/ERROR]: Could not pass event EntityDeathEvent to RoseStacker
java.lang.ClassCastException: class java.lang.String cannot be cast to class java.lang.Boolean (java.lang.String and java.lang.Boolean are in module java.base of loader 'bootstrap')
    at dev.rosewood.rosestacker.lib.rosegarden.config.RoseSetting.getBoolean(RoseSetting.java:47) ~[RoseStacker-1.5.6.jar:?]
    at dev.rosewood.rosestacker.stack.settings.EntityStackSettings.shouldKillEntireStackOnDeath(EntityStackSettings.java:243) ~[RoseStacker-1.5.6.jar:?]
    at dev.rosewood.rosestacker.stack.StackedEntity.isEntireStackKilledOnDeath(StackedEntity.java:488) ~[RoseStacker-1.5.6.jar:?]
    at dev.rosewood.rosestacker.stack.StackedEntity.isEntireStackKilledOnDeath(StackedEntity.java:498) ~[RoseStacker-1.5.6.jar:?]
    at dev.rosewood.rosestacker.listener.EntityListener.handleEntityDeath(EntityListener.java:321) ~[RoseStacker-1.5.6.jar:?]
    at dev.rosewood.rosestacker.listener.EntityListener.onEntityDeath(EntityListener.java:301) ~[RoseStacker-1.5.6.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor592.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:126) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:615) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.event.CraftEventFactory.callEntityDeathEvent(CraftEventFactory.java:879) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.world.entity.LivingEntity.dropAllDeathLoot(LivingEntity.java:1767) ~[?:?]
    at net.minecraft.world.entity.LivingEntity.die(LivingEntity.java:1664) ~[?:?]
    at net.minecraft.world.entity.npc.AbstractVillager.die(AbstractVillager.java:229) ~[?:?]
    at net.minecraft.world.entity.npc.Villager.die(Villager.java:677) ~[?:?]
    at net.minecraft.world.entity.LivingEntity.hurt(LivingEntity.java:1491) ~[?:?]
    at net.minecraft.world.entity.LivingEntity.outOfWorld(LivingEntity.java:2496) ~[?:?]
    at net.minecraft.world.entity.Entity.checkOutOfWorld(Entity.java:865) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.world.entity.Entity.baseTick(Entity.java:846) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.world.entity.LivingEntity.baseTick(LivingEntity.java:395) ~[?:?]
    at net.minecraft.world.entity.Mob.baseTick(Mob.java:329) ~[?:?]
    at net.minecraft.world.entity.Entity.tick(Entity.java:778) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:2968) ~[?:?]
    at net.minecraft.world.entity.Mob.tick(Mob.java:402) ~[?:?]
    at net.minecraft.world.entity.npc.Villager.tick(Villager.java:292) ~[?:?]
    at net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1211) ~[?:?]
    at net.minecraft.world.level.Level.guardEntityTick(Level.java:920) ~[?:?]
    at net.minecraft.server.level.ServerLevel.lambda$tick$6(ServerLevel.java:731) ~[?:?]
    at net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:42) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:711) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1535) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:447) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1397) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-"155aa36"]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[19:10:19] [Craft Scheduler Thread - 126 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:10:19] [Craft Scheduler Thread - 126 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:10:35] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:10:35] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:10:35] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:10:36] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:10:42] [Server thread/INFO]: Trickyricky89TTV lost connection: Disconnected
[19:10:42] [Server thread/INFO]: [-] Trickyricky89TTV
[19:10:42] [Server thread/INFO]: [VoidChest-1.11.0] Quit listener: Data for: Trickyricky89TTV have been removed.
[19:10:42] [Server thread/INFO]: Player owned: 0 voidchests.
[19:10:42] [Server thread/INFO]: Booster: 1.0, No active booster
[19:10:42] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:10:48] [Server thread/INFO]: MattFTP issued server command: /quests
[19:10:59] [User Authenticator #3/INFO]: UUID of player Trickyricky89TTV is 0aaf73a7-fa8a-4551-8e3f-13e11f5c6803
[19:10:59] [Server thread/INFO]: [VoidChest-1.11.0] Join listener: Data for: Trickyricky89TTV have been removed.
[19:10:59] [Server thread/INFO]: Player owned: 0 voidchests.
[19:10:59] [Server thread/INFO]: Booster: 1.0, No active booster
[19:10:59] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:10:59] [Server thread/INFO]: Trickyricky89TTV[/2.127.192.40:63853] logged in with entity id 9728 at ([Skyblock]452.4090414627931, 91.0, -907.2492424630973)
[19:10:59] [Server thread/INFO]: [+] Trickyricky89TTV
[19:11:07] [Server thread/INFO]: Trickyricky89TTV issued server command: /spawn
[19:11:16] [Craft Scheduler Thread - 118 - BuycraftX/INFO]: [BuycraftX] Sending 2 analytic events
[19:11:18] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:11:19] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:11:19] [Craft Scheduler Thread - 122 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:12:19] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:12:19] [Craft Scheduler Thread - 127 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:12:35] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:12:35] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:12:35] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:12:36] [Server thread/INFO]: Trickyricky89TTV lost connection: Disconnected
[19:12:36] [Server thread/INFO]: [-] Trickyricky89TTV
[19:12:36] [Server thread/INFO]: [VoidChest-1.11.0] Quit listener: Data for: Trickyricky89TTV have been removed.
[19:12:36] [Server thread/INFO]: Player owned: 0 voidchests.
[19:12:36] [Server thread/INFO]: Booster: 1.0, No active booster
[19:12:36] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:12:37] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:12:57] [Server thread/INFO]: Aidn__ issued server command: /gamemode c
[19:13:16] [Craft Scheduler Thread - 33 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[19:13:19] [Craft Scheduler Thread - 73 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:13:19] [Craft Scheduler Thread - 73 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:13:49] [Server thread/INFO]: MattFTP lost connection: Disconnected
[19:13:49] [Server thread/INFO]: [-] MattFTP
[19:13:49] [Server thread/INFO]: [VoidChest-1.11.0] Quit listener: Data for: MattFTP have been removed.
[19:13:49] [Server thread/INFO]: Player owned: 0 voidchests.
[19:13:49] [Server thread/INFO]: Booster: 1.0, No active booster
[19:13:49] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:13:56] [User Authenticator #4/INFO]: UUID of player MattFTP is 8308c2fd-76ff-4d47-ace5-fea952af2a79
[19:13:56] [Server thread/INFO]: [VoidChest-1.11.0] Join listener: Data for: MattFTP have been removed.
[19:13:56] [Server thread/INFO]: Player owned: 0 voidchests.
[19:13:56] [Server thread/INFO]: Booster: 1.0, No active booster
[19:13:56] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:13:56] [Server thread/INFO]: MattFTP[/12.179.106.2:59818] logged in with entity id 10946 at ([world]3.9699615087378706, 88.0, -10.09584824051199)
[19:13:56] [Server thread/INFO]: [+] MattFTP
[19:14:05] [Server thread/INFO]: MattFTP lost connection: Disconnected
[19:14:05] [Server thread/INFO]: [-] MattFTP
[19:14:05] [Server thread/INFO]: [VoidChest-1.11.0] Quit listener: Data for: MattFTP have been removed.
[19:14:05] [Server thread/INFO]: Player owned: 0 voidchests.
[19:14:05] [Server thread/INFO]: Booster: 1.0, No active booster
[19:14:05] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:14:16] [Craft Scheduler Thread - 125 - BuycraftX/INFO]: [BuycraftX] Sending 3 analytic events
[19:14:19] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:14:19] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:14:44] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:14:44] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:14:44] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:14:46] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:15:19] [Craft Scheduler Thread - 138 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:15:19] [Craft Scheduler Thread - 138 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:16:12] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:16:12] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:16:12] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:16:19] [Craft Scheduler Thread - 136 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:16:19] [Craft Scheduler Thread - 136 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:16:32] [Server thread/INFO]: ------------=[ Quests v3.13.3-5a28efa ]=------------
[19:16:32] [Server thread/INFO]: The following commands are available: 
[19:16:32] [Server thread/INFO]:  * /quests : show quests
[19:16:32] [Server thread/INFO]:  * /quests c/category <categoryid> : open category by ID
[19:16:32] [Server thread/INFO]:  * /quests started : show started quests
[19:16:32] [Server thread/INFO]:  * /quests q/quest <questid> (start|cancel|track) : start, cancel or track quest by ID
[19:16:32] [Server thread/INFO]:  * /quests start <questid>: start quest by name
[19:16:32] [Server thread/INFO]:  * /quests track <questid>: track quest by name
[19:16:32] [Server thread/INFO]:  * /quests cancel [questid]: cancel active quest by name
[19:16:32] [Server thread/INFO]:  * /quests random : show random quests
[19:16:32] [Server thread/INFO]:  * /quests a/admin : view help for admins
[19:16:32] [Server thread/INFO]: --------=[ made with <3 by LMBishop ]=--------
[19:16:35] [Server thread/INFO]: ------------=[ Quests v3.13.3-5a28efa ]=------------
[19:16:35] [Server thread/INFO]: The following commands are available: 
[19:16:35] [Server thread/INFO]:  * /quests : show quests
[19:16:35] [Server thread/INFO]:  * /quests c/category <categoryid> : open category by ID
[19:16:35] [Server thread/INFO]:  * /quests started : show started quests
[19:16:35] [Server thread/INFO]:  * /quests q/quest <questid> (start|cancel|track) : start, cancel or track quest by ID
[19:16:35] [Server thread/INFO]:  * /quests start <questid>: start quest by name
[19:16:35] [Server thread/INFO]:  * /quests track <questid>: track quest by name
[19:16:35] [Server thread/INFO]:  * /quests cancel [questid]: cancel active quest by name
[19:16:35] [Server thread/INFO]:  * /quests random : show random quests
[19:16:35] [Server thread/INFO]:  * /quests a/admin : view help for admins
[19:16:35] [Server thread/INFO]: --------=[ made with <3 by LMBishop ]=--------
[19:16:38] [Server thread/INFO]: ------------=[ Quests Admin ]=------------
[19:16:38] [Server thread/INFO]: The following commands are available: 
[19:16:38] [Server thread/INFO]:  * /quests a opengui : view help for opengui
[19:16:38] [Server thread/INFO]:  * /quests a moddata : view help for quest progression
[19:16:38] [Server thread/INFO]:  * /quests a types [type]: view registered task types
[19:16:38] [Server thread/INFO]:  * /quests a info [quest]: see information about loaded quests
[19:16:38] [Server thread/INFO]:  * /quests a items [import <id>] : view registered quest items
[19:16:38] [Server thread/INFO]:  * /quests a reload : reload Quests configuration
[19:16:38] [Server thread/INFO]:  * /quests a config : see detected problems in config
[19:16:38] [Server thread/INFO]:  * /quests a migratedata : migrate quests data
[19:16:38] [Server thread/INFO]:  * /quests a update : check for updates
[19:16:38] [Server thread/INFO]:  * /quests a wiki : get a link to the Quests wiki
[19:16:38] [Server thread/INFO]:  * /quests a about : get information about Quests
[19:16:38] [Server thread/INFO]:  * /quests a debug : view help for debugging
[19:16:41] [Server thread/INFO]: ------------=[ Quests Admin: debug ]=------------
[19:16:41] [Server thread/INFO]: The following commands are available: 
[19:16:41] [Server thread/INFO]:  * /quests a debug report : generate a debug report
[19:16:41] [Server thread/INFO]:  * /quests a debug quest <player> <self|all> : enable debug logging for a specific quest
[19:16:44] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:16:44] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:16:44] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:16:51] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:16:51] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:16:51] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:17:12] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:17:12] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:17:12] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:17:19] [Craft Scheduler Thread - 135 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:17:19] [Craft Scheduler Thread - 135 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:17:43] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:17:43] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:17:43] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:18:12] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:18:19] [Craft Scheduler Thread - 137 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:18:19] [Craft Scheduler Thread - 137 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:18:38] [User Authenticator #5/INFO]: UUID of player Trickyricky89TTV is 0aaf73a7-fa8a-4551-8e3f-13e11f5c6803
[19:18:38] [Server thread/INFO]: [VoidChest-1.11.0] Join listener: Data for: Trickyricky89TTV have been removed.
[19:18:38] [Server thread/INFO]: Player owned: 0 voidchests.
[19:18:38] [Server thread/INFO]: Booster: 1.0, No active booster
[19:18:38] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:18:38] [Server thread/INFO]: Trickyricky89TTV[/2.127.192.40:64304] logged in with entity id 12878 at ([world]14.475946342204475, 93.10764588175643, -24.73288940032616)
[19:18:38] [Server thread/INFO]: [+] Trickyricky89TTV
[19:18:45] [Server thread/INFO]: Trickyricky89TTV issued server command: /quest a reload
[19:18:45] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:18:45] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:19:16] [Craft Scheduler Thread - 117 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[19:19:19] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:19:20] [Craft Scheduler Thread - 150 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:19:36] [User Authenticator #5/INFO]: UUID of player MattFTP is 8308c2fd-76ff-4d47-ace5-fea952af2a79
[19:19:36] [Server thread/INFO]: [VoidChest-1.11.0] Join listener: Data for: MattFTP have been removed.
[19:19:36] [Server thread/INFO]: Player owned: 0 voidchests.
[19:19:36] [Server thread/INFO]: Booster: 1.0, No active booster
[19:19:36] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:19:36] [Server thread/INFO]: MattFTP[/12.179.106.2:65083] logged in with entity id 13280 at ([world]3.9699615087378706, 88.0, -10.09584824051199)
[19:19:36] [Server thread/INFO]: [+] MattFTP
[19:19:37] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:19:37] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:19:37] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:19:39] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:19:46] [Server thread/INFO]: MattFTP issued server command: /quest
[19:19:49] [Server thread/INFO]: MattFTP issued server command: /quest
[19:19:51] [Server thread/INFO]: MattFTP issued server command: /quest
[19:19:53] [Server thread/INFO]: MattFTP issued server command: /quest
[19:20:02] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:20:02] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:20:02] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:20:03] [Server thread/INFO]: Trickyricky89TTV issued server command: /quest a reload
[19:20:03] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:20:03] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:20:12] [Server thread/INFO]: MattFTP issued server command: /quest
[19:20:16] [Craft Scheduler Thread - 119 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[19:20:19] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:20:20] [Craft Scheduler Thread - 148 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:20:38] [Server thread/INFO]: MattFTP issued server command: /q a reload
[19:20:38] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:20:38] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:21:07] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:21:20] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:21:20] [Craft Scheduler Thread - 139 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:21:40] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:21:40] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:21:40] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:22:07] [Server thread/INFO]: MattFTP issued server command: /q a reload
[19:22:07] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:22:07] [Server thread/INFO]: [Quests] 2 quests have been registered.
[19:22:20] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:22:20] [Craft Scheduler Thread - 175 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:23:06] [Server thread/INFO]: MattFTP issued server command: /q a reload
[19:23:06] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:23:06] [Server thread/INFO]: [Quests] 3 quests have been registered.
[19:23:08] [Server thread/INFO]: MattFTP issued server command: /quest
[19:23:09] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:23:09] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:23:09] [Server thread/INFO]: [Quests] 3 quests have been registered.
[19:23:11] [Server thread/INFO]: Trickyricky89TTV issued server command: /q
[19:23:11] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:23:20] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[19:23:20] [Craft Scheduler Thread - 111 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[19:23:28] [Server thread/INFO]: Trickyricky89TTV lost connection: Disconnected
[19:23:28] [Server thread/INFO]: [-] Trickyricky89TTV
[19:23:28] [Server thread/INFO]: [VoidChest-1.11.0] Quit listener: Data for: Trickyricky89TTV have been removed.
[19:23:28] [Server thread/INFO]: Player owned: 0 voidchests.
[19:23:28] [Server thread/INFO]: Booster: 1.0, No active booster
[19:23:28] [Server thread/INFO]: [VoidChest-1.11.0] End of debugging.
[19:23:30] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:23:30] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:23:30] [Server thread/INFO]: [Quests] 3 quests have been registered.
[19:23:31] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:23:39] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:23:39] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:23:39] [Server thread/INFO]: [Quests] 3 quests have been registered.
[19:23:40] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:23:41] [Server thread/INFO]: MattFTP issued server command: /is delete
[19:23:44] [Server thread/INFO]: MattFTP issued server command: /is
[19:23:52] [Server thread/INFO]: Aidn__ issued server command: /quests a reload
[19:23:52] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[19:23:52] [Server thread/INFO]: [Quests] 3 quests have been registered.
[19:23:53] [Server thread/INFO]: Aidn__ issued server command: /quest
[19:24:01] [Server thread/INFO]: Aidn__ issued server command: /is go
[19:24:01] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give Aidn__ 500
[19:24:01] [Server thread/INFO]: $500 added to <Mod> Aidn__ account. New balance: $260,883
[19:24:01] [Server thread/INFO]: IridiumSkyblock ยป You gave Aidn__ 2 crystals.
[19:24:01] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /msg Aidn__ just got $500 and 2 island crystals for completing Gather 3 Oak Wood
[19:24:01] [Server thread/INFO]: [me -> <Mod> Aidn__] just got $500 and 2 island crystals for completing Gather 3 Oak Wood