Paste #127633: log2

Date: 2024/10/30 06:58:36 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456


[09:45:55] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.4+7-LTS; Eclipse Adoptium Temurin-21.0.4+7) on Linux 4.15.0-128-generic (amd64)
[09:45:55] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-56-master@227c94a (2024-08-31T19:12:03Z) for Minecraft 1.21.1
[09:45:56] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[09:45:57] [ServerMain/WARN]: [org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper] Failed to get hostname, using 'localhost'
java.net.UnknownHostException: 721b27af-0ee3-49e0-8c6e-294d2cb2b36d: 721b27af-0ee3-49e0-8c6e-294d2cb2b36d: Name or service not known
    at java.base/java.net.InetAddress.getLocalHost(InetAddress.java:1936) ~[?:?]
    at org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper.getHostname(DiscriminatingNameMapper.java:90) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.DiscriminatingNameMapper.<init>(DiscriminatingNameMapper.java:69) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NameMappers.discriminatingNameMapper(NameMappers.java:68) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NamedLockFactoryAdapterFactoryImpl.getManuallyCreatedNameMappers(NamedLockFactoryAdapterFactoryImpl.java:78) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.named.NamedLockFactoryAdapterFactoryImpl.<init>(NamedLockFactoryAdapterFactoryImpl.java:107) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[?:?]
    at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[?:?]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:159) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.synccontext.DefaultSyncContextFactory.initService(DefaultSyncContextFactory.java:68) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.DefaultMetadataResolver.initService(DefaultMetadataResolver.java:123) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.apache.maven.repository.internal.DefaultVersionResolver.initService(DefaultVersionResolver.java:106) ~[maven-resolver-provider-3.9.6.jar:3.9.6]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.initService(DefaultRepositorySystem.java:158) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.newInstance(DefaultServiceLocator.java:163) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstances(DefaultServiceLocator.java:140) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator$Entry.getInstance(DefaultServiceLocator.java:130) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.eclipse.aether.impl.DefaultServiceLocator.getService(DefaultServiceLocator.java:271) ~[maven-resolver-impl-1.9.18.jar:1.9.18]
    at org.bukkit.plugin.java.LibraryLoader.<init>(LibraryLoader.java:60) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.<clinit>(SpigotPluginProvider.java:38) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at io.papermc.paper.plugin.provider.type.PluginFileType.<clinit>(PluginFileType.java:40) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:77) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:52) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at net.minecraft.server.Main.main(Main.java:123) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at org.bukkit.craftbukkit.Main.main(Main.java:281) ~[paper-1.21.1.jar:1.21.1-56-227c94a]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[app:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.net.UnknownHostException: 721b27af-0ee3-49e0-8c6e-294d2cb2b36d: Name or service not known
    at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method) ~[?:?]
    at java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Inet6AddressImpl.java:52) ~[?:?]
    at java.base/java.net.InetAddress$PlatformResolver.lookupByName(InetAddress.java:1211) ~[?:?]
    at java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1828) ~[?:?]
    at java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:1139) ~[?:?]
    at java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1818) ~[?:?]
    at java.base/java.net.InetAddress.getLocalHost(InetAddress.java:1931) ~[?:?]
    ... 45 more
[09:45:57] [ServerMain/INFO]: [PluginInitializerManager] Initialized 28 plugins
[09:45:57] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (28):
 - BigDoors (Alpha 0.1.8.54), BisectHosting (1.0.4), BreweryX (3.3.3), CMI (9.7.6.11), CMILib (1.5.1.5), Citizens (2.0.35-SNAPSHOT (build 3597)), Denizen (1.3.1-SNAPSHOT (build 7079-DEV)), Depenizen (2.1.1 (build 864)), DiscordSRV (1.28.0), FastAsyncWorldEdit (2.11.3-SNAPSHOT-921;5ac60f0), Lands (7.9.9), LibsDisguises (10.0.44-SNAPSHOT), LuckPerms (5.4.141), Multiverse-Core (4.3.12), Multiverse-NetherPortals (4.2.3), Multiverse-Portals (4.2.3), PlaceholderAPI (2.11.7-DEV-200), PlayerPoints (3.2.7), ProtocolLib (5.3.0), Rankup (3.14.4), ShopGUIPlus (1.98.1), ShopGUIPlusSilkSpawnersBridge (1.8.0), Shopkeepers (2.23.0), SilkSpawners (8.1.0), SmoothTimber (1.27.1), Vault (1.7.3-CMI), WorldGuard (7.0.11-beta1+a801a9d), packetevents (2.5.0+dc015dc45-SNAPSHOT)
[09:46:02] [ServerMain/WARN]: You specified a resource pack without providing a sha1 hash. Pack will be updated on the client only if you change the name of the pack.
[09:46:02] [ServerMain/WARN]: resource-pack-id missing, using default of 7f322924-058d-396b-a222-3eab8bf1238c
[09:46:02] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:46:04] [ServerMain/INFO]: Loaded 1290 recipes
[09:46:05] [ServerMain/INFO]: Loaded 1399 advancements
[09:46:05] [Server thread/INFO]: Starting minecraft server version 1.21.1
[09:46:05] [Server thread/INFO]: Loading properties
[09:46:05] [Server thread/INFO]: This server is running Paper version 1.21.1-56-master@227c94a (2024-08-31T19:12:03Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[09:46:06] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[09:46:06] [Server thread/INFO]: Server Ping Player Sample Count: 12
[09:46:06] [Server thread/INFO]: Using 4 threads for Netty based IO
[09:46:07] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend migrating to the spark profiler.
    For more information please visit: https://github.com/PaperMC/Paper/discussions/10565
[09:46:07] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and population gen parallelism of 4 threads
[09:46:07] [Server thread/INFO]: Default game type: SURVIVAL
[09:46:07] [Server thread/INFO]: Generating keypair
[09:46:07] [Server thread/INFO]: Starting Minecraft server on 51.222.117.91:19410
[09:46:07] [Server thread/INFO]: Using epoll channel type
[09:46:07] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[09:46:07] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[09:46:08] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loading 1 libraries... please wait
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/redisson/redisson/3.26.0/redisson-3.26.0.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-common/4.1.104.Final/netty-common-4.1.104.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-codec/4.1.104.Final/netty-codec-4.1.104.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-buffer/4.1.104.Final/netty-buffer-4.1.104.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-transport/4.1.104.Final/netty-transport-4.1.104.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-resolver/4.1.104.Final/netty-resolver-4.1.104.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-resolver-dns/4.1.104.Final/netty-resolver-dns-4.1.104.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-codec-dns/4.1.104.Final/netty-codec-dns-4.1.104.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-handler/4.1.104.Final/netty-handler-4.1.104.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/netty/netty-transport-native-unix-common/4.1.104.Final/netty-transport-native-unix-common-4.1.104.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/projectreactor/reactor-core/3.6.0/reactor-core-3.6.0.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/io/reactivex/rxjava3/rxjava/3.1.6/rxjava-3.1.6.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/jboss/marshalling/jboss-marshalling/2.0.11.Final/jboss-marshalling-2.0.11.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/jboss/marshalling/jboss-marshalling-river/2.0.11.Final/jboss-marshalling-river-2.0.11.Final.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/kryo/5.6.0/kryo-5.6.0.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/reflectasm/1.11.9/reflectasm-1.11.9.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/objenesis/objenesis/3.3/objenesis-3.3.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/esotericsoftware/minlog/1.3.1/minlog-1.3.1.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.9/slf4j-api-2.0.9.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-annotations/2.16.1/jackson-annotations-2.16.1.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.16.1/jackson-dataformat-yaml-2.16.1.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-core/2.16.1/jackson-core-2.16.1.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-databind/2.16.1/jackson-databind-2.16.1.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.14.5/byte-buddy-1.14.5.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/jodd/jodd-bean/5.1.6/jodd-bean-5.1.6.jar
[09:46:09] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /home/container/libraries/org/jodd/jodd-core/5.1.6/jodd-core-5.1.6.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[09:46:11] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /home/container/libraries/net/bytebuddy/byte-buddy/1.14.17/byte-buddy-1.14.17.jar
[09:46:11] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[09:46:25] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loading 1 libraries... please wait
[09:46:25] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.10/kotlin-stdlib-jdk8-1.9.10.jar
[09:46:25] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.9.10/kotlin-stdlib-1.9.10.jar
[09:46:25] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.10/kotlin-stdlib-common-1.9.10.jar
[09:46:25] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[09:46:25] [Server thread/INFO]: [SpigotLibraryLoader] [BreweryX] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.10/kotlin-stdlib-jdk7-1.9.10.jar
[09:46:26] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.141
[09:46:26] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[09:46:26] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.7-DEV-200
[09:46:26] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.11.3-SNAPSHOT-921;5ac60f0
[09:46:30] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@245f64eb]
[09:46:30] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.1.5
[09:46:30] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[09:46:30] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[09:46:30] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.6.11
[09:46:30] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[09:46:30] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3597)
[09:46:30] [Server thread/INFO]: [Lands] Loading server plugin Lands v7.9.9
[09:46:32] [Server thread/INFO]: [Lands] Using default item currency for economy. You can edit the currency item for each locale in the corresponding GUI language files. Strict mode: false
[09:46:32] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 28 Path: gui.main.items.default.all-lands
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.main.items.default.all-lands
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 29 Path: gui.main.items.default.all-nations
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.main.items.default.all-nations
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 30 Path: gui.main.items.default.rentable
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.main.items.default.rentable
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 31 Path: gui.main.items.default.flags
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.main.items.default.flags
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 32 Path: gui.main.items.default.map
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.main.items.default.map
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 31 Path: gui.action-confirm.items.default.info
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 40 Path: gui.action-confirm.items.default.info
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 27 Path: gui.action-confirm.items.default.confirm
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 36 Path: gui.action-confirm.items.default.confirm
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 32 Path: gui.action-confirm.items.default.cancel
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 41 Path: gui.action-confirm.items.default.cancel
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 19 Path: gui.land_various.items.default.name
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.land_various.items.default.name
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 21 Path: gui.land_various.items.default.title
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.land_various.items.default.title
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 25 Path: gui.land_various.items.default.icon
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.land_various.items.default.icon
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 23 Path: gui.land_various.items.patches.all.category
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 23 Path: gui.land_various.items.patches.all.category_members
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 44 Path: gui.war-declaration_tribute.items.default.send-declaration
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.war-declaration_tribute.items.default.send-declaration
[09:46:32] [Server thread/WARN]: [Lands] [GUI] Invalid slot. Can't be larger than GUI size: 36 Path: gui.war-declaration_tribute.items.default.cancel-declaration
[09:46:32] [Server thread/WARN]: [Lands] [GUI] No valid slots configured for item: gui.war-declaration_tribute.items.default.cancel-declaration
[09:46:32] [Server thread/INFO]: [Lands] Connecting to MySQL database...
[09:46:33] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[09:46:33] [Server thread/INFO]: [Lands] Setting up tables...
[09:46:33] [Server thread/INFO]: [Lands] Your SQL DBMS version: 8.0.39-0ubuntu0.22.04.1 (MySQL) Wiki: https://github.com/Angeschossen/Lands/wiki/Database
[09:46:33] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[09:46:33] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[09:46:33] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.5.0+dc015dc45-SNAPSHOT
[09:46:37] [Server thread/INFO]: [SilkSpawners] Loading server plugin SilkSpawners v8.1.0
[09:46:37] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.7
[09:46:37] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.3.0.36-DEV-SNAPSHOT
[09:46:37] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.0
[09:46:38] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (1274 ms).
[09:46:38] [Server thread/INFO]: [Shopkeepers] Loading config.
[09:46:38] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[09:46:38] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[09:46:38] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[09:46:38] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[09:46:38] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[09:46:38] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[09:46:38] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[09:46:38] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[09:46:38] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[09:46:38] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.1-SNAPSHOT (build 7079-DEV)
[09:46:38] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.54
[09:46:38] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44-SNAPSHOT
[09:46:39] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.98.1
[09:46:39] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.3
[09:46:39] [Server thread/INFO]: [Depenizen] Loading server plugin Depenizen v2.1.1 (build 864)
[09:46:39] [Server thread/INFO]: [BreweryX] Loading server plugin BreweryX v3.3.3
[09:46:39] [Server thread/INFO]: [BisectHosting] Loading server plugin BisectHosting v1.0.4
[09:46:39] [Server thread/INFO]: [ShopGUIPlusSilkSpawnersBridge] Loading server plugin ShopGUIPlusSilkSpawnersBridge v1.8.0
[09:46:39] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.28.0
[09:46:39] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.3
[09:46:39] [Server thread/INFO]: [Rankup] Loading server plugin Rankup v3.14.4
[09:46:39] [Server thread/INFO]: [SmoothTimber] Loading server plugin SmoothTimber v1.27.1
[09:46:39] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[09:46:39] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.141
[09:46:39] [Server thread/INFO]:         __    
[09:46:39] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.141
[09:46:39] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[09:46:39] [Server thread/INFO]: 
[09:46:39] [Server thread/INFO]: [LuckPerms] Loading configuration...
[09:46:40] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[09:46:40] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[09:46:40] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[09:46:41] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2056ms)
[09:46:41] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[09:46:41] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[09:46:41] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[09:46:41] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[09:46:41] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[09:46:41] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.11.3-SNAPSHOT-921;5ac60f0
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Using history database whilst deleting disk history!        !!!
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    You will not be able to rollback edits after a user logs    !!!
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    out, recommended to disable delete-disk-on-logout if you    !!!
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    you want to have full history rollback functionality.       !!!
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    Disable use-database if you do not need to have rollback    !!!
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!    functionality and wish to disable this warning.             !!!
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!                                                                !!!
[09:46:41] [Server thread/WARN]: [com.fastasyncworldedit.core.Fawe] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[09:46:41] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[09:46:41] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[09:46:42] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[09:46:42] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[09:46:42] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[09:46:43] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[09:46:43] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.7
[09:46:43] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[09:46:44] [Server thread/INFO]: Preparing level "world"
[09:46:44] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 31 build(s) out of date.
You are running build 921, the latest version is build 952.
Update at https://www.spigotmc.org/resources/13932/
[09:46:44] [Server thread/INFO]: -------- World Settings For [world] --------
[09:46:44] [Server thread/INFO]: View Distance: 7
[09:46:44] [Server thread/INFO]: Simulation Distance: 10
[09:46:44] [Server thread/INFO]: Item Merge Radius: 4.0
[09:46:44] [Server thread/INFO]: Experience Merge Radius: 6.0
[09:46:44] [Server thread/INFO]: Mob Spawn Range: 6
[09:46:44] [Server thread/INFO]: Item Despawn Rate: 6000
[09:46:44] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[09:46:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[09:46:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[09:46:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[09:46:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Cane Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Carrot Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Potato Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Vine Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Kelp Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[09:46:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[09:46:44] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[09:46:44] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[09:46:44] [Server thread/INFO]: Max TNT Explosions: 100
[09:46:44] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[09:46:44] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[09:46:44] [Server thread/INFO]: View Distance: 7
[09:46:44] [Server thread/INFO]: Simulation Distance: 10
[09:46:44] [Server thread/INFO]: Item Merge Radius: 4.0
[09:46:44] [Server thread/INFO]: Experience Merge Radius: 6.0
[09:46:44] [Server thread/INFO]: Mob Spawn Range: 6
[09:46:44] [Server thread/INFO]: Item Despawn Rate: 6000
[09:46:44] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[09:46:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[09:46:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[09:46:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[09:46:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Cane Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Carrot Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Potato Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Vine Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Kelp Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[09:46:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[09:46:44] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[09:46:44] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[09:46:44] [Server thread/INFO]: Max TNT Explosions: 100
[09:46:44] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[09:46:44] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[09:46:44] [Server thread/INFO]: View Distance: 7
[09:46:44] [Server thread/INFO]: Simulation Distance: 10
[09:46:44] [Server thread/INFO]: Item Merge Radius: 4.0
[09:46:44] [Server thread/INFO]: Experience Merge Radius: 6.0
[09:46:44] [Server thread/INFO]: Mob Spawn Range: 6
[09:46:44] [Server thread/INFO]: Item Despawn Rate: 6000
[09:46:44] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[09:46:44] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[09:46:44] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[09:46:44] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[09:46:44] [Server thread/INFO]: Cactus Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Cane Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Melon Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Sapling Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Carrot Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Potato Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Wheat Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Vine Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Kelp Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[09:46:44] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[09:46:44] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[09:46:44] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[09:46:44] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[09:46:44] [Server thread/INFO]: Max TNT Explosions: 100
[09:46:44] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[09:46:44] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[09:46:45] [Server thread/INFO]: Time elapsed: 1083 ms
[09:46:45] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[09:46:46] [Server thread/INFO]: Time elapsed: 356 ms
[09:46:46] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[09:46:46] [Server thread/INFO]: Time elapsed: 85 ms
[09:46:46] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.7-DEV-200
[09:46:46] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[09:46:46] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.1.5
[09:46:48] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - paper  1.21.1-56-227c94a (MC: 1.21.1)
[09:46:48] [Server thread/INFO]: CMI hooked.
[09:46:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.1.5]
[09:46:48] [Server thread/INFO]: PlaceholderAPI hooked.
[09:46:48] [Server thread/INFO]: Updated (EN) language file. Took 72ms
[09:46:48] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[09:46:49] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[09:46:49] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[09:46:49] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[09:46:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[09:46:49] [Server thread/INFO]: [WorldGuard] Loading region data...
[09:46:50] [Server thread/INFO]: [CMI] Enabling CMI v9.7.6.11
[09:46:50] [Server thread/INFO]: _______________________________________________________
[09:46:50] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[09:46:50] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[09:46:50] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[09:46:50] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[09:46:50] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[09:46:50] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[09:46:50] [Server thread/INFO]: _______________________________________________________
[09:46:50] [Server thread/INFO]: Integrating PaperSpigot async methods
[09:46:50] [Server thread/INFO]: Vault found. (Loaded: true)
[09:46:50] [Server thread/INFO]: Citizens found. (Loaded: false)
[09:46:51] [Server thread/INFO]: Loaded (67) 45 Enabled and 22 Disabled modules into memory. Took 922ms
[09:46:51] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[09:46:51] [Server thread/INFO]: Initialized Cipher256 AES
[09:46:53] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 126ms
[09:46:53] [Server thread/INFO]: Loaded (1) custom text's into memory. Took 22ms
[09:46:53] [Server thread/INFO]: (RandomTeleportation) Can't find world with (WildRealm) name
[09:46:53] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Storage) name
[09:46:53] [Server thread/INFO]: (RandomTeleportation) Can't find world with (WildRealm_nether) name
[09:46:53] [Server thread/INFO]: (RandomTeleportation) Can't find world with (DeeperOceans) name
[09:46:53] [Server thread/INFO]: (RandomTeleportation) Can't find world with (WildRealm_the_end) name
[09:46:53] [Server thread/INFO]: 3.46.0 data base type detected
[09:46:53] [Server thread/INFO]: Loaded (-) SqLite into memory. Took 214ms
[09:46:53] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: CMIEconomy
[09:46:54] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 1ms
[09:46:54] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[09:46:54] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 0ms
[09:46:54] [Server thread/INFO]: Loaded (147) custom mob heads into memory. Took 22ms
[09:46:55] [Server thread/INFO]: Loaded (5) kits into memory. Took 11ms
[09:46:55] [Server thread/INFO]: Loaded (0) ranks into memory. Took 17ms
[09:46:55] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 3ms
[09:46:55] [Server thread/INFO]: Loaded (21) player data into memory. Took 68ms
[09:46:55] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 0ms
[09:46:55] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[09:46:55] [Server thread/INFO]: Loaded (9) custom alias into memory. Took 2ms
[09:46:56] [Server thread/INFO]: Loaded (-) Registered events into memory. Took 369ms
[09:46:56] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 6ms
[09:46:56] [Server thread/INFO]: Loaded (EN) language file into memory. Took 146ms
[09:46:56] [Server thread/INFO]: Loaded (245) worth values into memory. Took 76ms
[09:46:56] [Server thread/INFO]: Loaded (20) warps into memory. Took 13ms
[09:46:56] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[09:46:56] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[09:46:56] [Server thread/INFO]: Loaded (4) schedules into memory. Took 18ms
[09:46:56] [Server thread/INFO]: Loaded (1) holograms into memory. Took 253ms
[09:46:56] [Server thread/INFO]: Loaded (0) skin cache entries into memory. Took 1ms
[09:46:57] [Server thread/INFO]: Loaded (26) custom recipes into memory. Took 53ms
[09:46:57] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 0ms
[09:46:57] [Server thread/INFO]: Version 9.7.6.11 has been enabled
[09:46:57] [Server thread/INFO]: _______________________________________________________
[09:46:57] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[09:46:57] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[09:46:57] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" 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--].
[09:46:57] [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.
[09:46:57] [Server thread/INFO]: -------- World Settings For [WildRealm] --------
[09:46:57] [Server thread/INFO]: View Distance: 7
[09:46:57] [Server thread/INFO]: Simulation Distance: 10
[09:46:57] [Server thread/INFO]: Item Merge Radius: 4.0
[09:46:57] [Server thread/INFO]: Experience Merge Radius: 6.0
[09:46:57] [Server thread/INFO]: Mob Spawn Range: 6
[09:46:57] [Server thread/INFO]: Item Despawn Rate: 6000
[09:46:57] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[09:46:57] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[09:46:57] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[09:46:57] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[09:46:57] [Server thread/INFO]: Cactus Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Cane Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Melon Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Sapling Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Carrot Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Potato Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Wheat Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Vine Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Kelp Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[09:46:57] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[09:46:57] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[09:46:57] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[09:46:57] [Server thread/INFO]: Max TNT Explosions: 100
[09:46:57] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[09:46:57] [Server thread/INFO]: Preparing start region for dimension minecraft:wildrealm
[09:46:57] [Server thread/INFO]: Time elapsed: 164 ms
[09:46:57] [Server thread/INFO]: [WorldGuard] (WildRealm) TNT ignition is PERMITTED.
[09:46:57] [Server thread/INFO]: [WorldGuard] (WildRealm) Lighters are PERMITTED.
[09:46:57] [Server thread/INFO]: [WorldGuard] (WildRealm) Lava fire is PERMITTED.
[09:46:57] [Server thread/INFO]: [WorldGuard] (WildRealm) Fire spread is UNRESTRICTED.
[09:46:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WildRealm'
[09:46:57] [Server thread/INFO]: -------- World Settings For [Storage] --------
[09:46:57] [Server thread/INFO]: View Distance: 7
[09:46:57] [Server thread/INFO]: Simulation Distance: 10
[09:46:57] [Server thread/INFO]: Item Merge Radius: 4.0
[09:46:57] [Server thread/INFO]: Experience Merge Radius: 6.0
[09:46:57] [Server thread/INFO]: Mob Spawn Range: 6
[09:46:57] [Server thread/INFO]: Item Despawn Rate: 6000
[09:46:57] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[09:46:57] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[09:46:57] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[09:46:57] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[09:46:57] [Server thread/INFO]: Cactus Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Cane Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Melon Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Sapling Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Carrot Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Potato Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Wheat Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Vine Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Kelp Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[09:46:57] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[09:46:57] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[09:46:57] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[09:46:57] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[09:46:57] [Server thread/INFO]: Max TNT Explosions: 100
[09:46:57] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[09:46:57] [Server thread/INFO]: Preparing start region for dimension minecraft:storage
[09:46:58] [Server thread/INFO]: Time elapsed: 126 ms
[09:46:58] [Server thread/INFO]: [WorldGuard] (Storage) TNT ignition is PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (Storage) Lighters are PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (Storage) Lava fire is PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (Storage) Fire spread is UNRESTRICTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Storage'
[09:46:58] [Server thread/INFO]: -------- World Settings For [WildRealm_nether] --------
[09:46:58] [Server thread/INFO]: View Distance: 7
[09:46:58] [Server thread/INFO]: Simulation Distance: 10
[09:46:58] [Server thread/INFO]: Item Merge Radius: 4.0
[09:46:58] [Server thread/INFO]: Experience Merge Radius: 6.0
[09:46:58] [Server thread/INFO]: Mob Spawn Range: 6
[09:46:58] [Server thread/INFO]: Item Despawn Rate: 6000
[09:46:58] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[09:46:58] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[09:46:58] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[09:46:58] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[09:46:58] [Server thread/INFO]: Cactus Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Cane Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Melon Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Sapling Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Carrot Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Potato Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Wheat Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Vine Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Kelp Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[09:46:58] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[09:46:58] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[09:46:58] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[09:46:58] [Server thread/INFO]: Max TNT Explosions: 100
[09:46:58] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[09:46:58] [Server thread/INFO]: Preparing start region for dimension minecraft:wildrealm_nether
[09:46:58] [Server thread/INFO]: Time elapsed: 105 ms
[09:46:58] [Server thread/INFO]: [WorldGuard] (WildRealm_nether) TNT ignition is PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (WildRealm_nether) Lighters are PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (WildRealm_nether) Lava fire is PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (WildRealm_nether) Fire spread is UNRESTRICTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WildRealm_nether'
[09:46:58] [Server thread/INFO]: -------- World Settings For [DeeperOceans] --------
[09:46:58] [Server thread/INFO]: View Distance: 7
[09:46:58] [Server thread/INFO]: Simulation Distance: 10
[09:46:58] [Server thread/INFO]: Item Merge Radius: 4.0
[09:46:58] [Server thread/INFO]: Experience Merge Radius: 6.0
[09:46:58] [Server thread/INFO]: Mob Spawn Range: 6
[09:46:58] [Server thread/INFO]: Item Despawn Rate: 6000
[09:46:58] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[09:46:58] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[09:46:58] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[09:46:58] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[09:46:58] [Server thread/INFO]: Cactus Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Cane Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Melon Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Sapling Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Carrot Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Potato Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Wheat Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Vine Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Kelp Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[09:46:58] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[09:46:58] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[09:46:58] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[09:46:58] [Server thread/INFO]: Max TNT Explosions: 100
[09:46:58] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[09:46:58] [Server thread/INFO]: Preparing start region for dimension minecraft:deeperoceans
[09:46:58] [Server thread/INFO]: Time elapsed: 83 ms
[09:46:58] [Server thread/INFO]: [WorldGuard] (DeeperOceans) TNT ignition is PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (DeeperOceans) Lighters are PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (DeeperOceans) Lava fire is PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (DeeperOceans) Fire spread is UNRESTRICTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'DeeperOceans'
[09:46:58] [Server thread/INFO]: -------- World Settings For [WildRealm_the_end] --------
[09:46:58] [Server thread/INFO]: View Distance: 7
[09:46:58] [Server thread/INFO]: Simulation Distance: 10
[09:46:58] [Server thread/INFO]: Item Merge Radius: 4.0
[09:46:58] [Server thread/INFO]: Experience Merge Radius: 6.0
[09:46:58] [Server thread/INFO]: Mob Spawn Range: 6
[09:46:58] [Server thread/INFO]: Item Despawn Rate: 6000
[09:46:58] [Server thread/INFO]: Arrow Despawn Rate: 300 Trident Respawn Rate:1200
[09:46:58] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[09:46:58] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[09:46:58] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[09:46:58] [Server thread/INFO]: Cactus Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Cane Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Melon Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Sapling Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Carrot Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Potato Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: TorchFlower Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Wheat Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Vine Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Kelp Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: PitcherPlant Growth Modifier: 100%
[09:46:58] [Server thread/INFO]: Entity Activation Range: An 16 / Mo 24 / Ra 48 / Mi 8 / Tiv false / Isa false
[09:46:58] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
[09:46:58] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[09:46:58] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[09:46:58] [Server thread/INFO]: Max TNT Explosions: 100
[09:46:58] [Server thread/INFO]: Tile Max Tick Time: 1000ms Entity max Tick Time: 1000ms
[09:46:58] [Server thread/INFO]: Preparing start region for dimension minecraft:wildrealm_the_end
[09:46:58] [Server thread/INFO]: Time elapsed: 97 ms
[09:46:58] [Server thread/INFO]: [WorldGuard] (WildRealm_the_end) TNT ignition is PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (WildRealm_the_end) Lighters are PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (WildRealm_the_end) Lava fire is PERMITTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] (WildRealm_the_end) Fire spread is UNRESTRICTED.
[09:46:58] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WildRealm_the_end'
[09:46:58] [Server thread/INFO]: [Multiverse-Core] 8 - World(s) loaded.
[09:46: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.
[09:46:58] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[09:46:58] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3597)
[09:46:58] [Server thread/INFO]: [Citizens] Loading external libraries
[09:46:59] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[09:46:59] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[09:47:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[09:47:00] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[09:47:00] [Server thread/INFO]: [Lands] Enabling Lands v7.9.9
[09:47:00] [Server thread/INFO]: [Lands]  _                        _      
[09:47:00] [Server thread/INFO]: [Lands] | |                      | |     
[09:47:00] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[09:47:00] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[09:47:00] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[09:47:00] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[09:47:00] [Server thread/INFO]: [Lands] Version: 7.9.9 Previous: 7.9.9
[09:47:00] [Server thread/INFO]: [Lands] Server: 1.21.1 running Paper
[09:47:00] [Server thread/INFO]: [Lands] Licensed to: 476378
[09:47:00] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[09:47:00] [Server thread/INFO]: [Lands] Discord: https://discord.gg/B4MAJVk
[09:47:00] [Server thread/INFO]: [Lands] Wiki: https://github.com/Angeschossen/Lands/wiki
[09:47:00] [Server thread/INFO]: [Lands]  
[09:47:00] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated CMI as hologram manager.
[09:47:00] [Server thread/INFO]: [Lands] [Integrations] Added support for the vanish feature of the plugin CMI.
[09:47:00] [Server thread/INFO]: [Lands] Performing initial data load.
[09:47:01] [Server thread/INFO]: [Lands] There are currently 3 created land(s).
[09:47:01] [Server thread/INFO]: [Lands] Initial data load took 320 ms.
[09:47:01] [Server thread/INFO]: [packetevents] Enabling packetevents v2.5.0+dc015dc45-SNAPSHOT
[09:47:01] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[09:47:01] [Server thread/INFO]: [SilkSpawners] Enabling SilkSpawners v8.1.0
[09:47:01] [packetevents-update-check-thread/INFO]: [packetevents] There is an update available for PacketEvents! Your build: (2.5.0+dc015dc45-SNAPSHOT) | Latest release: (2.5.0)
[09:47:01] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[09:47:01] [Server thread/INFO]: [SilkSpawners] Mimic was not found and support is disabled
[09:47:01] [Server thread/INFO]: [SilkSpawners] Loading support for v1_21_R1
[09:47:01] [Server thread/INFO]: [SilkSpawners] AutoUpdater is enabled and now running.
[09:47:01] [Server thread/INFO]: [SilkSpawners] BarAPI is disabled due to config setting.
[09:47:01] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.0
[09:47:01] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[09:47:01] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.1-SNAPSHOT (build 7079-DEV)
[09:47:02] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1390), impl for Spigot v1.3.1-SNAPSHOT (build 7079-DEV) 
[09:47:04] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.4 
[09:47:04] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 21. 
[09:47:04] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[09:47:04] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[09:47:04] [Server thread/INFO]: +> [Denizen]  
[09:47:04] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[09:47:04] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[09:47:04] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[09:47:04] [Server thread/INFO]: +> [Denizen] version: 1.3.1-SNAPSHOT (build 7079-DEV) 
[09:47:04] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[09:47:07] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[09:47:09] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[09:47:09] [Server thread/INFO]: +> [Denizen] Loaded 153 core commands and 30 core object types, at 7931ms from start. 
[09:47:10] [Server thread/INFO]: +> [ScriptRegistry] Loading 14 script files... 
[09:47:10] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 65ms, processing 87ms. 
[09:47:10] [Server thread/INFO]: +> [Denizen] Final full init took 8197ms. 
[09:47:10] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.54
[09:47:10] [Server thread/WARN]: [BigDoors] Failed to parse material: "STRPPED_ACACIA_LOG"
[09:47:10] [Server thread/INFO]: [BigDoors] Power Block Types:
[09:47:10] [Server thread/INFO]: [BigDoors]  - JACK_O_LANTERN
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLUE_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - NETHER_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - MUSHROOM_STEM
[09:47:10] [Server thread/INFO]: [BigDoors]  - SANDSTONE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - ORANGE_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - ACACIA_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - DARK_PRISMARINE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - RED_NETHER_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - CRIMSON_STEM
[09:47:10] [Server thread/INFO]: [BigDoors]  - YELLOW_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_ANDESITE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_DIORITE
[09:47:10] [Server thread/INFO]: [BigDoors]  - QUARTZ_PILLAR
[09:47:10] [Server thread/INFO]: [BigDoors]  - PINK_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_JUNGLE_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - BARRIER
[09:47:10] [Server thread/INFO]: [BigDoors]  - PURPUR_PILLAR
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLUE_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - BIRCH_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - EXPOSED_CUT_COPPER_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - GREEN_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - PODZOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - MAGMA_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - PURPLE_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - DIORITE
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLACK_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLACK_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - GREEN_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - SPRUCE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_WARPED_STEM
[09:47:10] [Server thread/INFO]: [BigDoors]  - CRACKED_POLISHED_BLACKSTONE_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - MUD_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - NETHERRACK
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_DEEPSLATE
[09:47:10] [Server thread/INFO]: [BigDoors]  - WHITE_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - CRIMSON_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHISELED_NETHER_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - GRANITE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - GREEN_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - DARK_OAK_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - NETHER_BRICK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - PRISMARINE_BRICK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - GRASS_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - GRAY_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - WHITE_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - STONE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHISELED_DEEPSLATE
[09:47:10] [Server thread/INFO]: [BigDoors]  - OAK_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - BROWN_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - PRISMARINE_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHISELED_QUARTZ_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHERRY_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - OAK_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLACK_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHISELED_POLISHED_BLACKSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - GRANITE
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLUE_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - SMOOTH_QUARTZ
[09:47:10] [Server thread/INFO]: [BigDoors]  - SMOOTH_RED_SANDSTONE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_CRIMSON_STEM
[09:47:10] [Server thread/INFO]: [BigDoors]  - PURPLE_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - CYAN_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - MOSSY_COBBLESTONE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - DEEPSLATE
[09:47:10] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_TILE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - RED_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - PACKED_MUD
[09:47:10] [Server thread/INFO]: [BigDoors]  - OAK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - YELLOW_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - MOSSY_STONE_BRICK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - ACACIA_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_SPRUCE_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - STONE_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - BROWN_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - SPRUCE_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - EXPOSED_COPPER
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_GRANITE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLACK_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - QUARTZ_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - BOOKSHELF
[09:47:10] [Server thread/INFO]: [BigDoors]  - RED_MUSHROOM_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - SNOW_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - PURPLE_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_TILES
[09:47:10] [Server thread/INFO]: [BigDoors]  - CRACKED_STONE_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - CRIMSON_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_BLACKSTONE_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIGHT_BLUE_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - GRAY_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - CRACKED_NETHER_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIME_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - ICE
[09:47:10] [Server thread/INFO]: [BigDoors]  - MANGROVE_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - SEA_LANTERN
[09:47:10] [Server thread/INFO]: [BigDoors]  - IRON_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHERRY_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHISELED_RED_SANDSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - BRICK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - MOSSY_COBBLESTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - COBBLESTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_OAK_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - DARK_OAK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - RED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - SMOOTH_BASALT
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_BIRCH_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - BIRCH_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_GRANITE
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_DARK_OAK_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - RED_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIME_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - QUARTZ_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_DIORITE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - GRAVEL
[09:47:10] [Server thread/INFO]: [BigDoors]  - CRYING_OBSIDIAN
[09:47:10] [Server thread/INFO]: [BigDoors]  - MOSS_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - MAGENTA_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - DARK_OAK_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - BONE_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - WARPED_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - REINFORCED_DEEPSLATE
[09:47:10] [Server thread/INFO]: [BigDoors]  - COBBLESTONE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - ORANGE_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_DARK_OAK_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - OBSIDIAN
[09:47:10] [Server thread/INFO]: [BigDoors]  - DARK_OAK_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_BLACKSTONE_BRICK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - SMOOTH_STONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIGHT_GRAY_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLUE_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIGHT_GRAY_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - PURPUR_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_CHERRY_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - CUT_RED_SANDSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHERRY_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - MUD
[09:47:10] [Server thread/INFO]: [BigDoors]  - ACACIA_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - GRAY_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_OAK_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - SMOOTH_SANDSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - SPRUCE_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - REDSTONE_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_MANGROVE_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLACKSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - SMOOTH_QUARTZ_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - SMOOTH_RED_SANDSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - BROWN_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - GREEN_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - WARPED_STEM
[09:47:10] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_BRICK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - PURPLE_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLACKSTONE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - GILDED_BLACKSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - MANGROVE_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - BIRCH_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - DIRT
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIGHT_BLUE_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - MAGENTA_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHISELED_COPPER
[09:47:10] [Server thread/INFO]: [BigDoors]  - TARGET
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIME_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - RED_SANDSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - DIAMOND_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - RED_SANDSTONE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIGHT_GRAY_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - LAPIS_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - PINK_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - JUNGLE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - PACKED_ICE
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIGHT_BLUE_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - DIORITE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - MAGENTA_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - PINK_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - CYAN_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - ACACIA_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIGHT_GRAY_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - MANGROVE_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - CALCITE
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_DEEPSLATE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - COBBLED_DEEPSLATE
[09:47:10] [Server thread/INFO]: [BigDoors]  - PRISMARINE
[09:47:10] [Server thread/INFO]: [BigDoors]  - BLUE_ICE
[09:47:10] [Server thread/INFO]: [BigDoors]  - OXIDIZED_COPPER
[09:47:10] [Server thread/INFO]: [BigDoors]  - GRAY_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - NETHERITE_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - WHITE_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - ORANGE_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHISELED_SANDSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - MUD_BRICK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIME_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - BIRCH_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHISELED_STONE_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - RED_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - SOUL_SOIL
[09:47:10] [Server thread/INFO]: [BigDoors]  - WHITE_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - JUNGLE_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_JUNGLE_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHISELED_BOOKSHELF
[09:47:10] [Server thread/INFO]: [BigDoors]  - QUARTZ_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - STONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - YELLOW_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - SOUL_SAND
[09:47:10] [Server thread/INFO]: [BigDoors]  - STONE_BRICK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - JUNGLE_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - CYAN_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - PRISMARINE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - EMERALD_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - BROWN_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - CHERRY_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - JUNGLE_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - OXIDIZED_CUT_COPPER
[09:47:10] [Server thread/INFO]: [BigDoors]  - SANDSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - CRACKED_DEEPSLATE_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - DEEPSLATE_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - ORANGE_CONCRETE
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_BASALT
[09:47:10] [Server thread/INFO]: [BigDoors]  - PINK_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - BROWN_MUSHROOM_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_MANGROVE_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - PURPUR_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_SPRUCE_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_ANDESITE
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_BLACKSTONE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - SPRUCE_PLANKS
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_ACACIA_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - WARPED_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - COBBLED_DEEPSLATE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - MAGENTA_GLAZED_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - OAK_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - SMOOTH_SANDSTONE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - CYAN_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_BIRCH_WOOD
[09:47:10] [Server thread/INFO]: [BigDoors]  - EXPOSED_CUT_COPPER
[09:47:10] [Server thread/INFO]: [BigDoors]  - MANGROVE_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - DARK_PRISMARINE
[09:47:10] [Server thread/INFO]: [BigDoors]  - RED_NETHER_BRICK_STAIRS
[09:47:10] [Server thread/INFO]: [BigDoors]  - DRIED_KELP_BLOCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - CUT_SANDSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - POLISHED_BLACKSTONE
[09:47:10] [Server thread/INFO]: [BigDoors]  - YELLOW_TERRACOTTA
[09:47:10] [Server thread/INFO]: [BigDoors]  - STRIPPED_CHERRY_LOG
[09:47:10] [Server thread/INFO]: [BigDoors]  - CRACKED_DEEPSLATE_TILES
[09:47:10] [Server thread/INFO]: [BigDoors]  - LIGHT_BLUE_WOOL
[09:47:10] [Server thread/INFO]: [BigDoors]  - MOSSY_STONE_BRICKS
[09:47:10] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[09:47:10] [Server thread/INFO]: [BigDoors]  - BEDROCK
[09:47:10] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[09:47:10] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[09:47:10] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[09:47:10] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[09:47:10] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[09:47:10] [Server thread/INFO]: [BigDoors]  - LAVA
[09:47:10] [Server thread/INFO]: [BigDoors]  - WATER
[09:47:10] [Server thread/INFO]: [BigDoors]  - SNOW
[09:47:10] [Server thread/INFO]: [BigDoors]  - FERN
[09:47:10] [Server thread/INFO]: [BigDoors]  - SHORT_GRASS
[09:47:10] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[09:47:10] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[09:47:10] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[09:47:10] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[09:47:10] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[09:47:10] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[09:47:10] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: BigDoors
[09:47:10] [Server thread/INFO]: [Lands] Nag author(s) of plugin BigDoors. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[09:47:10] [Server thread/INFO]: [BigDoors] Successfully hooked into "Lands"!
[09:47:11] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44-SNAPSHOT
[09:47:11] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[09:47:11] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R1) (MC: 1.21.1)
[09:47:11] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1433
[09:47:11] [Server thread/INFO]: [LibsDisguises] Build Date: 27/08/2024 01:30
[09:47:11] [Server thread/INFO]: [LibsDisguises] Hosted by BisectHosting! Premium enabled!
[09:47:11] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[09:47:11] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'false', LD will hide oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[09:47:14] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[09:47:14] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[09:47:14] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[09:47:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[09:47:15] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[09:47:15] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.98.1
[09:47:15] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[09:47:16] [Server thread/INFO]: [Multiverse-Portals] 4 - Portals(s) loaded
[09:47:16] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[09:47:16] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[09:47:16] [Server thread/INFO]: [Depenizen] Enabling Depenizen v2.1.1 (build 864)
[09:47:16] [Server thread/INFO]: +> [Depenizen] Depenizen loading... 
[09:47:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'LuckPerms'! 
[09:47:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldEdit'! 
[09:47:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: denizen [2.0.0]
[09:47:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'PlaceholderAPI'! 
[09:47:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'PlayerPoints'! 
[09:47:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'WorldGuard'! 
[09:47:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'LibsDisguises'! 
[09:47:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'Shopkeepers'! 
[09:47:16] [Server thread/INFO]: +> [Depenizen] Loaded bridge for 'BigDoors'! 
[09:47:16] [Server thread/INFO]: +> [Depenizen] Depenizen loaded! 8 plugin bridge(s) loaded (of 42 available) 
[09:47:16] [Server thread/INFO]: [BreweryX] Enabling BreweryX v3.3.3
[09:47:16] [Server thread/INFO]: <<Brews>> ERROR: something: Recipe Name missing or invalid!
[09:47:16] [Server thread/INFO]: <<Brews>> ERROR: Loading the Recipe with id: 'something' failed!
[09:47:16] [Server thread/INFO]: <<Brews>> ERROR: No ingredients for: Twirl & Hurl
[09:47:16] [Server thread/INFO]: <<Brews>> ERROR: Loading the Recipe with id: 'twirlnhurl' failed!
[09:47:16] [Server thread/INFO]: <<Brews>> [BreweryXGuiEditorAddon] Loading BreweryXGuiEditorAddon - vREV-1.0 by Jsinco
[09:47:16] [Server thread/INFO]: <<Brews>> [BreweryXGuiEditorAddon] BreweryXGuiEditorAddon enabled!
[09:47:16] [Server thread/INFO]: <<Brews>> Loaded 1 addon(s)
[09:47:16] [Server thread/INFO]: <<Brews>> Minecraft version: 1.21
[09:47:16] [Server thread/INFO]: <<Brews>> DataManager created: FlatFile
[09:47:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: breweryx [3.3.3]
[09:47:17] [Server thread/INFO]: <<Brews>> Using scheduler: PaperScheduler
[09:47:17] [Server thread/INFO]: <<Brews>> BreweryX enabled!
[09:47:17] [Server thread/INFO]: [BisectHosting] Enabling BisectHosting v1.0.4
[09:47:17] [Server thread/INFO]: [ShopGUIPlusSilkSpawnersBridge] Enabling ShopGUIPlusSilkSpawnersBridge v1.8.0
[09:47:17] [Server thread/INFO]: [SilkSpawners] WorldGuard was found and support is enabled
[09:47:17] [Server thread/INFO]: [SilkSpawners] Mimic was not found and support is disabled
[09:47:17] [Server thread/INFO]: [SilkSpawners] Loading support for v1_21_R1
[09:47:17] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for SilkSpawners.
[09:47:17] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.28.0
[09:47:17] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.3
[09:47:17] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.3]  Enabled - By Rigby and fernferret
[09:47:17] [Server thread/INFO]: [Rankup] Enabling Rankup v3.14.4
[09:47:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rankup [3.14.4]
[09:47:17] [Server thread/INFO]: [SmoothTimber] Enabling SmoothTimber v1.27.1
[09:47:17] [Server thread/INFO]: SmoothTimber || You're currently using the supported Minecraft Version 1.21.1 (Core v1_20x)
[09:47:17] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'Lands' for plugin 'Lands'...
[09:47:17] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: SmoothTimber
[09:47:17] [Server thread/INFO]: [Lands] Nag author(s) of plugin SmoothTimber. It uses the deprecated LandsIntegration of Lands: https://github.com/Angeschossen/LandsAPI/wiki/API-Update
[09:47:17] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'Lands' for plugin 'Lands'...
[09:47:17] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'PlaceholderApi' for plugin 'PlaceholderAPI'...
[09:47:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: smoothtimber [1.27.1]
[09:47:17] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'PlaceholderApi' for plugin 'PlaceholderAPI'...
[09:47:17] [Server thread/INFO]: SmoothTimber || Trying to enable compatibility addon 'WorldGuard' for plugin 'WorldGuard'...
[09:47:17] [Server thread/INFO]: SmoothTimber || Successfully enabled compatbility addon 'WorldGuard' for plugin 'WorldGuard'...
[09:47:18] [pool-91-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (42aad8401b73c52bb4edd11d9a73aa8a6e1619c1)
[09:47:18] [Server thread/INFO]: [spark] Starting background profiler...
[09:47:19] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[09:47:19] [Server thread/INFO]: Done preparing level "world" (35.106s)
[09:47:19] [Server thread/INFO]: Running delayed init tasks
[09:47:19] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[09:47:19] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[09:47:19] [Craft Scheduler Thread - 7 - CMILib/INFO]: New version of CMILib was detected. Please update it
[09:47:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.2.7]
[09:47:19] [Server thread/INFO]: [CMI] Permission plugin: LuckPerms5.4.141
[09:47:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.7.6.11]
[09:47:19] [Server thread/INFO]: [CMI] PlaceholderAPI hooked.
[09:47:19] [Server thread/INFO]: [SilkSpawners] Result from AutoUpdater is: NO_UPDATE
[09:47:19] [Server thread/INFO]: [BigDoors] Checking for updates...
[09:47:19] [ForkJoinPool.commonPool-worker-10/INFO]: [BigDoors] No new updates available.
[09:47:21] [Server thread/INFO]: [Citizens] Loaded 52 NPCs.
[09:47:21] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[09:47:21] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[09:47:21] [Server thread/INFO]: [Lands] Successfully added region provider: WorldGuard Type: SERVER
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled partial tag '<server...' with '(Base-Object)', and cached result. 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&8> with '', and cached result. 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&c> with '', and cached result. 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&r> with '', and cached result. 
[09:47:21] [Server thread/INFO]: +> [ScriptEvent] Processed 151 script event paths. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&color[#C35D36]> with '', and cached result. 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&o> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Applying property 'potion_effects' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]:  ERROR
                  For mechanism 'potion_effects' with value '[type=THICK]', while applying properties to object 'i@potion'!
                 Error Message: Invalid mechanism specified: potion_effects 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&color[#72982A]> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&color[#6E5983]> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&e> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&2> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&3> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Applying property 'potion_effects' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]:  ERROR
                  For mechanism 'potion_effects' with value '[type=WATER]', while applying properties to object 'i@potion'!
                 Error Message: Invalid mechanism specified: potion_effects 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'hides' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&color[#87C3E8]> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'color' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&color[#604E48]> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'color' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'hides' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&color[#167200]> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&5> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'hides' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&d> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'hides' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'color' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'hides' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&color[#A82F2F]> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'color' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&color[#73173A]> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'color' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'hides' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'color' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'hides' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Static Tag Processing] Pre-Filled tag <&color[#81B40C]> with '', and cached result. 
[09:47:21] [Server thread/INFO]: Adjust mechanism 'custom_model_data' on object of type 'ItemTag'... 
[09:47:21] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[09:47:21] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2024/10/30 09:47:02 
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.98.1 ]================================
[09:47:21] [Server thread/INFO]: [ShopGUIPlus]  
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Using SilkSpawners for spawners support.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded 8 main menu items.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 6 items.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 18 items.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 8 items.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 16 items.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 30 items.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 13 items.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 16 items.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 shops with total of 107 items.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[09:47:21] [Server thread/INFO]: [ShopGUIPlus]  
[09:47:21] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[09:47:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[09:47:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: ascii [1.0.0]
[09:47:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[09:47:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[09:47:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[09:47:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[09:47:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: healthbar [1.3]
[09:47:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[09:47:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[09:47:21] [Server thread/INFO]: 9 placeholder hook(s) registered!
[09:47:21] [Server thread/INFO]: Done (86.648s)! For help, type "help"
[09:47:21] [Server thread/INFO]: Timings Reset
[09:47:21] [Server thread/INFO]: [CMI] DiscordSRV found. (Loaded: true)
[09:47:21] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (2 methods)
[09:47:22] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Vault economy into economy system. Name: CMIEconomy
[09:47:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lands [7.9.9]
[09:47:22] [Server thread/INFO]: [Lands] [Integrations] Successfully registered placeholders at PlaceholderAPI. More info: https://github.com/Angeschossen/Lands/wiki/PlaceholderAPI-Placeholders#placeholders
[09:47:22] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated FastAsyncWorldEdit. 
[09:47:22] [Server thread/INFO]: [Lands] [Integrations] Successfully loaded LuckPerms contexts. More information: https://github.com/Angeschossen/Lands/wiki/Luckperms-Context
[09:47:22] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[09:47:22] [ForkJoinPool.commonPool-worker-10/INFO]: [Lands] Saved 2 name changes to the database.
[09:47:23] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2981ms or 59 ticks behind
[09:47:23] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[09:47:24] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[09:47:24] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[09:47:24] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[09:47:24] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[09:47:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.28.0]
[09:47:24] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[09:47:27] [ForkJoinPool.commonPool-worker-10/INFO]: [Lands] There is a new version available: 7.10.0
[09:48:05] [User Authenticator #0/INFO]: UUID of player cal_exe is 7f792544-36f5-4d01-afaf-0b104dc0cde7
[09:48:23] [Server thread/INFO]:  {+} cal_exe
[09:48:23] [Server thread/INFO]: cal_exe[/79.57.83.211:53284] logged in with entity id 900 at ([WildRealm]363.0343238698518, 80.0, -175.1805496071919)
[09:48:23] [Server thread/INFO]: Running script event 'PlayerJoins', event='after player joins' for script 'CAL_ENTITIES_KILL' 
[09:48:23] [Server thread/INFO]: Starting InstantQueue 'CAL_ENTITIES_KILL_1_BenjaminKs' with player 'cal_exe'... 
[09:48:23] [Server thread/INFO]: +- Queue 'CAL_ENTITIES_KILL_1_BenjaminKs' Executing: (line 309) kill <player.location.find.living_entities.within[20]> ---------+ 
[09:48:23] [Server thread/INFO]: Filled tag <player.location.find.living_entities.within[20]> with 'li@ (Size 0)'. 
[09:48:23] [Server thread/INFO]: +> Executing 'KILL': entities=''   
[09:48:23] [Server thread/INFO]: Completing queue 'CAL_ENTITIES_KILL_1_BenjaminKs' in 7ms. 
[09:48:27] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/934, uuid='baaf7ca8-e084-4f24-8353-da41f5ada9e0', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:27] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/948, uuid='0012fb95-e9d7-48e2-a52c-aeb8e0511436', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:28] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1015, uuid='c4ff57a3-634e-46b1-84d4-0967af7aa323', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:29] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1109, uuid='08e8ce75-52a9-49d5-be50-3c56ce94fb68', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:29] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1137, uuid='e8f7a71d-a7f5-4054-a1aa-38334d6ffeec', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:29] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1154, uuid='78ffc4fc-a09e-4ad7-93f5-0f0f161947cd', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:30] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1181, uuid='963a90d4-e4ff-457b-9305-529177b4af7c', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:30] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1261, uuid='0b17e423-15fa-41c4-aa7b-c2b054cc3f23', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:31] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1306, uuid='66cf8920-0c03-4378-a4c4-7d755320aa28', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:31] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1332, uuid='26aebed1-3665-4bfe-b1f4-da7a6b354039', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:31] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1364, uuid='f3dc562c-44af-4fd5-a9d9-db89fdfca1be', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:33] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1534, uuid='69363d70-8f6c-4dae-bc75-7d46bd8ff356', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:34] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1620, uuid='369817bb-7bfb-49e8-bc8a-5c78b1a790e6', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:34] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1652, uuid='5a2959b1-f125-4b30-bb9e-e890a162bfd0', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:35] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1755, uuid='6a19db0e-17c4-4fcf-ad98-652a358217b8', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:35] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1763, uuid='6423e595-b670-4c17-b478-510ade53629d', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:35] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1771, uuid='5c53dfa3-73f2-4750-bc92-913a9df0c672', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:35] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/1773, uuid='4bcc1384-34b5-4317-aec1-61c7575d1b66', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:36] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:48:36] [Paper Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
[09:48:36] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:36] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:48:36] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:48:36] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:48:36] [Paper Watchdog Thread/ERROR]: Entity UUID: 68d4a3e3-bbe8-4c11-838b-1aa300cd8dc8
[09:48:36] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:48:36] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:48:36] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:48:36] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:36] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:48:36] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:48:36] [Paper Watchdog Thread/ERROR]:     Stack:
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$static$4(EntitySelector.java:28)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fc788fa8.test(Unknown Source)
[09:48:36] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:48:36] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:48:36] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:48:36] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:48:36] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:48:36] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:48:36] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:48:36] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:48:36] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:36] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:48:36] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:37] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2025, uuid='3c780392-5fdb-430e-a628-5d14e11e0e47', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:38] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2111, uuid='416bd67d-8817-4bde-8d70-6733ab3fd229', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:38] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2168, uuid='c28646c2-4cb0-4856-96ba-756da5d27d78', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:39] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2195, uuid='57c49e9b-d834-475f-bd58-a674911f5269', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:40] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2312, uuid='46127f0a-001c-47ca-9296-0ef8ce843014', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:41] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:48:41] [Paper Watchdog Thread/ERROR]: The server has not responded for 15 seconds! Creating thread dump
[09:48:41] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:41] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:48:41] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:48:41] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:48:41] [Paper Watchdog Thread/ERROR]: Entity UUID: 941c9f98-7d60-48ba-938c-e34a083e35ed
[09:48:41] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:48:41] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:48:41] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:48:41] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:41] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:48:41] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:48:41] [Paper Watchdog Thread/ERROR]:     Stack:
[09:48:41] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ImmutableCollections$SetN.probe(ImmutableCollections.java:1024)
[09:48:41] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ImmutableCollections$SetN.contains(ImmutableCollections.java:945)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.core.Holder$Reference.is(Holder.java:169)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.is(BlockBehaviour.java:1296)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.onClimbable(LivingEntity.java:2075)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.isCollidable(LivingEntity.java:3833)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.isPushable(LivingEntity.java:3828)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.canCollideWithBukkit(LivingEntity.java:3840)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$pushable$8(EntitySelector.java:69)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fe4cd040.test(Unknown Source)
[09:48:41] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:48:41] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:48:41] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:48:41] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:48:41] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:48:41] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:48:41] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:48:41] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:48:41] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:41] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:48:41] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:41] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2499, uuid='941c9f98-7d60-48ba-938c-e34a083e35ed', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:42] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2525, uuid='257f29b5-e68f-49c2-8ea3-63b236c17399', l='ServerLevel[WildRealm]', x=361.58, y=80.00, z=-176.53, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:42] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2619, uuid='a5f6430b-0062-432a-8b6c-50682e0e9c70', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:43] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2643, uuid='8409c6ae-17e3-4591-9f11-261bf53fe7fc', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:43] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2692, uuid='8288c328-a161-49b4-b79c-9753638e8cd6', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:43] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2739, uuid='1a24022c-9a75-4d5e-8325-c1f80353abb2', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:45] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2920, uuid='3bdf9a62-0517-473c-9901-65bfd989ce80', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:45] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/2951, uuid='ed6de6a3-a3de-4a30-b9a9-810f703c711c', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:46] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:48:46] [Paper Watchdog Thread/ERROR]: The server has not responded for 20 seconds! Creating thread dump
[09:48:46] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:46] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:48:46] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:48:46] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:48:46] [Paper Watchdog Thread/ERROR]: Entity UUID: 570e87f2-62d3-4656-b077-97d0ada148a5
[09:48:46] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:48:46] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:48:46] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:48:46] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:46] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:48:46] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:48:46] [Paper Watchdog Thread/ERROR]:     Stack:
[09:48:46] [Paper Watchdog Thread/ERROR]:         it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap.get(Object2ObjectOpenHashMap.java:327)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.scores.Scoreboard.getPlayersTeam(Scoreboard.java:318)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Entity.getTeam(Entity.java:3425)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.TamableAnimal.getTeam(TamableAnimal.java:227)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$pushable$8(EntitySelector.java:74)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fe4cd040.test(Unknown Source)
[09:48:46] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:48:46] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:48:46] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:48:46] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:48:46] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:48:46] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:48:46] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:48:46] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:48:46] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:46] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:48:46] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:47] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3194, uuid='ded61871-8328-4a35-be01-af81d17e8d2c', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:48] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3226, uuid='339fb369-981c-402d-8fac-5069e99d7cd5', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:48] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3248, uuid='523c4140-eaf2-4ad3-859e-5411bb9d2778', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:48] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3274, uuid='ee250cbd-2e69-46aa-befe-fd4d8294c9cd', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:49] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3374, uuid='e768de93-aab7-4653-803f-7c9c472e5706', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:49] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3402, uuid='80e3827b-b920-4e20-9dd5-210176b9a4e7', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:50] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3505, uuid='3244cfe3-66a8-4075-bec4-b93970dc9e86', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:51] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:48:51] [Paper Watchdog Thread/ERROR]: The server has not responded for 25 seconds! Creating thread dump
[09:48:51] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:51] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:48:51] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:48:51] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:48:51] [Paper Watchdog Thread/ERROR]: Entity UUID: c8e68b53-26a9-40a6-9005-6e3609e7a9d2
[09:48:51] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:48:51] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:48:51] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:48:51] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:51] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:48:51] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:48:51] [Paper Watchdog Thread/ERROR]:     Stack:
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$static$4(EntitySelector.java:28)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fc788fa8.test(Unknown Source)
[09:48:51] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:48:51] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:48:51] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:48:51] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:48:51] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:48:51] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:48:51] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:48:51] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:48:51] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:51] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:48:51] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:52] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3689, uuid='8fd6faf9-4380-45ff-a5ef-3e40fde2a9d5', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:52] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3691, uuid='c010b1ae-c977-46c7-8e02-823f7dc22381', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:52] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3700, uuid='f210c2f7-d72f-469a-8ed4-f80b36528ae4', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:52] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3759, uuid='511bff28-5bf1-46ed-aa78-1c0f5d2a6816', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:53] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3778, uuid='b22e29b8-2c3b-45c6-99e3-566718df38a2', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:53] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3801, uuid='e952cc15-7236-45b8-a399-5015e26a7cbf', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:53] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3824, uuid='696dde58-509a-4c5a-b8d7-64601033166c', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:53] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/3852, uuid='83918880-45a5-426a-81a8-72608656ae45', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:55] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/4047, uuid='331bac80-2544-4fd0-b4be-32754fd0513e', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:56] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/4198, uuid='df9dab5d-f177-46e2-86d5-862156579e5a', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:56] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:48:56] [Paper Watchdog Thread/ERROR]: The server has not responded for 30 seconds! Creating thread dump
[09:48:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:56] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:48:56] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:48:56] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:48:56] [Paper Watchdog Thread/ERROR]: Entity UUID: 14faee09-ef23-4955-9f3b-3221c2fdcbba
[09:48:56] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:48:56] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:48:56] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:48:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:56] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:48:56] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:48:56] [Paper Watchdog Thread/ERROR]:     Stack:
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$static$4(EntitySelector.java:28)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fc788fa8.test(Unknown Source)
[09:48:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:48:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:48:56] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:48:56] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:48:56] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:48:56] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:48:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:48:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:48:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:56] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:48:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:48:58] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/4398, uuid='3de5193c-e414-41a9-9bd6-478636281e83', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:59] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/4452, uuid='7173573f-0a55-44f8-ab6d-4f2aa23be01c', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:48:59] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/4513, uuid='7744f7a9-bd4b-4930-aa5e-d3541cf64f41', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:00] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/4523, uuid='03de7f9f-7c82-4d66-ad51-bbd3829f72e2', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:00] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/4526, uuid='96d6e062-7047-4fdd-83f6-d74fa3005960', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:01] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/4652, uuid='56fa9974-60c0-4722-b32f-091193946ea7', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:01] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:49:01] [Paper Watchdog Thread/ERROR]: The server has not responded for 35 seconds! Creating thread dump
[09:49:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:01] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:49:01] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:49:01] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:49:01] [Paper Watchdog Thread/ERROR]: Entity UUID: 192524e2-059b-4d46-b557-e1d84f6adb9d
[09:49:01] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:49:01] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:49:01] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:49:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:01] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:49:01] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:49:01] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.onClimbable(LivingEntity.java:2069)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.isCollidable(LivingEntity.java:3833)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$pushable$8(EntitySelector.java:69)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fe4cd040.test(Unknown Source)
[09:49:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:49:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:49:01] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:49:01] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:49:01] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:49:01] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:49:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:01] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:49:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:03] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/4951, uuid='ed35f9da-8bf1-4aa8-8bc5-f4194ff65b5e', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:04] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5074, uuid='cec3efe4-23b5-4a90-842e-7feb1957c642', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:06] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:49:06] [Paper Watchdog Thread/ERROR]: The server has not responded for 40 seconds! Creating thread dump
[09:49:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:06] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:49:06] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:49:06] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:49:06] [Paper Watchdog Thread/ERROR]: Entity UUID: 67d65a4b-e797-4d24-a9c2-5385fdeb2ac1
[09:49:06] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:49:06] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:49:06] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:49:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:06] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:49:06] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:49:06] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$static$4(EntitySelector.java:28)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fc788fa8.test(Unknown Source)
[09:49:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:49:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:49:06] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:49:06] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:49:06] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:49:06] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:49:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:06] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:49:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:08] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5444, uuid='73e74b99-b715-47bd-a501-0f07a2e5c510', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:08] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5478, uuid='019dc107-7546-44f8-8b3f-ab96044987d8', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:08] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5488, uuid='bc6562e6-253f-4a0b-b1f1-cb03524d1ff9', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:09] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5641, uuid='2104892f-69f4-42b5-b013-4a4bfbc4ddd6', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:09] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5656, uuid='f08de4a4-3f90-492e-a86e-37a048bd7d59', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:09] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5669, uuid='615a11b4-cef7-4fd1-a845-d4d551e59f18', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:10] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5678, uuid='e9d51fa7-c70b-48e0-abf0-ef371f7d8f82', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:10] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5688, uuid='10347056-74b0-42a1-83f9-f1ca78e4c196', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:10] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5694, uuid='0689e95b-777b-4791-a870-73a1c4e8b565', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:10] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5734, uuid='37fb4874-a9a3-4710-a4f3-0ef6fefe15f4', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:11] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5840, uuid='8e521047-8c55-425a-b4d4-d31aefac86ab', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:11] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5863, uuid='9360ad75-2847-4df2-8f39-ba62a2346dba', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:11] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5866, uuid='f0738851-969c-4e86-acf9-9104f4c3447c', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:11] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:49:11] [Paper Watchdog Thread/ERROR]: The server has not responded for 45 seconds! Creating thread dump
[09:49:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:11] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:49:11] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:49:11] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:49:11] [Paper Watchdog Thread/ERROR]: Entity UUID: 3c0153ef-f885-42e8-88b5-d87d88f8231c
[09:49:11] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:49:11] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:49:11] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:49:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:11] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:49:11] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:49:11] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.canCollideWithBukkit(LivingEntity.java:3840)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$pushable$8(EntitySelector.java:69)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fe4cd040.test(Unknown Source)
[09:49:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:49:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:49:11] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:49:11] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:49:11] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:49:11] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:49:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:11] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:49:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:11] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5883, uuid='92572704-357d-49e9-8683-fd98b2f35553', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:12] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5914, uuid='a5c66242-7466-4ea4-aa1d-1978ea91a35f', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:12] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5918, uuid='685ad551-2e7f-4e09-a40f-971d68ad309c', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:12] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/5960, uuid='176279db-495e-424c-98c8-ed6b758098d3', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:13] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6040, uuid='a2a73fa8-38e2-4b6f-9388-843ed42361cb', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:13] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6083, uuid='524f52ea-c2c6-4a73-9e74-7e591209ff7c', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:15] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6310, uuid='e3e3372e-b588-44c6-b1d9-31e362e90c60', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:15] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6332, uuid='a509ca15-4286-4d75-9c5b-c6daa68cf509', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:16] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6364, uuid='bd4d8950-5a8a-45c6-90d9-a449c6b961d6', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:16] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6384, uuid='23f33ed4-1981-40d7-b7e7-ca91442a9c40', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:16] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6408, uuid='a00d7118-f1df-4dc2-a4f9-84d5e1157075', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:16] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:49:16] [Paper Watchdog Thread/ERROR]: The server has not responded for 50 seconds! Creating thread dump
[09:49:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:16] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:49:16] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:49:16] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:49:16] [Paper Watchdog Thread/ERROR]: Entity UUID: ea69a46b-cc68-4def-88ab-583f3cf762ad
[09:49:16] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:49:16] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:49:16] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:49:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:16] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:49:16] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:49:16] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:16] [Paper Watchdog Thread/ERROR]:         it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap.get(Object2ObjectOpenHashMap.java:327)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.scores.Scoreboard.getPlayersTeam(Scoreboard.java:318)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Entity.getTeam(Entity.java:3425)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.TamableAnimal.getTeam(TamableAnimal.java:227)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$pushable$8(EntitySelector.java:74)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fe4cd040.test(Unknown Source)
[09:49:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:49:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:49:16] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:49:16] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:49:16] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:49:16] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:49:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:16] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:49:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:18] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6606, uuid='b9587c8e-2089-4050-9a43-2f903062e7d2', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:19] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6702, uuid='7dfe3827-b0e9-4fc1-ac04-736b15a94d42', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:19] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6765, uuid='3fc70774-9099-4066-8f94-dd8bc8fd8fc1', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:20] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6846, uuid='29f6831c-81af-4a9c-9dc5-055fbaab8728', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:20] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6902, uuid='5a795183-ef40-4b04-9561-5b1a3a1efddb', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:21] [Server thread/INFO]: Named entity Wolf['Rabbid Wolf'/6971, uuid='94e377c5-5c42-4e94-92a6-e56024ac6996', l='ServerLevel[WildRealm]', x=361.50, y=80.00, z=-176.50, cpos=[22, -12], tl=3, v=true] died: Rabbid Wolf was squished too much
[09:49:21] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:49:21] [Paper Watchdog Thread/ERROR]: The server has not responded for 55 seconds! Creating thread dump
[09:49:21] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:21] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:49:21] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:49:21] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:49:21] [Paper Watchdog Thread/ERROR]: Entity UUID: 75a3056d-8865-4d59-adf1-0aed2b2107ea
[09:49:21] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:49:21] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:49:21] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:49:21] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:21] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:49:21] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:49:21] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.canCollideWithBukkit(LivingEntity.java:3840)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$pushable$8(EntitySelector.java:69)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fe4cd040.test(Unknown Source)
[09:49:21] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:49:21] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:49:21] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:49:21] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:49:21] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:49:21] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:49:21] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:21] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:21] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:21] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:49:21] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:24] [spark-async-sampler-worker-thread/WARN]: [spark] Timed out waiting for world statistics
[09:49:26] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - 1.21.1-56-227c94a (MC: 1.21.1) ---
[09:49:26] [Paper Watchdog Thread/ERROR]: The server has not responded for 60 seconds! Creating thread dump
[09:49:26] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:26] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:49:26] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:49:26] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:49:26] [Paper Watchdog Thread/ERROR]: Entity UUID: 65b1b694-2744-4a22-b51c-b1d2fc7f24a3
[09:49:26] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:49:26] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:49:26] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:49:26] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:26] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:49:26] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:49:26] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:26] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ImmutableCollections$SetN.probe(ImmutableCollections.java:1024)
[09:49:26] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.ImmutableCollections$SetN.contains(ImmutableCollections.java:945)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.core.Holder$Reference.is(Holder.java:169)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.is(BlockBehaviour.java:1296)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.onClimbable(LivingEntity.java:2075)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.isCollidable(LivingEntity.java:3833)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.isPushable(LivingEntity.java:3828)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.canCollideWithBukkit(LivingEntity.java:3840)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$pushable$8(EntitySelector.java:69)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fe4cd040.test(Unknown Source)
[09:49:26] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:49:26] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:49:26] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:49:26] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:49:26] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:49:26] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:49:26] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:26] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:26] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:26] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[09:49:26] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:27] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:27] [Paper Watchdog Thread/ERROR]: The server has stopped responding! This is (probably) not a Paper bug.
[09:49:27] [Paper Watchdog Thread/ERROR]: If you see a plugin in the Server thread dump below, then please report it to that author
[09:49:27] [Paper Watchdog Thread/ERROR]:      *Especially* if it looks like HTTP or MySQL operations are occurring
[09:49:27] [Paper Watchdog Thread/ERROR]: If you see a world save or edit, then it means you did far more than your server can handle at once
[09:49:27] [Paper Watchdog Thread/ERROR]:      If this is the case, consider increasing timeout-time in spigot.yml but note that this will replace the crash with LARGE lag spikes
[09:49:27] [Paper Watchdog Thread/ERROR]: If you are unsure or still think this is a Paper bug, please report this to https://github.com/PaperMC/Paper/issues
[09:49:27] [Paper Watchdog Thread/ERROR]: Be sure to include ALL relevant console errors and Minecraft crash reports
[09:49:27] [Paper Watchdog Thread/ERROR]: Paper version: 1.21.1-56-227c94a (MC: 1.21.1)
[09:49:27] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:27] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[09:49:27] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:wolf, entity class: net.minecraft.world.entity.animal.Wolf
[09:49:27] [Paper Watchdog Thread/ERROR]: Entity status: removed: false, valid: true, alive: true, is passenger: false
[09:49:27] [Paper Watchdog Thread/ERROR]: Entity UUID: 46a2d5ce-d1aa-46f7-bcfa-9f356d1539ab
[09:49:27] [Paper Watchdog Thread/ERROR]: Position: world: 'WildRealm' at location (361.5, 80.0, -176.5)
[09:49:27] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[09:49:27] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[361.19999998807907, 80.0, -176.80000001192093] -> [361.80000001192093, 80.85000002384186, -176.19999998807907]
[09:49:27] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:27] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:49:27] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:49:27] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.onClimbable(LivingEntity.java:2069)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.isCollidable(LivingEntity.java:3833)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.isPushable(LivingEntity.java:3828)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.canCollideWithBukkit(LivingEntity.java:3840)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$pushable$8(EntitySelector.java:69)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fe4cd040.test(Unknown Source)
[09:49:27] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:49:27] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:49:27] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:49:27] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:49:27] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:49:27] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:49:27] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:27] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:27] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:27] [Paper Watchdog Thread/ERROR]: Entire Thread Dump:
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Reference Handler
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 9 | Suspended: false | Native: false | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.Reference.waitForReferencePendingList(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.Reference.processPendingReferences(Reference.java:246)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.Reference$ReferenceHandler.run(Reference.java:208)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Finalizer
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 10 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:366)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:339)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.NativeReferenceQueue.await(NativeReferenceQueue.java:48)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.remove0(ReferenceQueue.java:158)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.NativeReferenceQueue.remove(NativeReferenceQueue.java:89)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:173)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Signal Dispatcher
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 11 | Suspended: false | Native: false | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Notification Thread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 26 | Suspended: false | Native: false | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Common-Cleaner
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 27 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1847)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.await(ReferenceQueue.java:71)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.remove0(ReferenceQueue.java:143)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:218)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.ref.CleanerImpl.run(CleanerImpl.java:140)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.InnocuousThread.run(InnocuousThread.java:186)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DestroyJavaVM
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 33 | Suspended: false | Native: false | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Log4j2-AsyncAppenderEventDispatcher-1-Async
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: false | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.AbstractStringBuilder.substring(AbstractStringBuilder.java:1090)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.StringBuilder.substring(StringBuilder.java:91)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.AbstractStringBuilder.substring(AbstractStringBuilder.java:1038)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.StringBuilder.substring(StringBuilder.java:91)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.papermc.paper.console.StripANSIConverter.format(StripANSIConverter.java:34)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.pattern.PatternFormatter.format(PatternFormatter.java:44)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.layout.PatternLayout$PatternSelectorSerializer.toSerializable(PatternLayout.java:567)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.layout.PatternLayout.toText(PatternLayout.java:252)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.layout.PatternLayout.encode(PatternLayout.java:238)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.layout.PatternLayout.encode(PatternLayout.java:58)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.appender.AbstractOutputStreamAppender.directEncodeEvent(AbstractOutputStreamAppender.java:227)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.appender.AbstractOutputStreamAppender.tryAppend(AbstractOutputStreamAppender.java:220)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.appender.AbstractOutputStreamAppender.append(AbstractOutputStreamAppender.java:211)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.appender.RollingRandomAccessFileAppender.append(RollingRandomAccessFileAppender.java:275)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.tryCallAppender(AppenderControl.java:160)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.callAppender0(AppenderControl.java:133)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.callAppenderPreventRecursion(AppenderControl.java:124)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.callAppender(AppenderControl.java:88)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.appender.rewrite.RewriteAppender.append(RewriteAppender.java:89)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.tryCallAppender(AppenderControl.java:160)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.callAppender0(AppenderControl.java:133)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.callAppenderPreventRecursion(AppenderControl.java:124)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.callAppender(AppenderControl.java:88)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.appender.rewrite.RewriteAppender.append(RewriteAppender.java:89)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.tryCallAppender(AppenderControl.java:160)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.callAppender0(AppenderControl.java:133)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.callAppenderPreventRecursion(AppenderControl.java:124)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.config.AppenderControl.callAppender(AppenderControl.java:88)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.appender.AsyncAppenderEventDispatcher.dispatch(AsyncAppenderEventDispatcher.java:127)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.appender.AsyncAppenderEventDispatcher.dispatchAll(AsyncAppenderEventDispatcher.java:91)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.apache.logging.log4j.core.appender.AsyncAppenderEventDispatcher.run(AsyncAppenderEventDispatcher.java:73)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: JNA Cleaner
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 40 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1847)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.await(ReferenceQueue.java:71)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.remove0(ReferenceQueue.java:143)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:218)
[09:49:28] [Paper Watchdog Thread/ERROR]:         com.sun.jna.internal.Cleaner$CleanerThread.run(Cleaner.java:154)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Timer hack thread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 53 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep(Thread.java:509)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.Util$7.run(Util.java:785)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Yggdrasil Key Fetcher
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 54 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Worker-Main-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 57 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Worker-Main-2
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 58 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Worker-Main-3
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 59 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Worker-Main-4
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 60 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Worker-Main-5
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 61 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Worker-Main-6
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 62 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 63 | Suspended: false | Native: false | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.canCollideWithBukkit(LivingEntity.java:3840)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector.lambda$pushable$8(EntitySelector.java:69)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.EntitySelector$$Lambda/0x00007f12fe4cd040.test(Unknown Source)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate.lambda$and$0(Predicate.java:69)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.function.Predicate$$Lambda/0x00007f12fc2784d8.test(Unknown Source)
[09:49:28] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices$EntityCollectionBySection.getEntitiesWithEnderDragonParts(ChunkEntitySlices.java:640)
[09:49:28] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.ChunkEntitySlices.getEntities(ChunkEntitySlices.java:326)
[09:49:28] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.moonrise.patches.chunk_system.level.entity.EntityLookup.getEntities(EntityLookup.java:634)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.getEntities(Level.java:1630)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.pushEntities(LivingEntity.java:3632)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.aiStep(LivingEntity.java:3553)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.aiStep(Mob.java:678)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.AgeableMob.aiStep(AgeableMob.java:155)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Animal.aiStep(Animal.java:64)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.aiStep(Wolf.java:257)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.LivingEntity.tick(LivingEntity.java:3173)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.Mob.tick(Mob.java:445)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.entity.animal.Wolf.tick(Wolf.java:273)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tickNonPassenger(ServerLevel.java:1248)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49ed90.accept(Unknown Source)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.Level.guardEntityTick(Level.java:1420)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.lambda$tick$4(ServerLevel.java:737)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel$$Lambda/0x00007f12fe49e8f8.accept(Unknown Source)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.world.level.entity.EntityTickList.forEach(EntityTickList.java:39)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.level.ServerLevel.tick(ServerLevel.java:717)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1806)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:473)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1598)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.MinecraftServer$$Lambda/0x00007f12fccb1620.run(Unknown Source)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Java2D Disposer
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 70 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.await(ReferenceQueue.java:67)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.remove0(ReferenceQueue.java:158)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:234)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.java2d.Disposer.run(Disposer.java:145)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 72 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Paper Common Worker #0
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 73 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:221)
[09:49:28] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Paper Common Worker #1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 74 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:221)
[09:49:28] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Paper Common Worker #2
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 75 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:221)
[09:49:28] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Paper Common Worker #3
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 76 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:221)
[09:49:28] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: RegionFile I/O Thread #0
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 77 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:221)
[09:49:28] [Paper Watchdog Thread/ERROR]:         ca.spottedleaf.concurrentutil.executor.standard.PrioritisedQueueExecutorThread.run(PrioritisedQueueExecutorThread.java:97)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Paper Watchdog Thread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 78 | Suspended: false | Native: false | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.management.ThreadImpl.dumpThreads0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:518)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.management.ThreadImpl.dumpAllThreads(ThreadImpl.java:506)
[09:49:28] [Paper Watchdog Thread/ERROR]:         org.spigotmc.WatchdogThread.run(WatchdogThread.java:202)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Server console handler
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 65 | Suspended: false | Native: true | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FileInputStream.readBytes(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FileInputStream.read(FileInputStream.java:287)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedInputStream.read1(BufferedInputStream.java:345)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedInputStream.implRead(BufferedInputStream.java:420)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedInputStream.read(BufferedInputStream.java:399)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.InputStreamReader.read(InputStreamReader.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedReader.fill(BufferedReader.java:160)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedReader.readLine(BufferedReader.java:347)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedReader.readLine(BufferedReader.java:436)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecrell.terminalconsole.SimpleTerminalConsole.readCommands(SimpleTerminalConsole.java:180)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecrell.terminalconsole.SimpleTerminalConsole.start(SimpleTerminalConsole.java:143)
[09:49:28] [Paper Watchdog Thread/ERROR]:         net.minecraft.server.dedicated.DedicatedServer$1.run(DedicatedServer.java:117)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-8-thread-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 79 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Netty Epoll Server IO #0
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 82 | Suspended: false | Native: true | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.Native.epollWait(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.Native.epollWait(Native.java:209)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.Native.epollWait(Native.java:202)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:316)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:373)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV ExpiryThread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 83 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep(Thread.java:509)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.objects.ExpiringDualHashBidiMap$ExpiryThread.run(ExpiringDualHashBidiMap.java:132)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-0
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 85 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 86 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-2
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 87 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-3
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 88 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-4
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 89 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-5
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 90 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-6
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 91 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-7
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 92 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-8
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 93 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkUntil(LockSupport.java:449)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1891)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-worker-9
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 94 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.compensatedBlock(ForkJoinPool.java:3740)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3723)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingDeque.takeFirst(LinkedBlockingDeque.java:485)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingDeque.take(LinkedBlockingDeque.java:673)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.fs.AbstractWatchService.take(AbstractWatchService.java:118)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.common.storage.implementation.file.watcher.AbstractFileWatcher.runEventProcessingLoop(AbstractFileWatcher.java:128)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.common.storage.implementation.file.watcher.FileWatcher.lambda$new$0(FileWatcher.java:60)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.common.storage.implementation.file.watcher.FileWatcher$$Lambda/0x00007f12fd4a4fe0.run(Unknown Source)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(ForkJoinTask.java:1423)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: luckperms-scheduler
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 95 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: WorldEdit Session Manager
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 96 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:366)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.mainLoop(Timer.java:563)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.run(Timer.java:516)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Profile Lookup Executor #0
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 99 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-20-thread-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 101 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: mysql-cj-abandoned-connection-cleanup
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 102 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1847)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.await(ReferenceQueue.java:71)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.remove0(ReferenceQueue.java:143)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:218)
[09:49:28] [Paper Watchdog Thread/ERROR]:         com.mysql.cj.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:84)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ConnectionPool housekeeper
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 103 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-20-thread-2
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 105 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-20-thread-3
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 106 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-20-thread-4
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 107 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-20-thread-5
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 108 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: FileSystemWatchService
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 110 | Suspended: false | Native: true | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.fs.LinuxWatchService.poll(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.fs.LinuxWatchService$Poller.run(LinuxWatchService.java:307)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: OkHttp metadata.luckperms.net
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 111 | Suspended: false | Native: true | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:191)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:201)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:346)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:796)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:1099)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketInputRecord.read(SSLSocketInputRecord.java:489)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketInputRecord.readHeader(SSLSocketInputRecord.java:483)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket(SSLSocketInputRecord.java:70)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketImpl.readApplicationRecord(SSLSocketImpl.java:1461)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1066)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.lib.okio.Okio$2.read(Okio.java:140)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.lib.okio.AsyncTimeout$2.read(AsyncTimeout.java:237)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.lib.okio.RealBufferedSource.request(RealBufferedSource.java:72)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.lib.okio.RealBufferedSource.require(RealBufferedSource.java:65)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.lib.okhttp3.internal.http2.Http2Reader.nextFrame(Http2Reader.java:96)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.lib.okhttp3.internal.http2.Http2Connection$ReaderRunnable.execute(Http2Connection.java:668)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.lib.okhttp3.internal.NamedRunnable.run(NamedRunnable.java:32)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: OkHttp ConnectionPool
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 112 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:366)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:488)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.lib.okhttp3.internal.connection.RealConnectionPool.lambda$new$0(RealConnectionPool.java:62)
[09:49:28] [Paper Watchdog Thread/ERROR]:         me.lucko.luckperms.lib.okhttp3.internal.connection.RealConnectionPool$$Lambda/0x00007f12fd490220.run(Unknown Source)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: OkHttp metadata.luckperms.net Writer
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 113 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1170)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool-3-worker-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 115 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool-3-worker-2
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 116 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool-3-worker-3
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 117 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkUntil(LockSupport.java:449)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1891)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: HttpClient-1-SelectorManager
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 118 | Suspended: false | Native: true | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Thread is waiting on monitor(s):
[09:49:28] [Paper Watchdog Thread/ERROR]:         Locked on:[email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         Locked on:[email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:130)
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.EPoll.wait(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:121)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:142)
[09:49:28] [Paper Watchdog Thread/ERROR]:         platform/[email protected]/jdk.internal.net.http.HttpClientImpl$SelectorManager.run(HttpClientImpl.java:1366)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 119 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Timer-0
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 122 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:366)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.mainLoop(Timer.java:563)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.run(Timer.java:516)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 123 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-2
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 125 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 126 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: WorldGuard Region I/O
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 128 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:366)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.mainLoop(Timer.java:563)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.run(Timer.java:516)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 132 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-4
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 135 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-3
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 134 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-5
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 136 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-6
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 137 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-7
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 138 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-8
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 139 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkUntil(LockSupport.java:449)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1891)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-9
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 140 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-11
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 142 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-12
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 143 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-13
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 144 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-14
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 145 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: ForkJoinPool.commonPool-worker-15
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 146 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1893)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 152 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 156 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 160 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 162 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-88-thread-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 164 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 165 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Folia Async Scheduler Thread #0
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 166 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedTransferQueue$DualNode.await(LinkedTransferQueue.java:458)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.SynchronousQueue$Transferer.xferLifo(SynchronousQueue.java:194)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.SynchronousQueue.xfer(SynchronousQueue.java:233)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.SynchronousQueue.take(SynchronousQueue.java:316)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-91-thread-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 168 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Cooldown
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 171 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:366)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.mainLoop(Timer.java:563)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.run(Timer.java:516)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Timer-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 172 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:366)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.mainLoop(Timer.java:563)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.TimerThread.run(Timer.java:516)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: spark-monitoring-thread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 173 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Paper Async Task Handler Thread - 0
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 174 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - JDA Rate Limit
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 175 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - JDA Rate Limit
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 176 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: spark-async-sampler-worker-thread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 178 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Craft Async Scheduler Management Thread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 179 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: OkHttp ConnectionPool
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 191 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:410)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedTransferQueue$DualNode.await(LinkedTransferQueue.java:452)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.SynchronousQueue$Transferer.xferLifo(SynchronousQueue.java:194)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.SynchronousQueue.xfer(SynchronousQueue.java:233)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:336)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Okio Watchdog
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 194 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:366)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.okio.AsyncTimeout.awaitTimeout(AsyncTimeout.java:348)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.okio.AsyncTimeout$Watchdog.run(AsyncTimeout.java:313)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 196 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - JDA Callback 0
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 197 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkUntil(LockSupport.java:449)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.awaitWork(ForkJoinPool.java:1891)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1809)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - JDA Rate Limit
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 198 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - JDA Gateway
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 200 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: JDA MainWS-ReadThread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 206 | Suspended: false | Native: true | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:191)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:280)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:304)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:346)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:796)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:1099)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketInputRecord.read(SSLSocketInputRecord.java:489)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketInputRecord.readHeader(SSLSocketInputRecord.java:483)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket(SSLSocketInputRecord.java:70)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketImpl.readApplicationRecord(SSLSocketImpl.java:1461)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1066)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedInputStream.fill(BufferedInputStream.java:291)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedInputStream.read1(BufferedInputStream.java:347)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedInputStream.implRead(BufferedInputStream.java:420)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.BufferedInputStream.read(BufferedInputStream.java:399)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:119)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.WebSocketInputStream.readBytes(WebSocketInputStream.java:165)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.WebSocketInputStream.readFrame(WebSocketInputStream.java:46)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.ReadingThread.readFrame(ReadingThread.java:338)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.ReadingThread.main(ReadingThread.java:99)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.ReadingThread.runMain(ReadingThread.java:64)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.WebSocketThread.run(WebSocketThread.java:45)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: JDA MainWS-WriteThread
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 207 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:366)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Object.wait(Object.java:339)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.WritingThread.waitForFrames(WritingThread.java:305)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.WritingThread.main(WritingThread.java:89)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.WritingThread.runMain(WritingThread.java:55)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.dependencies.ws.client.WebSocketThread.run(WebSocketThread.java:45)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - Presence Updater
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 208 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep(Thread.java:509)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.objects.threads.PresenceUpdater.run(PresenceUpdater.java:120)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - Nickname Updater
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 209 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep(Thread.java:509)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.objects.threads.NicknameUpdater.run(NicknameUpdater.java:117)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - Server Watchdog
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 210 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep(Thread.java:509)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.objects.threads.ServerWatchdog.run(ServerWatchdog.java:63)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - JDA Rate Limit
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 211 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1170)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - Channel Topic Updater
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 212 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep(Thread.java:509)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.objects.threads.ChannelTopicUpdater.run(ChannelTopicUpdater.java:56)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - Channel Updater
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 213 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep0(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.sleep(Thread.java:509)
[09:49:28] [Paper Watchdog Thread/ERROR]:         DiscordSRV-Build-1.28.0.jar//github.scarsz.discordsrv.objects.threads.ChannelUpdater.run(ChannelUpdater.java:93)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: bStats-Metrics
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 214 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: DiscordSRV - JDA Rate Limit
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 215 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Netty Epoll Server IO #1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 219 | Suspended: false | Native: true | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.Native.epollWait(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.Native.epollWait(Native.java:209)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.Native.epollWait(Native.java:202)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:316)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:373)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Netty Epoll Server IO #2
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 220 | Suspended: false | Native: true | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.Native.epollWait(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.Native.epollWait(Native.java:209)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.Native.epollWait(Native.java:202)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.EpollEventLoop.epollWaitNoTimerChange(EpollEventLoop.java:316)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:373)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997)
[09:49:28] [Paper Watchdog Thread/ERROR]:         io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-89-thread-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 228 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: WorldGuard Region Chunk Table - WildRealm
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 231 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:269)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1758)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingDeque.pollFirst(LinkedBlockingDeque.java:515)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingDeque.poll(LinkedBlockingDeque.java:677)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: pool-18-thread-1
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 233 | Suspended: false | Native: false | State: WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.park(LockSupport.java:371)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:519)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3780)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3725)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1707)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:435)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1070)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: OkHttp Http2Connection
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 236 | Suspended: false | Native: false | State: TIMED_WAITING
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/jdk.internal.misc.Unsafe.park(Native Method)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:410)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.LinkedTransferQueue$DualNode.await(LinkedTransferQueue.java:452)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.SynchronousQueue$Transferer.xferLifo(SynchronousQueue.java:194)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.SynchronousQueue.xfer(SynchronousQueue.java:233)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:336)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1069)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.runWith(Thread.java:1596)
[09:49:28] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:1583)
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:28] [Paper Watchdog Thread/ERROR]: Current Thread: Async-profiler Timer
[09:49:28] [Paper Watchdog Thread/ERROR]:     PID: 239 | Suspended: false | Native: true | State: RUNNABLE
[09:49:28] [Paper Watchdog Thread/ERROR]:     Stack:
[09:49:28] [Paper Watchdog Thread/ERROR]: ------------------------------
[09:49:29] [Paper Watchdog Thread/INFO]: Stopping server
[09:49:29] [Paper Watchdog Thread/INFO]: [SmoothTimber] Disabling SmoothTimber v1.27.1
[09:49:29] [Paper Watchdog Thread/INFO]: [Rankup] Disabling Rankup v3.14.4
[09:49:29] [Paper Watchdog Thread/INFO]: [Multiverse-NetherPortals] Disabling Multiverse-NetherPortals v4.2.3
[09:49:29] [Paper Watchdog Thread/INFO]: [Multiverse-NetherPortals] - Disabled
[09:49:29] [Paper Watchdog Thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.28.0
[09:49:29] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Shutdown completed in 359ms
[09:49:29] [Paper Watchdog Thread/INFO]: [ShopGUIPlusSilkSpawnersBridge] Disabling ShopGUIPlusSilkSpawnersBridge v1.8.0
[09:49:29] [Paper Watchdog Thread/INFO]: [BisectHosting] Disabling BisectHosting v1.0.4
[09:49:29] [Paper Watchdog Thread/INFO]: [BreweryX] Disabling BreweryX v3.3.3
[09:49:29] [Paper Watchdog Thread/INFO]: <<Brews>> [BreweryXGuiEditorAddon] Disabled.
[09:49:29] [Paper Watchdog Thread/INFO]: <<Brews>> Disabled 1 addon(s)
[09:49:29] [Paper Watchdog Thread/INFO]: <<Brews>> Closed connection from: FlatFileStorage
[09:49:29] [Paper Watchdog Thread/INFO]: <<Brews>> BreweryX disabled!
[09:49:29] [Paper Watchdog Thread/INFO]: [Depenizen] Disabling Depenizen v2.1.1 (build 864)
[09:49:29] [Paper Watchdog Thread/INFO]: [Denizen]  v1.3.1-SNAPSHOT (build 7079-DEV) disabled.
[09:49:29] [Paper Watchdog Thread/INFO]: [Multiverse-Portals] Disabling Multiverse-Portals v4.2.3
[09:49:29] [Paper Watchdog Thread/INFO]: [ShopGUIPlus] Disabling ShopGUIPlus v1.98.1
[09:49:29] [Paper Watchdog Thread/INFO]: [LibsDisguises] Disabling LibsDisguises v10.0.44-SNAPSHOT
[09:49:29] [Paper Watchdog Thread/INFO]: [BigDoors] Disabling BigDoors vAlpha 0.1.8.54 (b1174)
[09:49:29] [Paper Watchdog Thread/INFO]: [Denizen] Disabling Denizen v1.3.1-SNAPSHOT (build 7079-DEV)
[09:49:29] [Paper Watchdog Thread/INFO]: [Shopkeepers] Disabling Shopkeepers v2.23.0
[09:49:30] [Paper Watchdog Thread/INFO]: [PlayerPoints] Disabling PlayerPoints v3.2.7
[09:49:30] [Paper Watchdog Thread/INFO]: [SilkSpawners] Disabling SilkSpawners v8.1.0
[09:49:30] [Paper Watchdog Thread/INFO]: [packetevents] Disabling packetevents v2.5.0+dc015dc45-SNAPSHOT
[09:49:30] [Paper Watchdog Thread/INFO]: [Lands] Disabling Lands v7.9.9
[09:49:30] [Paper Watchdog Thread/INFO]: [Lands] Closing storage.
[09:49:30] [Paper Watchdog Thread/INFO]: [Lands] Took 109 ms.
[09:49:30] [Paper Watchdog Thread/INFO]: [Citizens] Disabling Citizens v2.0.35-SNAPSHOT (build 3597)
[09:49:30] [Paper Watchdog Thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.12
[09:49:30] [Paper Watchdog Thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion multiverse
[09:49:30] [Paper Watchdog Thread/INFO]: [PlaceholderAPI] Reason: required plugin Multiverse-Core was disabled.
[09:49:30] [Paper Watchdog Thread/INFO]: [CMI] Disabling CMI v9.7.6.11
[09:49:30] [Paper Watchdog Thread/INFO]: [Vault][Economy] CMI Economy unhooked.
[09:49:30] [Paper Watchdog Thread/INFO]: [CMI] Closed db connections
[09:49:30] [Paper Watchdog Thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.11-beta1+a801a9d
[09:49:30] [Paper Watchdog Thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[09:49:30] [Paper Watchdog Thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.3.0
[09:49:30] [Paper Watchdog Thread/INFO]: [CMILib] Disabling CMILib v1.5.1.5
[09:49:30] [Paper Watchdog Thread/INFO]: [FastAsyncWorldEdit] Disabling FastAsyncWorldEdit v2.11.3-SNAPSHOT-921;5ac60f0
[09:49:30] [Paper Watchdog Thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[09:49:30] [Paper Watchdog Thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.7-DEV-200
[09:49:30] [Paper Watchdog Thread/INFO]: [Vault] Disabling Vault v1.7.3-CMI
[09:49:30] [Paper Watchdog Thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.141
[09:49:30] [Paper Watchdog Thread/INFO]: [LuckPerms] Starting shutdown process...
[09:49:30] [Paper Watchdog Thread/INFO]: [LuckPerms] Closing storage...
[09:49:30] [Paper Watchdog Thread/INFO]: [LuckPerms] Goodbye!
[09:49:30] [Paper Watchdog Thread/INFO]: Saving players
[09:49:30] [Paper Watchdog Thread/INFO]: cal_exe lost connection: FanecoMC has closed and will be back up momentarily. We appreciate your patience.
[09:49:30] [Paper Watchdog Thread/INFO]: cal_exe left the game
[09:49:30] [Paper Watchdog Thread/INFO]: Saving worlds
[09:49:30] [Paper Watchdog Thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world' in 0.15s
[09:49:30] [Paper Watchdog Thread/INFO]: Saving chunks for level 'ServerLevel[world_nether]'/minecraft:the_nether
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_nether'
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_nether'
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_nether'
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world_nether' in 0.10s
[09:49:30] [Paper Watchdog Thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[09:49:30] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[09:49:31] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'world_the_end' in 0.04s
[09:49:31] [Paper Watchdog Thread/INFO]: Saving chunks for level 'ServerLevel[WildRealm]'/minecraft:wildrealm
[09:49:31] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'WildRealm'
[09:49:31] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'WildRealm'
[09:49:31] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'WildRealm'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saved 215 block chunks, 215 entity chunks, 0 poi chunks in world 'WildRealm' in 1.26s
[09:49:32] [Paper Watchdog Thread/INFO]: Saving chunks for level 'ServerLevel[Storage]'/minecraft:storage
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Storage'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Storage'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Storage'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saved 53 block chunks, 53 entity chunks, 0 poi chunks in world 'Storage' in 0.08s
[09:49:32] [Paper Watchdog Thread/INFO]: Saving chunks for level 'ServerLevel[WildRealm_nether]'/minecraft:wildrealm_nether
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'WildRealm_nether'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'WildRealm_nether'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'WildRealm_nether'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'WildRealm_nether' in 0.09s
[09:49:32] [Paper Watchdog Thread/INFO]: Saving chunks for level 'ServerLevel[DeeperOceans]'/minecraft:deeperoceans
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'DeeperOceans'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'DeeperOceans'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'DeeperOceans'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'DeeperOceans' in 0.08s
[09:49:32] [Paper Watchdog Thread/INFO]: Saving chunks for level 'ServerLevel[WildRealm_the_end]'/minecraft:wildrealm_the_end
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'WildRealm_the_end'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'WildRealm_the_end'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'WildRealm_the_end'
[09:49:32] [Paper Watchdog Thread/INFO]: [ChunkHolderManager] Saved 49 block chunks, 49 entity chunks, 0 poi chunks in world 'WildRealm_the_end' in 0.03s
[09:49:32] [Paper Watchdog Thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[09:49:32] [Paper Watchdog Thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[09:49:32] [Paper Watchdog Thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[09:49:32] [Paper Watchdog Thread/INFO]: ThreadedAnvilChunkStorage (WildRealm): All chunks are saved
[09:49:32] [Paper Watchdog Thread/INFO]: ThreadedAnvilChunkStorage (Storage): All chunks are saved
[09:49:32] [Paper Watchdog Thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[09:49:32] [Paper Watchdog Thread/INFO]: ThreadedAnvilChunkStorage (DeeperOceans): All chunks are saved
[09:49:32] [Paper Watchdog Thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[09:49:32] [Paper Watchdog Thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[09:49:32] [Paper Watchdog Thread/INFO]: Saving usercache.json