Paste #133994: a

Date: 2025/06/13 03:52:25 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


[17:49:38] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-LTS; Eclipse Adoptium Temurin-21.0.7+6) on Linux 6.13.7-061307-generic (amd64)
[17:49:38] [ServerMain/INFO]: [bootstrap] Loading Leaf 1.21.1-DEV-ver/1.21.1@2409397 (2025-04-27T19:52:36Z) for Minecraft 1.21.1
[17:49:38] [ServerMain/INFO]: [LeafConfig] Loading config...
[17:49:38] [ServerMain/INFO]: [LeafConfig] Using 2 threads for Async Entity Tracker
[17:49:38] [ServerMain/INFO]: [LeafConfig] Using 1 threads for Async Locator
[17:49:38] [ServerMain/INFO]: [LeafConfig] Successfully loaded config in 20ms.
[17:49:38] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[17:49:38] [Paper Plugin Remapper Thread - 0/INFO]: [ReobfServer] Remapping server...
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [ReobfServer] Done remapping server in 2284ms.
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/GPS-2.20.0.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/InteractiveChat-4.3.0.0.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/AntiSeedCracker-1.2.1.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/PlaceholderAPI-2.11.6.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/AntiSeedCracker-1.2.1.jar' in 93ms.
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/MagicCosmetics-3.1.0.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/GPS-2.20.0.jar' in 114ms.
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/QuestRandom-1.5.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/QuestRandom-1.5.jar' in 28ms.
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/ktlibs-kotlin-stdlib-2.1.21.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/PlaceholderAPI-2.11.6.jar' in 175ms.
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/ItemsAdder_4.0.10-hotfix-1.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MagicCosmetics-3.1.0.jar' in 275ms.
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/MyWorlds-1.21.5-v1-326.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MyWorlds-1.21.5-v1-326.jar' in 80ms.
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/RoseLoot-1.2.20.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/ktlibs-kotlin-stdlib-2.1.21.jar' in 393ms.
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/BetterRTP-3.6.13.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/RoseLoot-1.2.20.jar' in 90ms.
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/deathspawnplugin-1.0-SNAPSHOT.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/deathspawnplugin-1.0-SNAPSHOT.jar' in 15ms.
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/DisableSpawnerBreaking-2.0.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/DisableSpawnerBreaking-2.0.jar' in 12ms.
[17:49:41] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/DiscordSRV-Build-1.29.0.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/BetterRTP-3.6.13.jar' in 70ms.
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/SyncEssential-1.0.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/SyncEssential-1.0.jar' in 13ms.
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Skript-2.11.2.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/ItemsAdder_4.0.10-hotfix-1.jar' in 494ms.
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/RegionDisplayName v1.4.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/RegionDisplayName v1.4.jar' in 14ms.
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/CustomNameplates-3.0.19.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Skript-2.11.2.jar' in 328ms.
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/RedstoneLimiter-v0.0.6.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CustomNameplates-3.0.19.jar' in 266ms.
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/GiftCode24-2.1.0-Stable.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/InteractiveChat-4.3.0.0.jar' in 962ms.
[17:49:41] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/SkinsRestorer.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/RedstoneLimiter-v0.0.6.jar' in 13ms.
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/RecipeControl-3.1.8.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/GiftCode24-2.1.0-Stable.jar' in 18ms.
[17:49:41] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/CMILib1.5.4.4.jar'...
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/RecipeControl-3.1.8.jar' in 15ms.
[17:49:41] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/DeluxeMenus-1.14.1-Release.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CMILib1.5.4.4.jar' in 116ms.
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/CommandPanels.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CommandPanels.jar' in 85ms.
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/DeathTP-1.0.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/DeathTP-1.0.jar' in 10ms.
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/RemoveItemsAdderCommand-1.0.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/RemoveItemsAdderCommand-1.0.jar' in 10ms.
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/DeluxeMenus-1.14.1-Release.jar' in 368ms.
[17:49:42] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Vulcan-2.9.5.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/DiscordSRV-Build-1.29.0.jar' in 1005ms.
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/CommandTimer-1.0.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CommandTimer-1.0.jar' in 8ms.
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/LeaderMobs-2.2.2.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/LeaderMobs-2.2.2.jar' in 13ms.
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/DataTransferPlugin-beta-1.4.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/SkinsRestorer.jar' in 636ms.
[17:49:42] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/SpawnerMeta.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/DataTransferPlugin-beta-1.4.jar' in 29ms.
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/FriendSystem-Spigot-4.9.8.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/SpawnerMeta.jar' in 46ms.
[17:49:42] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/InteractiveChatDiscordSrvAddon-4.3.0.0.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/FriendSystem-Spigot-4.9.8.jar' in 99ms.
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/voicechat-bukkit-2.5.26.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens.jar' in 532ms.
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/LagFixer.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Vulcan-2.9.5.jar' in 409ms.
[17:49:42] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/FarmLimiter-1.6.0.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/FarmLimiter-1.6.0.jar' in 21ms.
[17:49:42] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/TradeMe6.2.2.4.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/TradeMe6.2.2.4.jar' in 37ms.
[17:49:42] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/LPX.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/voicechat-bukkit-2.5.26.jar' in 162ms.
[17:49:42] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/Loom-1.1.0.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/LagFixer.jar' in 196ms.
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/item-nbt-api-plugin-2.15.0.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/item-nbt-api-plugin-2.15.0.jar' in 28ms.
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/tooltips-2.3.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/tooltips-2.3.jar' in 34ms.
[17:49:42] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/CharacterDialogue.jar'...
[17:49:42] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/InteractiveChatDiscordSrvAddon-4.3.0.0.jar' in 346ms.
[17:49:42] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/MineVNLib.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CharacterDialogue.jar' in 34ms.
[17:49:43] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/iCommands-1.0.0.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/iCommands-1.0.0.jar' in 19ms.
[17:49:43] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/PlayerProfile-1.3.0.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/PlayerProfile-1.3.0.jar' in 56ms.
[17:49:43] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/UltraRepair-4.2.5.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/UltraRepair-4.2.5.jar' in 156ms.
[17:49:43] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Remapping plugin 'plugins/mythicmobspremium-5.9.1-snapshot25202528build252054392529.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/LPX.jar' in 447ms.
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/AnvilWithdraw.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/AnvilWithdraw.jar' in 9ms.
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/MagicCrates-1.8.6.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MagicCrates-1.8.6.jar' in 87ms.
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/images-2.5.3.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/images-2.5.3.jar' in 44ms.
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/CurrencyDeposit.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CurrencyDeposit.jar' in 10ms.
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/worldguard-bukkit-7.0.12-dist.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/worldguard-bukkit-7.0.12-dist.jar' in 93ms.
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Anti-Mending1.21.3.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Anti-Mending1.21.3.jar' in 9ms.
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/TAB v5.2.1.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Loom-1.1.0.jar' in 636ms.
[17:49:43] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/PlayerAuctions 1.31.1.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/MineVNLib.jar' in 562ms.
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/PlugManX-2.4.1.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/PlayerAuctions 1.31.1.jar' in 57ms.
[17:49:43] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/PlayerPoints-3.3.2.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/PlayerPoints-3.3.2.jar' in 52ms.
[17:49:43] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/Vault.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Vault.jar' in 38ms.
[17:49:43] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/CustomCrops-3.6.32.1.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/PlugManX-2.4.1.jar' in 116ms.
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/DirectionalBlock-1.4.1.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/DirectionalBlock-1.4.1.jar' in 13ms.
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/GravesX-4.9.7.3.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/GravesX-4.9.7.3.jar' in 98ms.
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/AutoReward-1.0-SNAPSHOT.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/AutoReward-1.0-SNAPSHOT.jar' in 13ms.
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/CrazyVouchers-3.8.3.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/TAB v5.2.1.jar' in 377ms.
[17:49:43] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/HMCColor-2.3-all.jar'...
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CrazyVouchers-3.8.3.jar' in 137ms.
[17:49:43] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/CrossTalky-1.0.jar'...
[17:49:44] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CustomCrops-3.6.32.1.jar' in 383ms.
[17:49:44] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/Relics-0.0.5.jar'...
[17:49:44] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Relics-0.0.5.jar' in 54ms.
[17:49:44] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/BanItem-3.7.jar'...
[17:49:44] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/BanItem-3.7.jar' in 31ms.
[17:49:44] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/AdvancedEnchantments-9.15.9.jar'...
[17:49:44] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/AdvancedEnchantments-9.15.9.jar' in 513ms.
[17:49:44] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins/ConsoleSpamFixReborn-1.11.5.jar'...
[17:49:44] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/HMCColor-2.3-all.jar' in 791ms.
[17:49:44] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/WorldGuardExtraFlags.jar'...
[17:49:44] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/WorldGuardExtraFlags.jar' in 15ms.
[17:49:44] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins/ConsoleSpamFixReborn-1.11.5.jar' in 62ms.
[17:49:44] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/CrossTalky-1.0.jar' in 857ms.
[17:49:45] [Paper Plugin Remapper Thread - 0/INFO]: [PluginRemapper] Done remapping plugin 'plugins/mythicmobspremium-5.9.1-snapshot25202528build252054392529.jar' in 1985ms.
[17:49:45] [ServerMain/INFO]: [PluginInitializerManager] Initialized 87 plugins
[17:49:45] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (3):
 - BKCommonLib (1.21.5-v1), HuskHomes (4.9.6), HuskSync (3.7-unknown)
[17:49:45] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (84):
 - AdvancedEnchantments (9.15.9), AntiMending (1.0-SNAPSHOT), AntiSeedCracker (1.2.1), AnvilWithdrawPlugin (1.8-SNAPSHOT), AutoReward (1.0-SNAPSHOT), BanItem (3.7), BetterRTP (3.6.13), CMILib (1.5.4.4), CharacterDialogue (0.8), Chunky (1.4.36), Citizens (2.0.35-SNAPSHOT (build 3479)), CommandPanels (3.22.5), CommandTimer (1.0), ConsoleSpamFixReborn (1.11.5), CrazyVouchers (3.8.3), CrossTalky (1.0), CurrencyDeposit (1.0), CustomCrops (3.6.32.1), CustomNameplates (3.0.19), DataTransferPlugin (1.0-SNAPSHOT), DeathSpawnPlugin (1.0-SNAPSHOT), DeathTP (1.0), DeluxeMenus (1.14.1-Release), DirectionalBlock (1.4.1), DisableSpawnerBreaking (2.0), DiscordSRV (1.29.0), Essentials (2.21.2-dev+5-4ab3bbc), EssentialsChat (2.21.2-dev+5-4ab3bbc), FarmLimiter (1.6.0), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1109;f03d791), FriendSystemGUI (4.9.8), GPS (2.20.0), GiftCode24 (2.1.0-Stable), GravesX (4.9.7.3), HMCColor (2.3), Images (2.5.3), InteractiveChat (4.3.0.0), InteractiveChatDiscordSrvAddon (4.3.0.0), ItemsAdder (4.0.10-hotfix-1), LPX (3.6.6), LagFixer (1.4.15 (build 110)), LeaderMobs (2.2.2), LiteBans (2.17.2), Loom (1.1.0), LuckPerms (5.5.0), MagicCosmetics (3.1.0), MagicCrates (1.8.6), MineVNLib (1.1.8), ModelEngine (R4.0.9), My_Worlds (1.21.5-v1), MythicMobs (5.9.1-SNAPSHOT-bb199eaf), NBTAPI (2.15.0), Pl-Hide-Pro (2.12.2), PlaceholderAPI (2.11.6), PlayerAuctions (1.31.1), PlayerPoints (3.3.2), PlayerProfile (1.3.0), PlugManX (2.4.1), ProtocolLib (5.3.0), QuestRandom (1.5), RecipeControl (3.1.8), RedstoneLimiter (0.0.6), RegionDisplayName (1.4), Relics (0.0.5), RemoveItemsAdderCommand (1.0), RoseLoot (1.2.20), SkinsRestorer (15.6.5), Skript (2.11.2), SpawnerMeta (25.1), SyncEssential (1.0-SNAPSHOT), TAB (5.2.1), Tooltips (2.3), Topper (3.10.1), TradeMe (6.2.2.4), UltraRepair (4.2.5), Vault (1.7.3-b131), ViaVersion (5.3.2), Vulcan (2.9.5), WorldGuard (7.0.12+829a4a4), WorldGuardExtraFlags (4.2.4-SNAPSHOT), iCommands (1.0.0), ktlibs-kotlin-stdlib (2.1.21), packetevents (2.8.0), voicechat (2.5.26)
[17:49:47] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[17:49:48] [ServerMain/INFO]: Loaded 1290 recipes
[17:49:48] [ServerMain/INFO]: Loaded 1404 advancements
[17:49:48] [Server thread/INFO]: Starting minecraft server version 1.21.1
[17:49:48] [Server thread/INFO]: Loading properties
[17:49:48] [Server thread/INFO]: This server is running Leaf version 1.21.1-DEV-ver/1.21.1@2409397 (2025-04-27T19:52:36Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[17:49:49] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[17:49:49] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:49:49] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:49:49] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and population gen parallelism of 2 threads
[17:49:49] [Server thread/INFO]: Default game type: SURVIVAL
[17:49:49] [Server thread/INFO]: Generating keypair
[17:49:49] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:2049
[17:49:49] [Server thread/INFO]: Using epoll channel type
[17:49:49] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[17:49:49] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 14 libraries... please wait
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/beer/devs/FastNbt-jar/1.4.7/FastNbt-jar-1.4.7.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-api/4.20.0/adventure-api-4.20.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-key/4.20.0/adventure-key-4.20.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.20.0/adventure-text-serializer-gson-4.20.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.20.0/adventure-text-serializer-json-4.20.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-commons/4.20.0/adventure-text-serializer-commons-4.20.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.20.0/adventure-text-serializer-gson-legacy-impl-4.20.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.20.0/adventure-text-serializer-json-legacy-impl-4.20.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.20.0/adventure-text-minimessage-4.20.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/ow2/asm/asm/9.3/asm-9.3.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.jar
[17:49:49] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.jar
[17:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loading 2 libraries... please wait
[17:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/9.1.0/mysql-connector-j-9.1.0.jar
[17:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/4.26.1/protobuf-java-4.26.1.jar
[17:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.46.0.0/sqlite-jdbc-3.46.0.0.jar
[17:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[17:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loading 1 libraries... please wait
[17:49:50] [Server thread/INFO]: [SpigotLibraryLoader] [RoseLoot] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.42.0.0/sqlite-jdbc-3.42.0.0.jar
[17:49:53] [Server thread/WARN]: Legacy plugin DisableSpawnerBreaking v2.0 does not specify an api-version.
[17:49:53] [Server thread/WARN]: Legacy plugin FriendSystemGUI v4.9.8 does not specify an api-version.
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loading 3 libraries... please wait
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/com/github/oshi/oshi-core/6.8.0/oshi-core-6.8.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Loom] Loading 1 libraries... please wait
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Loom] Loaded library /home/container/libraries/com/zaxxer/HikariCP/6.3.0/HikariCP-6.3.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Loom] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loading 5 libraries... please wait
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-plain/4.17.0/adventure-text-serializer-plain-4.17.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.17.0/adventure-text-serializer-gson-4.17.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.17.0/adventure-text-serializer-json-4.17.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:49:53] [Server thread/INFO]: [SpigotLibraryLoader] [Tooltips] Loaded library /home/container/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[17:49:53] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.2
[17:49:53] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.2 is now loaded. Registering protocol transformers and injecting...
[17:49:53] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[17:49:53] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[17:49:53] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.5.0
[17:49:53] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[17:49:53] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[17:49:54] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1109;f03d791
[17:49:54] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@61fddc08]
[17:49:54] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[17:49:54] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.21.5-v1
[17:49:56] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[17:49:56] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.21.5-v1
[17:49:56] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3479)
[17:49:56] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.9.1-SNAPSHOT-bb199eaf
[17:49:56] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[17:49:56] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[17:49:56] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.17.2
[17:49:56] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.8.0
[17:49:56] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.9
[17:49:56] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.2-dev+5-4ab3bbc
[17:49:56] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.11.2
[17:49:56] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.5
[17:49:56] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.10-hotfix-1
[17:49:56] [Server thread/INFO]: [HuskSync] Loading server plugin HuskSync v3.7-unknown
[17:49:56] [Server thread/INFO]: [HuskSync] Initializing plugin config & locale files...
[17:49:56] [Server thread/INFO]: [HuskSync] Successfully initialized plugin config & locale files
[17:49:56] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.6.5
[17:49:56] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.2-dev+5-4ab3bbc
[17:49:56] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[17:49:56] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.3.2
[17:49:56] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.4.7
[17:49:56] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.15.0
[17:49:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[17:49:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[17:49:56] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[17:49:56] [Server thread/INFO]: [MagicCosmetics] Loading server plugin MagicCosmetics v3.1.0
[17:49:56] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.3.0.0
[17:49:56] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.4.4
[17:49:56] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[17:49:56] [Server thread/INFO]: [GPS] Loading server plugin GPS v2.20.0
[17:49:56] [Server thread/INFO]: [QuestRandom] Loading server plugin QuestRandom v1.5
[17:49:56] [Server thread/INFO]: [ktlibs-kotlin-stdlib] Loading server plugin ktlibs-kotlin-stdlib v2.1.21
[17:49:56] [Server thread/INFO]: [RoseLoot] Loading server plugin RoseLoot v1.2.20
[17:49:56] [Server thread/INFO]: [RoseLoot] Initializing using RoseGarden v1.4.6
[17:49:56] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[17:49:56] [Server thread/INFO]: [DeathSpawnPlugin] Loading server plugin DeathSpawnPlugin v1.0-SNAPSHOT
[17:49:56] [Server thread/INFO]: [DisableSpawnerBreaking] Loading server plugin DisableSpawnerBreaking v2.0
[17:49:56] [Server thread/INFO]: [AntiSeedCracker] Loading server plugin AntiSeedCracker v1.2.1
[17:49:56] [Server thread/INFO]: [SyncEssential] Loading server plugin SyncEssential v1.0-SNAPSHOT
[17:49:56] [Server thread/INFO]: [RegionDisplayName] Loading server plugin RegionDisplayName v1.4
[17:49:56] [Server thread/INFO]: [CustomNameplates] Loading server plugin CustomNameplates v3.0.19
[17:49:56] [Server thread/INFO]: [RedstoneLimiter] Loading server plugin RedstoneLimiter v0.0.6
[17:49:56] [Server thread/INFO]: [GiftCode24] Loading server plugin GiftCode24 v2.1.0-Stable
[17:49:56] [Server thread/INFO]: [RecipeControl] Loading server plugin RecipeControl v3.1.8
[17:49:56] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-Release
[17:49:56] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version! The following Item options will not work: nbt_int, nbt_ints, nbt_string and nbt_strings.
[17:49:56] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.22.5
[17:49:56] [Server thread/INFO]: [DeathTP] Loading server plugin DeathTP v1.0
[17:49:56] [Server thread/INFO]: [RemoveItemsAdderCommand] Loading server plugin RemoveItemsAdderCommand v1.0
[17:49:56] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.36
[17:49:56] [Server thread/INFO]: [CommandTimer] Loading server plugin CommandTimer v1.0
[17:49:56] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.9.6
[17:49:56] [Server thread/INFO]: [HuskHomes] Registered 'on_load' hooks
[17:49:56] [Server thread/INFO]: [HuskHomes] Successfully loaded HuskHomes v4.9.6
[17:49:56] [Server thread/INFO]: [LeaderMobs] Loading server plugin LeaderMobs v2.2.2
[17:49:56] [Server thread/INFO]: [DataTransferPlugin] Loading server plugin DataTransferPlugin v1.0-SNAPSHOT
[17:49:56] [Server thread/INFO]: [SpawnerMeta] Loading server plugin SpawnerMeta v25.1
[17:49:56] [Server thread/INFO]: [FriendSystemGUI] Loading server plugin FriendSystemGUI v4.9.8
[17:49:56] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.3.0.0
[17:49:56] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[17:49:56] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.5.26
[17:49:56] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.12.2
[17:49:56] [Server thread/INFO]: [Pl-Hide-Pro] Loading library caffeine
[17:49:56] [Server thread/INFO]: [⚡] Loading server plugin LagFixer v1.4.15 (build 110)
[17:49:56] [Server thread/INFO]: [FarmLimiter] Loading server plugin FarmLimiter v1.6.0
[17:49:56] [Server thread/INFO]: [TradeMe] Loading server plugin TradeMe v6.2.2.4
[17:49:56] [Server thread/INFO]: [LPX] Loading server plugin LPX v3.6.6
[17:49:56] [Thread-8/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[17:49:56] [Server thread/INFO]: [Loom] Loading server plugin Loom v1.1.0
[17:49:56] [Server thread/INFO]: [Tooltips] Loading server plugin Tooltips v2.3
[17:49:56] [Server thread/INFO]: [CharacterDialogue] Loading server plugin CharacterDialogue v0.8
[17:49:56] [Server thread/INFO]: [MineVNLib] Loading server plugin MineVNLib v1.1.8
[17:49:56] [Server thread/INFO]: [iCommands] Loading server plugin iCommands v1.0.0
[17:49:56] [Server thread/INFO]: [PlayerProfile] Loading server plugin PlayerProfile v1.3.0
[17:49:56] [Server thread/INFO]: [UltraRepair] Loading server plugin UltraRepair v4.2.5
[17:49:56] [Server thread/INFO]: [AnvilWithdrawPlugin] Loading server plugin AnvilWithdrawPlugin v1.8-SNAPSHOT
[17:49:56] [Server thread/INFO]: [MagicCrates] Loading server plugin MagicCrates v1.8.6
[17:49:56] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.3
[17:49:56] [Server thread/INFO]: [CurrencyDeposit] Loading server plugin CurrencyDeposit v1.0
[17:49:56] [Server thread/INFO]: [AntiMending] Loading server plugin AntiMending v1.0-SNAPSHOT
[17:49:56] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.1
[17:49:56] [Server thread/INFO]: [PlayerAuctions] Loading server plugin PlayerAuctions v1.31.1
[17:49:57] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.4.1
[17:49:57] [Server thread/INFO]: [CustomCrops] Loading server plugin CustomCrops v3.6.32.1
[17:49:57] [Server thread/INFO]: [DirectionalBlock] Loading server plugin DirectionalBlock v1.4.1
[17:49:57] [Server thread/INFO]: [GravesX] Loading server plugin GravesX v4.9.7.3
[17:49:57] [Server thread/INFO]: [AutoReward] Loading server plugin AutoReward v1.0-SNAPSHOT
[17:49:57] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v3.8.3
[17:49:57] [Server thread/INFO]: [HMCColor] Loading server plugin HMCColor v2.3
[17:49:57] [Server thread/INFO]: [CrossTalky] Loading server plugin CrossTalky v1.0
[17:49:57] [Server thread/INFO]: [Relics] Loading server plugin Relics v0.0.5
[17:49:57] [Server thread/INFO]: [BanItem] Loading server plugin BanItem v3.7
[17:49:57] [Server thread/INFO]: [Topper] Loading server plugin Topper v3.10.1
[17:49:57] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.15.9
[17:49:57] [Server thread/INFO]: [ConsoleSpamFixReborn] Loading server plugin ConsoleSpamFixReborn v1.11.5
[17:49:57] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:49:57] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.5.0
[17:49:58] [Server thread/INFO]:         __    
[17:49:58] [Server thread/INFO]:   |    |__)   LuckPerms v5.5.0
[17:49:58] [Server thread/INFO]:   |___ |      Running on Bukkit - Leaf
[17:49:58] [Server thread/INFO]: 
[17:49:58] [Server thread/INFO]: [LuckPerms] Loading configuration...
[17:49:58] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[17:49:58] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[17:49:58] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[17:49:58] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[17:49:58] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[17:49:59] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[17:49:59] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1641ms)
[17:49:59] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[17:49:59] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[17:49:59] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:49:59] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[17:49:59] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[17:49:59] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[17:49:59] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1109;f03d791
[17:49:59] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[17:49:59] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[17:49:59] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:49:59] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[17:49:59] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[17:49:59] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.21.5-v1
[17:49:59] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Purpur (Paper) (Spigot) (1.21.1-DEV-2409397 | mojmap) : (Unknown) (Minecraft 1.21.1)
[17:49:59] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[17:49:59] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[17:50:00] [Server thread/INFO]: [BKCommonLib] Having an error? *gasp* Don't forget to file a ticket on github!
[17:50:00] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.21.5-v1 (build: 1864) enabled! (0.488s)
[17:50:00] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.9
[17:50:00] [Server thread/INFO]: [ModelEngine] [S] Loading cache version: R4.0.8
[17:50:00] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.6.5
[17:50:00] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[17:50:00] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[17:50:00] [Server thread/INFO]: [SkinsRestorer] You have to put the same config.yml on all servers and on the proxy.
[17:50:00] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[17:50:00] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[17:50:00] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.1.
[17:50:00] [Server thread/INFO]: [SkinsRestorer] Connected to MySQL!
[17:50:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.6.5]
[17:50:00] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[17:50:00] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.3.2
[17:50:00] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[17:50:00] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[17:50:00] [Server thread/INFO]: [PlayerPoints] Data handler connected using MySQL.
[17:50:00] [Server thread/INFO]: [ktlibs-kotlin-stdlib] Enabling ktlibs-kotlin-stdlib v2.1.21
[17:50:00] [Server thread/INFO]: [GiftCode24] Enabling GiftCode24 v2.1.0-Stable
[17:50:00] [Server thread/INFO]: [GiftCode24]  
[17:50:00] [Server thread/INFO]: [GiftCode24]  ██████╗ ██╗███████╗████████╗ ██████╗ ██████╗ ██████╗ ███████╗██████╗ ██╗  ██╗
[17:50:00] [Server thread/INFO]: [GiftCode24] ██╔════╝ ██║██╔════╝╚══██╔══╝██╔════╝██╔═══██╗██╔══██╗██╔════╝╚════██╗██║  ██║
[17:50:00] [Server thread/INFO]: [GiftCode24] ██║  ███╗██║█████╗     ██║   ██║     ██║   ██║██║  ██║█████╗   █████╔╝███████║
[17:50:00] [Server thread/INFO]: [GiftCode24] ██║   ██║██║██╔══╝     ██║   ██║     ██║   ██║██║  ██║██╔══╝  ██╔═══╝ ╚════██║
[17:50:00] [Server thread/INFO]: [GiftCode24] ╚██████╔╝██║██║        ██║   ╚██████╗╚██████╔╝██████╔╝███████╗███████╗     ██║
[17:50:00] [Server thread/INFO]: [GiftCode24]  ╚═════╝ ╚═╝╚═╝        ╚═╝    ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝╚══════╝     ╚═╝
[17:50:00] [Server thread/INFO]: [GiftCode24]  
[17:50:00] [Server thread/INFO]: [GiftCode24]   Tác giả: QuangDev05
[17:50:00] [Server thread/INFO]: [GiftCode24]   Phiên bản: v2.1.0-Stable
[17:50:00] [Server thread/INFO]: [GiftCode24]  
[17:50:00] [Server thread/INFO]: [RemoveItemsAdderCommand] Enabling RemoveItemsAdderCommand v1.0
[17:50:00] [Server thread/INFO]: [CommandTimer] Enabling CommandTimer v1.0
[17:50:00] [Server thread/INFO]: [CommandTimer] CommandTimer đã kích hoạt!
[17:50:00] [Server thread/INFO]: [iCommands] Enabling iCommands v1.0.0
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.6.5
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: f8c262a
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[17:50:00] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[17:50:00] [Server thread/INFO]: [iCommands] Hooked into: Vault.
[17:50:00] [Server thread/INFO]: [iCommands] Hooked into: PlayerPoints.
[17:50:00] [Server thread/INFO]: [iCommands] Hooked into: LuckPerms.
[17:50:00] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[17:50:00] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[17:50:00] [Server thread/WARN]: [PlugManX] It seems like you're running on paper.
[17:50:00] [Server thread/WARN]: [PlugManX] PlugManX cannot interact with paper-plugins, yet.
[17:50:00] [Server thread/WARN]: [PlugManX] Also, if you encounter any issues, please join my discord: https://discord.gg/GxEFhVY6ff
[17:50:00] [Server thread/WARN]: [PlugManX] Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[17:50:00] [Server thread/WARN]: [PlugManX] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[17:50:01] [Server thread/INFO]: [ConsoleSpamFixReborn] Enabling ConsoleSpamFixReborn v1.11.5
[17:50:01] [Server thread/INFO]: [ConsoleSpamFixReborn] Initializing ConsoleSpamFixReborn
[17:50:01] [Server thread/INFO]: [ConsoleSpamFixReborn] Server version detected: 1.21.1
[17:50:01] [Server thread/INFO]: [ConsoleSpamFixReborn] Loading the config file...
[17:50:01] [Server thread/INFO]: [ConsoleSpamFixReborn] Config file loaded!
[17:50:01] [Server thread/INFO]: [ConsoleSpamFixReborn] Attempting to register command executor for 'csf'
[17:50:01] [Server thread/INFO]: [ConsoleSpamFixReborn] Command 'csf' found. Setting executor...
[17:50:01] [Server thread/INFO]: [ConsoleSpamFixReborn] Command executor for 'csf' set successfully.
[17:50:01] [Server thread/INFO]: [ConsoleSpamFixReborn] ConsoleSpamFixReborn loaded successfully!
[17:50:01] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[17:50:01] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[17:50:01] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[17:50:01] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[17:50:01] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[17:50:01] [Server thread/INFO]: Preparing level "world"
[17:50:01] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[17:50:02] [Server thread/INFO]: Time elapsed: 402 ms
[17:50:02] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[17:50:02] [Server thread/INFO]: Time elapsed: 83 ms
[17:50:02] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[17:50:02] [Server thread/INFO]: Time elapsed: 55 ms
[17:50:02] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.2
[17:50:02] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[17:50:02] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[17:50:02] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[17:50:02] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[17:50:02] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[17:50:02] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[17:50:02] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK
[17:50:02] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-DEV-2409397 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-DEV-2409397 (MC: 1.21.1) hence the tree type PALE_OAK is not available. This is not an error. This version of FAWE will work on your version of  Minecraft. This is an informative message only.
[17:50:02] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK_CREAKING
[17:50:02] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-DEV-2409397 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-DEV-2409397 (MC: 1.21.1) hence the tree type PALE_OAK_CREAKING is not available. This is not an error. This version of FAWE will work on your version of  Minecraft. This is an informative message only.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[17:50:02] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:50:02] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.21.5-v1
[17:50:02] [Server thread/INFO]: [My_Worlds] Loading world 'world_red'
[17:50:02] [Server thread/INFO]: Preparing start region for dimension minecraft:world_red
[17:50:02] [Server thread/INFO]: Time elapsed: 57 ms
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_red) TNT ignition is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_red) Lighters are PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_red) Lava fire is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_red) Fire spread is UNRESTRICTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_red'
[17:50:02] [Server thread/INFO]: [My_Worlds] Loading world 'world_help'
[17:50:02] [Server thread/INFO]: Preparing start region for dimension minecraft:world_help
[17:50:02] [Server thread/INFO]: Time elapsed: 21 ms
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_help) TNT ignition is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_help) Lighters are PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_help) Lava fire is PERMITTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] (world_help) Fire spread is UNRESTRICTED.
[17:50:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_help'
[17:50:02] [Server thread/INFO]: [My_Worlds] Loading world 'world_spawn'
[17:50:02] [Server thread/INFO]: Preparing start region for dimension minecraft:world_spawn
[17:50:03] [Server thread/INFO]: Time elapsed: 81 ms
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_spawn) TNT ignition is PERMITTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_spawn) Lighters are PERMITTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_spawn) Lava fire is PERMITTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_spawn) Fire spread is UNRESTRICTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_spawn'
[17:50:03] [Server thread/INFO]: [My_Worlds] Loading world 'world_boss'
[17:50:03] [Server thread/INFO]: Preparing start region for dimension minecraft:world_boss
[17:50:03] [Server thread/INFO]: Time elapsed: 30 ms
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_boss) TNT ignition is PERMITTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_boss) Lighters are PERMITTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_boss) Lava fire is PERMITTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_boss) Fire spread is UNRESTRICTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_boss'
[17:50:03] [Server thread/INFO]: [My_Worlds] Loading world 'world_orange'
[17:50:03] [Server thread/INFO]: Preparing start region for dimension minecraft:world_orange
[17:50:03] [Server thread/INFO]: Time elapsed: 322 ms
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_orange) TNT ignition is PERMITTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_orange) Lighters are PERMITTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_orange) Lava fire is PERMITTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] (world_orange) Fire spread is UNRESTRICTED.
[17:50:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_orange'
[17:50:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.21.5-v1]
[17:50:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.21.5-v1]
[17:50:03] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[17:50:03] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.21.5-v1 (build: 326) enabled! (0.933s)
[17:50:03] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3479)
[17:50:04] [Server thread/INFO]: [Citizens] Loading external libraries
[17:50:04] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[17:50:04] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[17:50:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[17:50:04] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[17:50:04] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[17:50:04] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.9.1-SNAPSHOT-bb199eaf
[17:50:04] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.1)...
[17:50:04] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[17:50:05] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[17:50:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[17:50:05] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[17:50:05] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[17:50:05] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[17:50:05] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/data
[17:50:05] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/data/worlds
[17:50:06] [Server thread/INFO]: [MythicMobs] Loading Packs...
[17:50:06] [Server thread/INFO]: [MythicMobs] Loading Items...
[17:50:06] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[17:50:06] [Server thread/INFO]: [MythicMobs] Loading Skills...
[17:50:06] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[17:50:06] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[17:50:06] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[17:50:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 84 mobs.
[17:50:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[17:50:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[17:50:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 252 skills.
[17:50:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 171 random spawns.
[17:50:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 30 mythic items.
[17:50:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 drop tables.
[17:50:06] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[17:50:06] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[17:50:06] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[17:50:06] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.9.1 ( build bb199eaf ) has been successfully loaded!
[17:50:07] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[17:50:07] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[17:50:07] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.17.2
[17:50:07] [Server thread/INFO]: [LiteBans] Using system locale (en)
[17:50:07] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[17:50:07] [Server thread/INFO]: [LiteBans] Loading: mysql 8.0.29
[17:50:07] [Server thread/INFO]: [LiteBans] Connecting to database...
[17:50:07] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (82.3 ms).
[17:50:07] [Server thread/INFO]: [LiteBans] Database connection fully initialized (97 ms).
[17:50:07] [Server thread/INFO]: [LiteBans] v2.17.2 enabled. Startup took 99 ms.
[17:50:07] [Server thread/INFO]: [packetevents] Enabling packetevents v2.8.0
[17:50:07] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[17:50:07] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.2-dev+5-4ab3bbc
[17:50:07] [Server thread/ERROR]: [Essentials] 🎫 ʜʏᴘᴇʀᴄᴏʀᴇ ▪ ʙạɴ đᴀɴɢ sử ᴅụɴɢ ᴍộᴛ ᴘʜɪêɴ ʙảɴ ᴍáʏ ᴄʜủ ᴋʜôɴɢ đượᴄ ʜỗ ᴛʀợ!
[17:50:07] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[17:50:07] [Server thread/INFO]: [Essentials] No kits found to migrate.
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[17:50:07] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[17:50:07] [Server thread/INFO]: [Essentials] Loaded 43517 items from items.json.
[17:50:07] [Server thread/INFO]: [Essentials] Using locale en
[17:50:07] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[17:50:07] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[17:50:07] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[17:50:07] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[17:50:07] [Server thread/INFO]: [Skript] Enabling Skript v2.11.2
[17:50:07] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.8.0)
[17:50:08] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[17:50:08] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.5
[17:50:08] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Loaded 5330 aliases in 178ms
[17:50:08] [ForkJoinPool.commonPool-worker-2/INFO]: [Skript] You're currently running the latest stable version of Skript.
[17:50:09] [Server thread/INFO]: [Vulcan] Server Version: .1.21.1 detected!
[17:50:09] [Server thread/INFO]: [Vulcan] MythicMobs found. Enabling hook!
[17:50:09] [Server thread/INFO]: [Vulcan] BStats enabled!
[17:50:09] [Server thread/INFO]: [Vulcan] Registered MythicMobs listener!
[17:50:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.5]
[17:50:09] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[17:50:09] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.10-hotfix-1
[17:50:10] [Server thread/INFO]: ꑚ✇ 
                                                   ItemsAdder 4.0.10-hotfix-1
  ___  ___        __        __   __   ___  __      ProtocolLib 5.3.0
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Leaf 1.21.1-DEV-2409397 (MC: 1.21.1)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-05-05_11.20.26
                                                   Java Version: 21.0.7
                                                   OS: Linux 6.13.7-061307-generic                                               
[17:50:10] [Server thread/INFO]: [ItemsAdder] Loading GlowingEntities API
[17:50:10] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.1
[17:50:10] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[17:50:10] [Server thread/INFO]: ꑚ✇ ViaVersion detected. Do not report glitches when joining using game versions different than the server version.
[17:50:10] [Server thread/INFO]: ꑚ✇ More info: https://github.com/PluginBugs/Issues-ItemsAdder/issues/3683
[17:50:10] [Server thread/INFO]: ꑚ✇ Registered Skript API
[17:50:10] [Server thread/INFO]: ꑚ✇ Registered Citizens NPC Trait: customentity
[17:50:10] [Server thread/WARN]: ꑚ✇ DirectionalBlocks plugin detected. The plugin is unofficial.
[17:50:10] [Server thread/WARN]: ꑚ✇ You should instead use the directional blocks feature of ItemsAdder.
[17:50:10] [Server thread/WARN]: ꑚ✇ Read more: http://a.devs.beer/ia-directional-blocks
[17:50:10] [Server thread/INFO]: ꑚ✇ [!] Waiting for Cyclic dependencies to load before loading ItemsAdder contents: AdvancedEnchantments
[17:50:10] [Server thread/INFO]: [HuskSync] Enabling HuskSync v3.7-unknown
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing commands...
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized commands
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing data adapter...
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized data adapter
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing data serializers...
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized data serializers
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing data migrators/converters...
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized data migrators/converters
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing MySQL database connection...
[17:50:10] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.HikariDataSource] HuskSyncHikariPool - Starting...
[17:50:10] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.pool.HikariPool] HuskSyncHikariPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@5fd8bdcf
[17:50:10] [Server thread/INFO]: [net.william278.husksync.libraries.hikari.HikariDataSource] HuskSyncHikariPool - Start completed.
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized MySQL database connection
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing Redis server connection...
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized Redis server connection
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing data syncer...
[17:50:10] [husksync:redis_subscriber/INFO]: [HuskSync] Redis subscribed to channel 'husksync:::update_user_data'
[17:50:10] [husksync:redis_subscriber/INFO]: [HuskSync] Redis subscribed to channel 'husksync:::request_user_data'
[17:50:10] [husksync:redis_subscriber/INFO]: [HuskSync] Redis subscribed to channel 'husksync:::return_user_data'
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized data syncer
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing events...
[17:50:10] [Server thread/INFO]: [HuskSync] Using PacketEvents to cancel packets for locked players
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized events
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing hooks...
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized hooks
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing api...
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized api
[17:50:10] [Server thread/INFO]: [HuskSync] Initializing metrics...
[17:50:10] [Server thread/INFO]: [HuskSync] Successfully initialized metrics
[17:50:10] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.2-dev+5-4ab3bbc
[17:50:10] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[17:50:10] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[17:50:10] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.15.0
[17:50:10] [Server thread/INFO]: [NBTAPI] Checking bindings...
[17:50:10] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[17:50:10] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[17:50:10] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[17:50:10] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Enabling MagicCosmetics v3.1.0
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Version: 1.21.1 Detected!
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: funiture.yml
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: balloon.yml
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: walking_stick.yml
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: hat.yml
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Loading file cosmetic: bag.yml
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Validating purchase...
[17:50:10] [Server thread/INFO]: [MagicCosmetics]  
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Welcome spigotunlocked!
[17:50:10] [Server thread/INFO]: [MagicCosmetics] Thank you for using MagicCosmetics =)!
[17:50:10] [Server thread/INFO]: [MagicCosmetics]  
[17:50:10] [Server thread/INFO]: [HuskSync] Registered custom data type: magicosmetics:cosmetics
[17:50:10] [Server thread/INFO]: [MagicCosmetics] ModelEngine 4 found, using new model engine
[17:50:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: magicosmetics [3.1.0]
[17:50:10] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[17:50:10] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5b08ae1
[17:50:10] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[17:50:10] [Server thread/INFO]: [MagicCosmetics] MySQL table created successfully
[17:50:10] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.3.0.0
[17:50:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[17:50:11] [pool-175-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[17:50:11] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[17:50:12] [Server thread/INFO]: [InteractiveChat] No custom ProtocolProvider provided, using default ProtocolLib provider.
[17:50:12] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[17:50:12] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[17:50:12] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[17:50:12] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[17:50:12] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[17:50:12] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[17:50:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.3.0.0]
[17:50:12] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[17:50:12] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.4.4
[17:50:12] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.1 - leaf  1.21.1-DEV-2409397 (MC: 1.21.1)
[17:50:13] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[17:50:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.4.4]
[17:50:13] [Server thread/INFO]: PlaceholderAPI hooked.
[17:50:13] [Server thread/INFO]: Updated (EN) language file. Took 10ms
[17:50:13] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[17:50:13] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[17:50:13] [Server thread/INFO]: [GPS] Enabling GPS v2.20.0
[17:50:13] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[17:50:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[17:50:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[17:50:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[17:50:13] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[17:50:13] [Server thread/INFO]: [QuestRandom] Enabling QuestRandom v1.5
[17:50:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: questrandom [1.5]
[17:50:13] [Server thread/INFO]: [QuestRandom] Đã kết nối với PlaceholderAPI!
[17:50:13] [Server thread/INFO]: [QuestRandom] QuestRandom đã được kích hoạt!
[17:50:13] [Server thread/INFO]: [RoseLoot] Enabling RoseLoot v1.2.20
[17:50:13] [Server thread/INFO]: [RoseLoot] Data handler connected using SQLite.
[17:50:13] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[17:50:13] [Server thread/INFO]: [BetterRTP] Cooldown = 300
[17:50:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[17:50:14] [Server thread/INFO]: [DeathSpawnPlugin] Enabling DeathSpawnPlugin v1.0-SNAPSHOT
[17:50:14] [Server thread/INFO]: [DisableSpawnerBreaking] Enabling DisableSpawnerBreaking v2.0*
[17:50:14] [Server thread/INFO]: [AntiSeedCracker] Enabling AntiSeedCracker v1.2.1
[17:50:14] [Server thread/INFO]: [SyncEssential] Enabling SyncEssential v1.0-SNAPSHOT
[17:50:14] [Server thread/INFO]: [SyncEssential] ✅ MySQL connected
[17:50:14] [Server thread/INFO]: [SyncEssential] ✅ Table essentials_data ready
[17:50:14] [Server thread/INFO]: [RegionDisplayName] Enabling RegionDisplayName v1.4
[17:50:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rdn [1.4]
[17:50:14] [Server thread/INFO]: [CustomNameplates] Enabling CustomNameplates v3.0.19
[17:50:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nameplates [3.0]
[17:50:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: npex [3.0]
[17:50:15] [Server thread/INFO]: [RedstoneLimiter] Enabling RedstoneLimiter v0.0.6
[17:50:15] [Server thread/INFO]: [RecipeControl] Enabling RecipeControl v3.1.8
[17:50:15] [Server thread/INFO]: [RecipeControl] Loading recipes from file shaped_crafting.yml
[17:50:15] [Server thread/INFO]: [RecipeControl] Loading recipes from file stonecutting.yml
[17:50:15] [Server thread/INFO]: [RecipeControl] Loaded 60 recipes.
[17:50:15] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-Release
[17:50:15] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[17:50:15] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[17:50:15] [Server thread/INFO]: [DeluxeMenus] 9 GUI menus loaded!
[17:50:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-Release]
[17:50:15] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[17:50:16] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.22.5
[17:50:16] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.22.5 Plugin Loading...
[17:50:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[17:50:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[17:50:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'CommandPanels' to create a bStats instance!
[17:50:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [3.22.5]
[17:50:16] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.22.5 Plugin Loaded!
[17:50:16] [Server thread/INFO]: [DeathTP] Enabling DeathTP v1.0
[17:50:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deathtp [1.0]
[17:50:16] [Server thread/INFO]: [DeathTP] Đã đăng ký PlaceholderAPI cho DeathTP!
[17:50:16] [Server thread/INFO]: [DeathTP] Plugin DeathTP đã được kích hoạt!
[17:50:16] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.36
[17:50:16] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.9.6
[17:50:16] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Starting...
[17:50:16] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.pool.HikariPool] HuskHomesHikariPool - Added connection com.mysql.cj.jdbc.ConnectionImpl@6102e512
[17:50:16] [Server thread/INFO]: [net.william278.huskhomes.libraries.hikari.HikariDataSource] HuskHomesHikariPool - Start completed.
[17:50:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: huskhomes [4.9.6]
[17:50:16] [Server thread/INFO]: [HuskHomes] Registered 'on_enable' hooks
[17:50:16] [Server thread/INFO]: [HuskHomes] Successfully enabled HuskHomes v4.9.6
[17:50:16] [Server thread/INFO]: [LeaderMobs] Enabling LeaderMobs v2.2.2
[17:50:16] [Server thread/INFO]: [LeaderMobs] Found MythicMobs, hooking...
[17:50:16] [Server thread/INFO]: [LeaderMobs] Found PlaceholderAPI, hooking...
[17:50:16] [Server thread/INFO]: [DataTransferPlugin] Enabling DataTransferPlugin v1.0-SNAPSHOT
[17:50:16] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Starting...
[17:50:16] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-3 - Start completed.
[17:50:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: datatransfer [1.0-SNAPSHOT]
[17:50:16] [Server thread/INFO]: [DataTransferPlugin] PlaceholderAPI placeholders registered!
[17:50:16] [Server thread/INFO]: [SpawnerMeta] Enabling SpawnerMeta v25.1
[17:50:16] [Server thread/INFO]: [SpawnerMeta v25.1] enabled!
[17:50:16] [Server thread/INFO]: [SpawnerMeta] Vault has been found, economy enabled!
[17:50:16] [Server thread/INFO]: [SpawnerMeta] PlayerPoints has been found, player points enabled!
[17:50:16] [Server thread/INFO]: [FriendSystemGUI] Enabling FriendSystemGUI v4.9.8*
[17:50:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: friendsystem [4.9.8]
[17:50:16] [Server thread/INFO]: [FriendSystem] Loaded FriendSystem-Spigot plugin!
[17:50:16] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.3.0.0
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[17:50:17] [Server thread/INFO]: [InteractiveChat] Loading languages...
[17:50:17] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[17:50:17] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[17:50:17] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[17:50:17] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has hooked into ItemsAdder!
[17:50:17] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[17:50:17] [Server thread/INFO]: [voicechat] Enabling voicechat v2.5.26
[17:50:17] [Server thread/INFO]: [voicechat] Initializing compatibility for Bukkit version 1.21.1-R0.1
[17:50:17] [Server thread/INFO]: [voicechat] Compatibility version 18
[17:50:17] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
[17:50:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voicechat [2.5.26]
[17:50:17] [Server thread/INFO]: [voicechat] Successfully registered PlaceholderAPI expansion
[17:50:17] [Server thread/INFO]: [voicechat] Successfully added ViaVersion mappings
[17:50:17] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.12.2
[17:50:17] [Server thread/INFO]: [Pl-Hide-Pro] Loaded LuckPerms hook
[17:50:17] [Server thread/INFO]: [⚡] Enabling LagFixer v1.4.15 (build 110)
[17:50:17] [Server thread/INFO]: [⚡] Remember to leave a rating! ★ ★ ★ ★ ★





LagFixer - Best Performance Solution!
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░██╗░░░░░░█████╗░░██████╗░░░███████╗██╗██╗░░██╗███████╗██████╗░░
░██║░░░░░██╔══██╗██╔════╝░░░██╔════╝██║╚██╗██╔╝██╔════╝██╔══██╗░
░██║░░░░░███████║██║░░██╗░░░█████╗░░██║░╚███╔╝░█████╗░░██████╔╝░
░██║░░░░░██╔══██║██║░░╚██╗░░██╔══╝░░██║░██╔██╗░██╔══╝░░██╔══██╗░
░███████╗██║░░██║╚██████╔╝░░██║░░░░░██║██╔╝╚██╗███████╗██║░░██║░
░╚══════╝╚═╝░░╚═╝░╚═════╝░░░╚═╝░░░░░╚═╝╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░





[17:50:17] [Server thread/INFO]: [⚡] (ErrorsManager) -> Enabling manager...
[17:50:17] [Server thread/INFO]: [⚡]  • Started listening for console LagFixer errors!
[17:50:17] [Server thread/INFO]: [⚡] (ErrorsManager) -> Enabled manager in 1ms!
[17:50:17] [Server thread/INFO]: [⚡] (SupportManager) -> Enabling manager...
[17:50:17] [Server thread/INFO]: [⚡]  • Loaded fork support ~ xyz.lychee.lagfixer.support.Paper
[17:50:17] [Server thread/INFO]: [⚡]  • Loaded nms support ~ xyz.lychee.lagfixer.nms.v1_21_R1.SupportNms
[17:50:17] [Server thread/INFO]: [⚡] (SupportManager) -> Enabled manager in 5ms!
[17:50:17] [Server thread/INFO]: [⚡] (ConfigManager) -> Enabling manager...
[17:50:17] [Server thread/INFO]: [⚡] (ConfigManager) -> Enabled manager in 19ms!
[17:50:17] [Server thread/INFO]: [⚡] (HookManager) -> Enabling manager...
[17:50:17] [Server thread/INFO]: [⚡]  • Skipping hook WildStacker, reason: Plugin not found
[17:50:17] [Server thread/INFO]: [⚡]  • Skipping hook UltimateStacker, reason: Plugin not found
[17:50:17] [Server thread/INFO]: [⚡]  • Skipping hook spark, reason: Plugin not found
[17:50:17] [Server thread/INFO]: [⚡]  • Skipping hook RoseStacker, reason: Plugin not found
[17:50:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lagfixer [1.4.15 (build 110)]
[17:50:17] [Server thread/INFO]: [⚡]  • Sucessfully loaded hook PlaceholderAPI in 1ms!
[17:50:17] [Server thread/INFO]: [⚡] (HookManager) -> Enabled manager in 1ms!
[17:50:17] [Server thread/INFO]: [⚡] (MetricsManager) -> Enabling manager...
[17:50:17] [Server thread/INFO]: [⚡] (MetricsManager) -> Enabled manager in 1ms!
[17:50:17] [Server thread/INFO]: [⚡] (UpdaterManager) -> Enabling manager...
[17:50:17] [Server thread/INFO]: [⚡] (UpdaterManager) -> Enabled manager in 0ms!
[17:50:17] [Server thread/INFO]: [⚡] (ModuleManager) -> Enabling manager...
[17:50:17] [Server thread/INFO]: [⚡]  • Successfully loaded module EntityLimiter in 1ms.
[17:50:17] [Server thread/INFO]: [⚡]  • Successfully loaded module LagMonitor in 1ms.
[17:50:17] [Server thread/INFO]: [⚡]  • Successfully loaded module InstantLeafDecay in 1ms.
[17:50:17] [Server thread/INFO]: [⚡]  • Successfully loaded module RedstoneLimiter in 1ms.
[17:50:17] [Server thread/INFO]: [⚡]  • Successfully loaded module AbilityLimiter in 0ms.
[17:50:17] [Server thread/INFO]: [⚡] (ModuleManager) -> Enabled manager in 16ms!
[17:50:17] [Server thread/INFO]: [⚡] (CommandManager) -> Enabling manager...
[17:50:17] [Server thread/INFO]: [⚡] (CommandManager) -> Enabled manager in 26ms!
[17:50:17] [Server thread/INFO]: [⚡] Remember to leave a rating! ★ ★ ★ ★ ★
[17:50:17] [Server thread/INFO]: [FarmLimiter] Enabling FarmLimiter v1.6.0
[17:50:17] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[17:50:17] [Server thread/INFO]: [TradeMe] Enabling TradeMe v6.2.2.4
[17:50:18] [Server thread/INFO]: [TradeMe] Version 6.2.2.4 has been enabled
[17:50:18] [Server thread/INFO]: [TradeMe] PlayerPoints plugin was found!
[17:50:18] [Server thread/INFO]: [TradeMe] Vault plugin was found!
[17:50:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: trademe [6.2.2.4]
[17:50:18] [Server thread/INFO]: [TradeMe] PlaceholderAPI hooked.
[17:50:18] [Server thread/INFO]: [TradeMe] Connected to sqlite
[17:50:18] [Server thread/INFO]: [TradeMe] 0 trade logs preloaded
[17:50:18] [Server thread/INFO]: [LPX] Enabling LPX v3.6.6
[17:50:19] [Server thread/INFO]: [LPX] LPX enabled!
[17:50:19] [Server thread/INFO]: [LPX] License successfully validated!
[17:50:19] [Server thread/INFO]: [Loom] Enabling Loom v1.1.0
[17:50:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: loom [1.1.0]
[17:50:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Starting...
[17:50:19] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-4 - Added connection com.mysql.cj.jdbc.ConnectionImpl@1d04c33e
[17:50:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-4 - Start completed.
[17:50:19] [Server thread/INFO]: connect database
[17:50:19] [Server thread/INFO]: [Tooltips] Enabling Tooltips v2.3
[17:50:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tooltips [1.1]
[17:50:19] [Server thread/INFO]: [Tooltips] Loading schemas...
[17:50:19] [WebSocketConnectReadThread-339/INFO]: [Loom] Connected to WebSocket
[17:50:19] [Server thread/INFO]: [Tooltips] Loading icons...
[17:50:19] [Server thread/INFO]: [Tooltips] Loaded 7 icons.
[17:50:19] [Server thread/INFO]: [Tooltips] Loading themes...
[17:50:19] [Server thread/INFO]: [Tooltips] Loaded 10 themes.
[17:50:19] [Server thread/INFO]: [Tooltips] Loading presets...
[17:50:19] [Server thread/INFO]: [Tooltips] Loaded 6 presets.
[17:50:19] [Server thread/INFO]: [Tooltips] Generating resources...
[17:50:19] [Server thread/INFO]: [CharacterDialogue] Enabling CharacterDialogue v0.8
[17:50:19] [Server thread/INFO]: [CharacterDialogue] CharacterDialogue enabled. 0.8
[17:50:19] [Server thread/INFO]: [CharacterDialogue] Loaded in 22587ms
[17:50:19] [Server thread/INFO]: [MineVNLib] Enabling MineVNLib v1.1.8
[17:50:19] [Server thread/INFO]: [PlayerProfile] Enabling PlayerProfile v1.3.0
[17:50:19] [Server thread/INFO]: [PlayerProfile] Detected server version: 1.21.1
[17:50:19] [Server thread/INFO]: [PlayerProfile] Loading menu file: menu.yml
[17:50:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Starting...
[17:50:19] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-5 - Added connection org.sqlite.jdbc4.JDBC4Connection@2a4d093d
[17:50:19] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-5 - Start completed.
[17:50:19] [Server thread/INFO]: [PlayerProfile] SQLite table created successfully
[17:50:19] [Server thread/INFO]: [UltraRepair] Enabling UltraRepair v4.2.5
[17:50:19] [Server thread/INFO]: 
[17:50:19] [Server thread/INFO]: 
[17:50:19] [Server thread/INFO]:  ____ ___  __________ 
[17:50:19] [Server thread/INFO]: |    |   \ \______   \
[17:50:19] [Server thread/INFO]: |    |   /  |       _/
[17:50:19] [Server thread/INFO]: |    |  /   |    |   \
[17:50:19] [Server thread/INFO]: |______/    |____|_  /
[17:50:19] [Server thread/INFO]:                    \/ 
[17:50:19] [Server thread/INFO]: [UltraRepair] Loading configuration files...
[17:50:19] [Server thread/INFO]: [UltraRepair] Initializing base settings...
[17:50:19] [Server thread/INFO]: [UltraRepair] Checking economy integration...
[17:50:19] [Server thread/INFO]: [UltraRepair] Loading repair manager...
[17:50:19] [Server thread/INFO]: [UltraRepair] Registering commands...
[17:50:19] [Server thread/WARN]: [UltraRepair] "UltraRepair v4.2.5" has registered a listener for com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent on method "public void dev.demeng.ultrarepair.shaded.pluginbase.commands.bukkit.brigadier.PaperCommodore$CommandRegisterListener.onCommandRegistered(com.destroystokyo.paper.event.brigadier.CommandRegisteredEvent<?>)", but the event is Deprecated. "This event has been superseded by the Commands API and will be removed in a future release. Listen to LifecycleEvents.COMMANDS instead."; please notify the authors [Demeng].
[17:50:19] [Server thread/INFO]: [UltraRepair] Registering listeners...
[17:50:19] [Server thread/INFO]: [UltraRepair] Loading metrics...
[17:50:19] [Server thread/INFO]: [UltraRepair] Checking for updates...
[17:50:19] [Server thread/INFO]: ꑚ✇ UltraRepair v4.2.5 by Demeng has been enabled.
[17:50:19] [Server thread/INFO]: [AnvilWithdrawPlugin] Enabling AnvilWithdrawPlugin v1.8-SNAPSHOT
[17:50:19] [Server thread/INFO]: [MagicCrates] Enabling MagicCrates v1.8.6
[17:50:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: magiccrates [1.8.6]
[17:50:19] [Server thread/INFO]: [MagicCrates] Validating purchase...
[17:50:19] [Server thread/INFO]: [MagicCrates]  
[17:50:19] [Server thread/INFO]: [MagicCrates] Welcome bronub!
[17:50:19] [Server thread/INFO]: [MagicCrates] Thank you for using MagicCrates =)!
[17:50:19] [Server thread/INFO]: [MagicCrates]  
[17:50:19] [Server thread/INFO]: [MagicCrates] MiniMessage Format Detected.
[17:50:20] [Server thread/INFO]: [MagicCrates] Detected server version: 1.21.1
[17:50:20] [Server thread/INFO]: [MagicCrates] ModelEngine 4 found, using new model engine
[17:50:20] [Server thread/INFO]: [Images] Enabling Images v2.5.3
[17:50:20] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[17:50:20] [Server thread/INFO]: [CurrencyDeposit] Enabling CurrencyDeposit v1.0
[17:50:20] [Server thread/INFO]: [CurrencyDeposit] Configuration loaded!
[17:50:20] [Server thread/INFO]: [AntiMending] Enabling AntiMending v1.0-SNAPSHOT
[17:50:20] [Server thread/INFO]: [TAB] Enabling TAB v5.2.1
[17:50:20] [Server thread/INFO]: [TAB] Successfully connected to Redis
[17:50:20] [Server thread/INFO]: [TAB] Enabled in 91ms
[17:50:20] [Server thread/INFO]: [PlayerAuctions] Enabling PlayerAuctions v1.31.1
[17:50:20] [Server thread/INFO]: [PlayerAuctions] Vault found, now enabling PlayerAuctions...
[17:50:20] [Thread-35/INFO]: [me.neznamy.tab.libs.com.saicone.delivery4j.broker.RedisBroker] Redis subscribed to channel 'TAB'
[17:50:22] [Server thread/INFO]: [PlayerAuctions] Found 21 config files to load!
[17:50:25] [Server thread/INFO]: [PlayerAuctions] Permissions plugin found! (LuckPerms)
[17:50:25] [Server thread/INFO]: [PlayerAuctions] Economy plugin found! (EssentialsX Economy)
[17:50:25] [Server thread/INFO]: [PlayerAuctions] Chat plugin found! (LuckPerms)
[17:50:25] [Server thread/INFO]: [PlayerAuctions] Found PlaceholderAPI integrating support...
[17:50:25] [Server thread/INFO]: [PlayerAuctions] Found Vault Currency integrating support...
[17:50:25] [Server thread/INFO]: [PlayerAuctions] Found Product Converter integrating support...
[17:50:25] [Server thread/INFO]: [PlayerAuctions] SQLite database is enabling...
[17:50:25] [Server thread/INFO]: [PlayerAuctions] Loading Metrics...
[17:50:25] [Server thread/INFO]: [PlayerAuctions] Successfully loaded Metrics!
[17:50:25] [Server thread/INFO]: [CustomCrops] Enabling CustomCrops v3.6.32.1
[17:50:25] [Server thread/WARN]: [CustomCrops] "CustomCrops v3.6.32.1" has registered a listener for dev.lone.itemsadder.api.Events.FurniturePlaceSuccessEvent on method "public void net.momirealms.customcrops.bukkit.integration.custom.itemsadder_r1.ItemsAdderListener.onPlaceFurniture(dev.lone.itemsadder.api.Events.FurniturePlaceSuccessEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [XiaoMoMi].
[17:50:25] [Server thread/INFO]: [CustomCrops] ItemsAdder hooked!
[17:50:25] [Server thread/INFO]: [CustomCrops] ItemsAdder hooked!
[17:50:25] [Server thread/INFO]: [CustomCrops] MythicMobs hooked!
[17:50:25] [Server thread/INFO]: [CustomCrops] Vault hooked!
[17:50:25] [Server thread/INFO]: [CustomCrops] PlaceholderAPI hooked!
[17:50:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrops [3.6]
[17:50:25] [Server thread/INFO]: [CustomCrops] WorldGuard hooked!
[17:50:26] [Server thread/INFO]: [DirectionalBlock] Enabling DirectionalBlock v1.4.1
[17:50:26] [Server thread/INFO]: [DirectionalBlock] Loaded 26 directional blocks
[17:50:26] [Server thread/INFO]: [DirectionalBlock] Plugin Enabled
[17:50:26] [Server thread/INFO]: [GravesX] Enabling GravesX v4.9.7.3
[17:50:26] [Server thread/INFO]: [GravesX] Loading Libraries for GravesX
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.zaxxer.HikariCP version 6.0.0.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.zaxxer:HikariCP:6.0.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.javassist:javassist:3.29.2-GA
[17:50:26] [Server thread/INFO]: [GravesX] Loading library io.micrometer:micrometer-core:1.5.10
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.hdrhistogram:HdrHistogram:2.1.12
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.latencyutils:LatencyUtils:2.0.3
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library com.zaxxer.HikariCP version 6.0.0 and shaded successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.xerial.sqlite-jdbc version 3.47.0.0.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.xerial:sqlite-jdbc:3.47.0.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:1.7.36
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library org.xerial.sqlite-jdbc version 3.47.0.0 successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.oshi.oshi-core version 6.6.5.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.oshi:oshi-core:6.6.5
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna:5.15.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.java.dev.jna:jna-platform:5.15.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.slf4j:slf4j-api:2.0.16
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library com.github.oshi.oshi-core version 6.6.5 successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.h2database.h2 version 2.3.232.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.h2database:h2:2.3.232
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library com.h2database.h2 version 2.3.232 and shaded successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-api version 4.17.0.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-api version 4.17.0 and shaded successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-minimessage version 4.17.0.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-minimessage:4.17.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-minimessage version 4.17.0 and shaded successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-text-serializer-gson version 4.17.0.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.17.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-json:4.17.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.17.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.17.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.1.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:option:1.0.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.google.code.gson:gson:2.8.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.google.auto.service:auto-service-annotations:1.1.1
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-text-serializer-gson version 4.17.0 and shaded successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori.adventure-platform-bukkit version 4.3.3.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-bukkit:4.3.3
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-api:4.3.3
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-api:4.13.1
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-key:4.13.1
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-bungeecord:4.3.3
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-legacy:4.13.1
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-nbt:4.13.1
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-api:1.3.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:examination-string:1.3.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:24.0.1
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson:4.13.1
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-text-serializer-gson-legacy-impl:4.13.1
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-facet:4.3.3
[17:50:26] [Server thread/INFO]: [GravesX] Loading library net.kyori:adventure-platform-viaversion:4.3.3
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library net.kyori.adventure-platform-bukkit version 4.3.3 and shaded successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.puregero.multilib version 1.2.4.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib:1.2.4
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.jetbrains:annotations:22.0.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-common:1.2.4
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-bukkit:1.2.4
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:multilib-multipaper:1.2.4
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-common:1.2.4
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-bukkit:1.2.4
[17:50:26] [Server thread/INFO]: [GravesX] Loading library com.github.puregero:regionized-paper:1.2.4
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library com.github.puregero.multilib version 1.2.4 and shaded successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.apache.commons.commons-text version 1.12.0.
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-text:1.12.0
[17:50:26] [Server thread/INFO]: [GravesX] Loading library org.apache.commons:commons-lang3:3.14.0
[17:50:26] [Server thread/INFO]: [GravesX] Loaded library org.apache.commons.commons-text version 1.12.0 and shaded successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Finished Loading Libraries for GravesX.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-b131. Economy is enabled.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into Vault 1.7.3-b131's permissions provider.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into ProtocolLib 5.3.0.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into FastAsyncWorldEdit 2.13.1-SNAPSHOT-1109;f03d791.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into ItemsAdder 4.0.10-hotfix-1.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into MiniMessage.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into Minedown Adventure.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into Citizens 2.0.35-SNAPSHOT (build 3479).
[17:50:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gravesx [4.9.7.3]
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into PlaceholderAPI 2.11.6.
[17:50:26] [Server thread/WARN]: [GravesX] Compatibility: World "world_spawn" has keepInventory set to true, Graves will not be created here unless a player has the "graves.keepinventory.bypass" permission.
[17:50:26] [Server thread/WARN]: [GravesX] Compatibility: World "world_boss" has keepInventory set to true, Graves will not be created here unless a player has the "graves.keepinventory.bypass" permission.
[17:50:26] [Server thread/WARN]: [GravesX] Compatibility: Essentials Detected, make sure you don't have the essentials.keepinv or essentials.keepxp permissions.
[17:50:26] [Server thread/WARN]: [GravesX] Detected server is running a Plugin Manager based plugin: PlugManX v.2.4.1, PlugManX v.2.4.1
[17:50:26] [Server thread/WARN]: [GravesX] No support will be given if you use one of these plugins.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into LuckPerms 5.5.0.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into NBTAPI 2.15.0. Using NBTAPI 2.15.0 for handling Inventory NBT Data.
[17:50:26] [Server thread/INFO]: [Skript]     The plugin GravesX uses a non-standard version syntax: '4.9.7.3'. Skript will use 4.9.7 instead.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Skript integration loaded successfully.
[17:50:26] [Server thread/INFO]: [GravesX] Integration: Hooked into Skript 2.11.2.
[17:50:26] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Starting...
[17:50:27] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.pool.HikariPool] Graves H2 - Added connection conn1: url=jdbc:h2:file:/home/container/plugins/GravesX/data/graves.data user=SA
[17:50:27] [Server thread/INFO]: [com.ranull.graves.libraries.hikari.HikariDataSource] Graves H2 - Start completed.
[17:50:27] [Server thread/WARN]: [GravesX] SQLite database file or folder does not exist in "plugins/GravesX/data". Skipping database migration.
[17:50:27] [Server thread/INFO]: [GravesX] Metrics has been enabled. All metrics will be sent to https://bstats.org/plugin/bukkit/Graves/12849 and https://bstats.org/plugin/bukkit/GravesX/23069.
[17:50:27] [Server thread/INFO]: [AutoReward] Enabling AutoReward v1.0-SNAPSHOT
[17:50:27] [Server thread/INFO]: [AutoReward] [AutoReward] Loaded 1 reward(s).
[17:50:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: autoreward [1.1]
[17:50:27] [Server thread/INFO]: [AutoReward] AutoReward enabled.
[17:50:27] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v3.8.3
[17:50:27] [Server thread/INFO]: [HMCColor] Enabling HMCColor v2.3
[17:50:27] [Server thread/INFO]: [CrossTalky] Enabling CrossTalky v1.0
[17:50:27] [Server thread/INFO]: [CrossTalky] Using BungeeCord messaging service
[17:50:27] [Server thread/INFO]: [CrossTalky] Successfully registered BungeeCord messaging channels
[17:50:27] [Server thread/INFO]: [CrossTalky] PlaceholderAPI found and hooked!
[17:50:27] [Server thread/INFO]: [CrossTalky] Added regex filter: badword
[17:50:27] [Server thread/INFO]: [CrossTalky] Added regex filter: anotherbadword
[17:50:27] [Server thread/INFO]: [CrossTalky] Added regex filter: .*anotherbadword.*
[17:50:27] [Server thread/INFO]: [CrossTalky] Chat filter initialized with 0 plain text filters and 3 regex filters.
[17:50:27] [Server thread/INFO]: [CrossTalky] Initializing chat handler.
[17:50:27] [Server thread/INFO]: [CrossTalky] Reload command registered.
[17:50:27] [Server thread/INFO]: [CrossTalky] Private message command registered.
[17:50:27] [Server thread/INFO]: [CrossTalky] Reply command registered.
[17:50:27] [Server thread/INFO]: [Relics] Enabling Relics v0.0.5
[17:50:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[17:50:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[17:50:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Relics' to create a bStats instance!
[17:50:27] [Server thread/INFO]: [BanItem] Enabling BanItem v3.7
[17:50:27] [Server thread/INFO]: [Topper] Enabling Topper v3.10.1
[17:50:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: topper [3.10.1]
[17:50:27] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.15.9
[17:50:27] [ForkJoinPool.commonPool-worker-2/INFO]: [Topper] You are using the latest version
[17:50:28] [Server thread/INFO]: [AdvancedEnchantments] Loading Minecraft Version MC1_21_R1
[17:50:28] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[17:50:28] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[17:50:28] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[17:50:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedenchantments [1.0.0]
[17:50:28] [Server thread/INFO]: ꑚ✇ [OK] Cyclic dependency has loaded: AdvancedEnchantments
[17:50:28] [Server thread/INFO]: ꑚ✇ [OK] All Cyclic dependencies loaded, now loading ItemsAdder contents...
[17:50:28] [Server thread/INFO]: ꑚ✇ [Host] Starting self-host webserver on port: 2048
[17:50:28] [Server thread/INFO]: ꑚ✇ [SelfHost] Rate limiter: max 3 requests / 2s.
[17:50:28] [Server thread/INFO]: ꑚ✇ [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[17:50:28] [Server thread/INFO]: ꑚ✇ [Pack] Extracting internal contents from .jar
[17:50:28] [Server thread/INFO]: ꑚ✇ [Pack] Extracted 0 default files. No files changes detected.
[17:50:29] [Server thread/INFO]: [spark] Starting background profiler...
[17:50:29] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[17:50:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerprofile [1.3.0]
[17:50:29] [Server thread/INFO]: Done preparing level "world" (28.034s)
[17:50:29] [Server thread/INFO]: Running delayed init tasks
[17:50:29] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:50:29] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[17:50:29] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Loading cache version: R4.0.8
[17:50:29] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[17:50:29] [Craft Scheduler Thread - 13 - Essentials/INFO]: [Essentials] ?? ᴇssᴇɴᴛɪᴀʟsx ▪ Đᴀɴɢ ɴạᴘ ᴛʜôɴɢ ᴛɪɴ ᴘʜɪêɴ ʙảɴ...
[17:50:29] [Craft Scheduler Thread - 5 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[17:50:29] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[17:50:29] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[17:50:29] [Craft Scheduler Thread - 19 - PlayerAuctions/INFO]: [PlayerAuctions] Loading auction items...
[17:50:29] [Craft Scheduler Thread - 29 - Vault/INFO]: [Vault] Checking for Updates ... 
[17:50:29] [Craft Scheduler Thread - 22 - GravesX/INFO]: [GravesX] Loading grave maps...
[17:50:29] [Craft Scheduler Thread - 22 - GravesX/INFO]: [GravesX] Found 0 grave maps to load into cache.
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇ [Content] Loaded 1128 items
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇ Used Blocks IDs:
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇  - REAL 0/188
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇  - REAL_NOTE 174/750
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇  - REAL_TRANSPARENT 9/63
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇  - REAL_WIRE 130/127
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇ Used Font Images: 499/6608
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing sun_light_long_beam.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-3/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/herald_of_light_effects already exists. Using alternative texture name modelengine:entity/1dd5abc0-3e8f-3370-a35c-0a7734e1a4d8.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing light_warrior.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing light_herald_spear2.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/herald_of_light_effects already exists. Using alternative texture name modelengine:entity/060783f3-f433-35ea-afa5-704726c3b040.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing sun_light_beam.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] Importing light_herald_spear.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/herald_of_light_effects already exists. Using alternative texture name modelengine:entity/99b0260c-59a3-389f-91de-c70d9ab75734.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_dot3_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing light_projectile.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] Importing ink_brush.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_dot2.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode3 already exists. Using alternative texture name modelengine:entity/5c96f0d1-265c-3827-bd5a-c95dbcd5f62f.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode5 already exists. Using alternative texture name modelengine:entity/6917ec07-b52c-3b99-905b-dfe21a42130f.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode6 already exists. Using alternative texture name modelengine:entity/da8412cc-af03-3877-b524-4dc739927be2.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode9 already exists. Using alternative texture name modelengine:entity/cc419a0f-f770-37bd-a438-a50b5e96250c.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode10 already exists. Using alternative texture name modelengine:entity/88fbe138-ba0c-3ad3-9ac3-aaabdc8c8456.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode13 already exists. Using alternative texture name modelengine:entity/4237a4c5-b7a2-3e70-880e-2f3c7fa853ab.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing vfx_ink_swirl.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing ink_lotus1.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing vfx_kick_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing vfx_ink_summon.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing ink_circle_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_stone.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing ink_lotus2.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing ink_lotus3.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_ranged_slash_initial_item.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_dot2_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode3 already exists. Using alternative texture name modelengine:entity/c9471fde-b719-30a4-9b24-0f9ae5e24025.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode5 already exists. Using alternative texture name modelengine:entity/8f6aa5bc-b3b9-3c5b-a892-d638677af626.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode6 already exists. Using alternative texture name modelengine:entity/9e8ffe9b-0284-3623-9999-912cec82075f.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode9 already exists. Using alternative texture name modelengine:entity/677798ec-681f-3ad8-aa41-13e95eb7bd9d.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode10 already exists. Using alternative texture name modelengine:entity/d30daeb8-16f5-3cdc-8127-76b46b143419.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode13 already exists. Using alternative texture name modelengine:entity/e870972f-10a2-3500-9811-a59492a882d7.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing vfx_ink_pop_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing ink_dot1_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode3 already exists. Using alternative texture name modelengine:entity/4e311d87-5a9c-3c8e-a3bd-66885a1cb83c.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode5 already exists. Using alternative texture name modelengine:entity/4e060835-b0a1-3f1a-965c-585106757dbc.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode6 already exists. Using alternative texture name modelengine:entity/d22c1f19-e173-3cd1-9198-5d2156b8c8b4.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode9 already exists. Using alternative texture name modelengine:entity/f3494178-12d1-3928-9888-e3e810e96498.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode10 already exists. Using alternative texture name modelengine:entity/cf5f8e0f-80a2-395e-babf-e45dff4a0642.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode13 already exists. Using alternative texture name modelengine:entity/dd8092b7-c9be-32a6-9c51-e71ff330cf01.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_spawn_main.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_spawn_effect2.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_panda already exists. Using alternative texture name modelengine:entity/5dbfdae6-5199-3e96-b6b8-fd28556ab91c.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_ranged_slash_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing ink_transition.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_panda already exists. Using alternative texture name modelengine:entity/058d4267-e644-372f-b7ac-2262400eb682.
[17:50:29] [Craft Scheduler Thread - 12 - RoseLoot/INFO]: [RoseGarden] An update for RoseLoot (v1.3.0) is available! You are running v1.2.20.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_tiger_mob.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing vfx_ink_tiger_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode3 already exists. Using alternative texture name modelengine:entity/cec8d046-f467-39cb-811b-6bca220e8f78.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode5 already exists. Using alternative texture name modelengine:entity/2a632aef-bb3d-30b7-87bb-0611f9673075.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode6 already exists. Using alternative texture name modelengine:entity/900820df-73f2-3156-86c4-de1dbc1ecfce.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode9 already exists. Using alternative texture name modelengine:entity/1b643160-84b9-375a-a7ce-78e90278c361.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode10 already exists. Using alternative texture name modelengine:entity/49a23624-67cc-3fcd-a91b-ac4232a7c3a9.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode13 already exists. Using alternative texture name modelengine:entity/6bde9a23-d661-331b-b6fe-7316ab75179f.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_impact.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing vfx_ink_explode_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode3 already exists. Using alternative texture name modelengine:entity/dd0d5b44-e177-3bcb-b92c-31e643273e95.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode5 already exists. Using alternative texture name modelengine:entity/ec87b297-cf97-3d14-90af-587e541ec650.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode6 already exists. Using alternative texture name modelengine:entity/7a4d1144-7a15-31ae-bcb4-175757b1013b.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode9 already exists. Using alternative texture name modelengine:entity/df24f650-f4db-3ce5-a78d-a0da88a5cad2.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode10 already exists. Using alternative texture name modelengine:entity/301f512d-ccc7-33b4-9e76-bf9cf08ae5fd.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode13 already exists. Using alternative texture name modelengine:entity/a3e34b2b-ad43-3b03-a660-b751035f4296.
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] Importing ink_bird.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing vfx_kick.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing ink_spawn_effect1.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] Importing ink_circle.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle5 already exists. Using alternative texture name modelengine:entity/9585900d-8054-37c6-bae9-e82865289bea.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle6 already exists. Using alternative texture name modelengine:entity/04d53b39-f1e5-3bb0-bf0c-9dd07994be52.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle7 already exists. Using alternative texture name modelengine:entity/0a238330-5e7a-3767-a8e9-68c0b83ead0c.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle8 already exists. Using alternative texture name modelengine:entity/0dc81f8d-a209-3dd4-bf14-511c4736e15b.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle9 already exists. Using alternative texture name modelengine:entity/7ba732ac-e06f-3a53-9b25-b4bcb6413007.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle10 already exists. Using alternative texture name modelengine:entity/140c2f4e-56a7-3c2e-bfe4-2061300f2448.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle11 already exists. Using alternative texture name modelengine:entity/ec3c2064-05e5-34f3-a2f1-fc8f65053395.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle12 already exists. Using alternative texture name modelengine:entity/03d5aa26-aa94-3086-a833-1b6ceb8b8440.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle13 already exists. Using alternative texture name modelengine:entity/5da3cbb6-fb86-36c4-959f-27ef14224a51.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_circle14 already exists. Using alternative texture name modelengine:entity/5e873da6-acb1-3ed4-9134-7ed7c5452a7c.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing ink_dot1.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing ink_panda_phase2.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing ink_circle_initial_item.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing ink_fog.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_ranged_slash_item.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash4 already exists. Using alternative texture name modelengine:entity/15a464a6-c904-39c8-91eb-28fefe32131b.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash5 already exists. Using alternative texture name modelengine:entity/2312da55-24f3-318a-9a24-8e9c8e81079c.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash6 already exists. Using alternative texture name modelengine:entity/95ee531f-59a0-3692-ab4a-23a75d82fb98.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash7 already exists. Using alternative texture name modelengine:entity/05c089c9-6e00-3d75-ab1a-1902767ac7fb.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash8 already exists. Using alternative texture name modelengine:entity/d7ddc82d-500d-3a66-a166-c0233d981ff5.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash9 already exists. Using alternative texture name modelengine:entity/4ceb662d-8096-3d29-8f8e-6c4105da8dce.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash10 already exists. Using alternative texture name modelengine:entity/dbdc358c-75d4-3204-bdd2-b59d65a50df2.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash11 already exists. Using alternative texture name modelengine:entity/65807708-3ad9-38ee-a0ea-a8bf0c16c4ff.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash13 already exists. Using alternative texture name modelengine:entity/b1313817-3852-3f6f-a5ed-e445d04a4fb3.
[17:50:29] [ForkJoinPool-8-worker-7/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash14 already exists. Using alternative texture name modelengine:entity/a432df7a-f3bf-3464-8202-4e06cbf6aacc.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_bird_single.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] Importing herald_of_light_core.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-6/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/herald_of_light_effects already exists. Using alternative texture name modelengine:entity/cea6337d-8e4e-3851-9f9b-f488d27c3043.
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] Importing ink_impact_initial.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing vfx_ink_explode.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode3 already exists. Using alternative texture name modelengine:entity/aa434d60-eacb-3b8a-b968-b28c7a9fe146.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode5 already exists. Using alternative texture name modelengine:entity/797cf55f-59f4-3d80-870d-49ed641486ba.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode6 already exists. Using alternative texture name modelengine:entity/103c8aae-1a6b-3093-b87f-9d78242b16a8.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode9 already exists. Using alternative texture name modelengine:entity/3b6d2759-855c-360b-b9c5-fa6fbca3c1e4.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode10 already exists. Using alternative texture name modelengine:entity/a6f016f0-9e2b-3b80-b284-fa714549307d.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode13 already exists. Using alternative texture name modelengine:entity/473f753c-229f-39e7-b80e-600834ab4142.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing vfx_ink_blob.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing vfx_ink_pop.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing vfx_ink_tiger.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode3 already exists. Using alternative texture name modelengine:entity/cdf62204-4e31-35e8-ae81-4a69fe5f6e3a.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode5 already exists. Using alternative texture name modelengine:entity/2b868c20-61d3-326a-88b7-22bf66fdbe18.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode6 already exists. Using alternative texture name modelengine:entity/2f138ebb-cb93-3480-8c5a-5c77151b2eeb.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode9 already exists. Using alternative texture name modelengine:entity/4282f770-9829-3891-aa86-c1ce38fe1313.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode10 already exists. Using alternative texture name modelengine:entity/bda43ada-dc6f-344e-a21a-9de628783f4c.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode13 already exists. Using alternative texture name modelengine:entity/3b6caef0-6dab-3e3f-afb7-a7619691aa12.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_write5 already exists. Using alternative texture name modelengine:entity/1674e623-2728-3ecd-ba3a-c659761e5fc6.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_write6 already exists. Using alternative texture name modelengine:entity/7556b7f8-ebbe-371e-9aee-e03cda680f84.
[17:50:29] [ForkJoinPool-8-worker-5/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_write7 already exists. Using alternative texture name modelengine:entity/e0adbd3b-ac32-3e48-b9a5-7fca7206ebe9.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing ink_dot3.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode3 already exists. Using alternative texture name modelengine:entity/e05d52d1-a5e0-3dc1-a06f-fe464e18e795.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode5 already exists. Using alternative texture name modelengine:entity/297763b5-0eb8-3037-8c9f-3dc037ea7daf.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode6 already exists. Using alternative texture name modelengine:entity/c3ad3db9-6db1-3e5b-830b-498443c76c81.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode9 already exists. Using alternative texture name modelengine:entity/e0749c0e-c787-32d8-abd2-5cf5c0bb8acc.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode10 already exists. Using alternative texture name modelengine:entity/c851b256-ff30-3185-8a5b-8c4ba26deb4c.
[17:50:29] [ForkJoinPool-8-worker-2/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ink_explode13 already exists. Using alternative texture name modelengine:entity/7aeedfcc-2676-37e6-ba14-b6924f52420c.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing ink_dragon.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-3/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing common_chest.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing epic_chest.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing gesture_craft.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing event_crate.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing cosmetics_chest.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] Importing ink_ranged_slash.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash4 already exists. Using alternative texture name modelengine:entity/1c5292de-c51c-3a34-9cea-48b7447ce388.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash5 already exists. Using alternative texture name modelengine:entity/19403976-aed2-38fb-89f2-113611ab9a0f.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash6 already exists. Using alternative texture name modelengine:entity/51ea290f-0fde-3eb2-ac3a-a710ff57ca99.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash7 already exists. Using alternative texture name modelengine:entity/776c8488-4881-3f78-977c-9856f7e5a580.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash8 already exists. Using alternative texture name modelengine:entity/1cfe5d7b-6fc8-3162-9acd-e5f09a732e35.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash9 already exists. Using alternative texture name modelengine:entity/f8f7ad50-2406-3df4-ac1f-2e4c751d5741.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash10 already exists. Using alternative texture name modelengine:entity/80ef5e26-5651-3258-84f9-d4aef1909578.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash11 already exists. Using alternative texture name modelengine:entity/897173d8-3eb8-3d6b-889f-2c6627751779.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash13 already exists. Using alternative texture name modelengine:entity/9554f7e2-a3c8-376e-9314-49bdc6c5d8c2.
[17:50:29] [ForkJoinPool-8-worker-8/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/ranged_splash14 already exists. Using alternative texture name modelengine:entity/45d898f6-e75e-3af8-9c89-bf9ff1e22b8e.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing magic_crate.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing rare_chest.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing legendary_chest.bbmodel.
[17:50:29] [Craft Scheduler Thread - 29 - Vault/INFO]: [Vault] No new version available
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing ink_circle_item.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing bl_fire_elemental_blessed.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] Importing ink_panda.bbmodel.
[17:50:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.3.2]
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing bl_fire_elemental.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing nm_capybara.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing bl_ice_elemental_blessed.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing nm_penguin_baby.bbmodel.
[17:50:29] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /bc BOSS THẾ GIỚI SẮP CHUẨN BỊ KHAI MỞ!
[17:50:29] [Server thread/INFO]: [CommandTimer] Đã chạy lệnh: bc BOSS THẾ GIỚI SẮP CHUẨN BỊ KHAI MỞ!
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] Importing herald_of_light_phase_1.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-4/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/herald_of_light_effects already exists. Using alternative texture name modelengine:entity/6b7b6a26-2f40-32ff-8c70-7030b256dd66.
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] Importing nm_orca.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing bl_ice_elemental_arrow.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] Importing nm_gray_wolf_baby.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] Importing bl_ice_elemental.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] Importing herald_of_light_phase_2.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-1/WARN]: [ModelEngine] [A] --Warn: Texture name modelengine:entity/herald_of_light_effects already exists. Using alternative texture name modelengine:entity/471cd86a-0e49-32fc-b710-8b6080a77c19.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing nm_capybara_chicken.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] Importing nm_capybara_cow.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing nm_capybara_sheep.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] Importing nm_capybara_pig.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] Importing nm_grizzly_bear.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing nm_bald_eagle.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing nm_grizzly_bear_baby.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing nm_antelope_baby.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] Importing nm_ibex_alpine.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] Importing nm_hedgehog.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing nm_penguin.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] Importing nm_warthog_baby.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] Importing nm_alligator.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing sculk_crabby.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing nm_ibex_nubian.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] Importing nm_warthog.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing nm_antelope.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] Importing sculk_spike.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] Importing nm_gray_wolf.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] 
[17:50:29] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] Importing shoot_balloon.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-4/INFO]: [ModelEngine] [A] Importing shoot_balloon_box.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-2/INFO]: [ModelEngine] [A] Importing nm_alligator_baby.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-8/INFO]: [ModelEngine] [A] Importing sculked_crustacean.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-6/INFO]: [ModelEngine] [A] Importing heavy_dust_cloud.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-1/INFO]: [ModelEngine] [A] Importing sculk_screamer.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-5/INFO]: [ModelEngine] [A] Importing soul_bearer.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-3/INFO]: [ModelEngine] [A] Importing shroud_of_darkness.bbmodel.
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] 
[17:50:29] [ForkJoinPool-8-worker-7/INFO]: [ModelEngine] [A] Importing sculk_sentinel.bbmodel.
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇ [Content] Loaded 59 categories
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇ [Content] Contents loaded successfully!
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇ ResourcePack
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇  - Path: /container/plugins/ItemsAdder/output/generated.zip
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇  - Download: http://vietrealmrsp.vinamc.net:2048/generated.zip
[17:50:29] [Craft Scheduler Thread - 20 - ItemsAdder/INFO]: ꑚ✇  - Size: 6 MB/250 MB (2%)
[17:50:29] [Craft Scheduler Thread - 15 - Pl-Hide-Pro/INFO]: [Pl-Hide-Pro] Pl-Hide-Pro Update available: 2.12.3! You are on 2.12.2!
[17:50:29] [Server thread/INFO]: [Skript] Loading variables...
[17:50:29] [Server thread/INFO]: [Skript] Loaded 346 variables in 0.0 seconds
[17:50:30] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: ꑚ✇ [License] Spigot product licensed to: titoine21 (38318)
[17:50:30] [Craft Scheduler Thread - 18 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[17:50:30] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[17:50:30] [Server thread/INFO]: [Skript] Loaded 5 scripts with a total of 13 structures in 0.32 seconds
[17:50:30] [Server thread/INFO]: [Skript] Finished loading.
[17:50:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[17:50:30] [Server thread/INFO]: [RoseLoot] Registered 196 loot table conditions.
[17:50:30] [Server thread/INFO]: [RoseLoot] Registered 11 loot table types.
[17:50:30] [Server thread/INFO]: [RoseLoot] Registered 19 loot item types.
[17:50:30] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] 
[17:50:30] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[17:50:30] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A] Generator Profiled:
[17:50:30] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Import Phase: 268.2ms
[17:50:30] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Assets Phase: 556.3ms
[17:50:30] [Craft Scheduler Thread - 6 - ModelEngine/INFO]: [ModelEngine] [A]  - Zipping Phase: 103.4ms
[17:50:30] [Server thread/INFO]: [RoseLoot] Loaded 72 loot tables.
[17:50:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pa [1.31.1]
[17:50:30] [Server thread/INFO]: [CustomCrops] Registry access has been frozen
[17:50:30] [Server thread/INFO]: [GravesX] Registering Crash Handler...
[17:50:30] [Server thread/INFO]: [GravesX] Registered Crash Handler. Server will handle crashes in a separate thread.
[17:50:30] [Server thread/ERROR]: [Citizens] The trait  failed to load for NPC ID: 16.
[17:50:30] [Server thread/INFO]: [Citizens] Removing respawns of 16{farmmer, ZOMBIE} due to SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Spawned 16{farmmer, ZOMBIE} SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 15{gesture, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 15{gesture, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/INFO]: [Citizens] Removing respawns of 14{Cosmetics, PLAYER} due to SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Spawned 14{Cosmetics, PLAYER} SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Removing respawns of 12{Rnabu, PLAYER} due to SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Spawned 12{Rnabu, PLAYER} SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Removing respawns of 11{Bano, PLAYER} due to SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Spawned 11{Bano, PLAYER} SpawnReason.RESPAWN
[17:50:30] [Craft Scheduler Thread - 10 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[17:50:30] [Server thread/INFO]: [Citizens] Removing respawns of 10{farmshop, PLAYER} due to SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Spawned 10{farmshop, PLAYER} SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 9{rnabu, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 9{rnabu, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 8{blockshop, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 8{blockshop, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 7{fishy, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 7{fishy, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 6{keyshop, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 6{keyshop, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 5{woodshop, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 5{woodshop, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/INFO]: [Citizens] Removing respawns of 4{bank, PLAYER} due to SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Spawned 4{bank, PLAYER} SpawnReason.RESPAWN
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 3{flowershop, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 3{flowershop, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 2{mobshop, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 2{mobshop, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 1{fishshop, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 1{fishshop, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/INFO]: [Citizens] Retrying spawn of 0{oreshop, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:30] [Server thread/INFO]: [Citizens] Stored 0{oreshop, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:30] [Server thread/ERROR]: [Citizens] The trait  failed to load for NPC ID: 17.
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 17{thoren, ZOMBIE} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 17{thoren, ZOMBIE} SpawnReason.RESPAWN
[17:50:31] [Server thread/ERROR]: [Citizens] The trait  failed to load for NPC ID: 18.
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 18{thuvien, ZOMBIE} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 18{thuvien, ZOMBIE} SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Retrying spawn of 24{&7, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:31] [Server thread/INFO]: [Citizens] Stored 24{&7, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:31] [Server thread/INFO]: [Citizens] Retrying spawn of 23{noithat1, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:31] [Server thread/INFO]: [Citizens] Stored 23{noithat1, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 22{thuvien4, PLAYER} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 22{thuvien4, PLAYER} SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 21{thuvien3, PLAYER} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 21{thuvien3, PLAYER} SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Retrying spawn of 20{thuvien2, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:31] [Server thread/INFO]: [Citizens] Stored 20{thuvien2, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:31] [Server thread/INFO]: [Citizens] Retrying spawn of 19{thuvien1, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:31] [Server thread/INFO]: [Citizens] Stored 19{thuvien1, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 25{expexchant, PLAYER} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 25{expexchant, PLAYER} SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 26{noithatnpc, PLAYER} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 26{noithatnpc, PLAYER} SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Retrying spawn of 27{gesturetut, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:31] [Server thread/INFO]: [Citizens] Stored 27{gesturetut, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 28{&f🗨, PLAYER} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 28{&f🗨, PLAYER} SpawnReason.RESPAWN
[17:50:31] [Server thread/ERROR]: [Citizens] The trait  failed to load for NPC ID: 29.
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 29{alchemist, ZOMBIE} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 29{alchemist, ZOMBIE} SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Retrying spawn of 30{foodshop, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:31] [Server thread/INFO]: [Citizens] Stored 30{foodshop, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 31{shopfarm, PLAYER} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 31{shopfarm, PLAYER} SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Retrying spawn of 32{&6&lNHẤP VÀO ĐỂ ĐẾN LÀNG NHỌ, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:31] [Server thread/INFO]: [Citizens] Stored 32{&6&lNHẤP VÀO ĐỂ ĐẾN LÀNG NHỌ, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 33{Fe4rless_Fishy__, PLAYER} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 33{Fe4rless_Fishy__, PLAYER} SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 36{&f🗨, PLAYER} due to SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 36{&f🗨, PLAYER} SpawnReason.RESPAWN
[17:50:31] [Server thread/INFO]: [Citizens] Retrying spawn of 40{&2&lThợ Sửa Chữa, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:31] [Server thread/INFO]: [Citizens] Stored 40{&2&lThợ Sửa Chữa, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:31] [Server thread/INFO]: [Citizens] Filled skin placeholder --- from %topper_money;top_name;1%
[17:50:31] [Server thread/INFO]: [Citizens] Retrying spawn of 46{&d&lĐịa Chủ&f: &a%topper_money;top_name;1% &7&l- &a%topper_money;top_value;1;#,###%&f, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[17:50:31] [Server thread/INFO]: [Citizens] Stored 46{&d&lĐịa Chủ&f: &a%topper_money;top_name;1% &7&l- &a%topper_money;top_value;1;#,###%&f, PLAYER} for respawn from NPCNeedsRespawnEvent
[17:50:31] [Server thread/INFO]: [Citizens] Loaded 36 NPCs.
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[17:50:31] [Server thread/INFO]: [PlayerProfile] Successfully loaded the status menu!
[17:50:31] [Server thread/INFO]: [PlayerProfile] Loading menu from file: menus/menu.yml
[17:50:31] [Server thread/INFO]: ꑚ✇ Reloading ItemsAdder Custom Entities Citizens NPCs...
[17:50:31] [Server thread/INFO]: ꑚ✇ Reloaded 0 ItemsAdder Custom Entities Citizens NPCs.
[17:50:31] [Server thread/INFO]: [Mythic] Reloading plugin...
[17:50:31] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[17:50:31] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[17:50:31] [Server thread/INFO]: [MythicMobs] Loading Packs...
[17:50:31] [Server thread/INFO]: [MythicMobs] Loading Items...
[17:50:31] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[17:50:31] [Server thread/INFO]: [MythicMobs] Loading Skills...
[17:50:31] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[17:50:31] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[17:50:31] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[17:50:31] [Server thread/INFO]: [MythicMobs] ✓ Loaded 84 mobs.
[17:50:31] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[17:50:31] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[17:50:31] [Server thread/INFO]: [MythicMobs] ✓ Loaded 252 skills.
[17:50:31] [Server thread/INFO]: [MythicMobs] ✓ Loaded 171 random spawns.
[17:50:31] [Server thread/INFO]: [MythicMobs] ✓ Loaded 30 mythic items.
[17:50:31] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 drop tables.
[17:50:31] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[17:50:31] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[17:50:31] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: bungee [2.3]
[17:50:31] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 1 script loaded!
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: javascript [2.1.2]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.1]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: world [1.2.1]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.8]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: string [1.0.1]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [1.0.7]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[17:50:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[17:50:31] [Server thread/INFO]: 14 placeholder hook(s) registered! 5 placeholder hook(s) have an update available.
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/walking_stick.yml
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 10
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/hat.yml
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 41
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/funiture.yml
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/bag.yml
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 58
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Loading cosmetics from file: cosmetics/balloon.yml
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Registered cosmetics: 63
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Registered colors: 9
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Registered items: 15
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Registered tokens: 60
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:magic.crate.idle' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:magic.crate.idle' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:bronub.shop.lose' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:bronub.shop.gain' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:bronub.shop.gain' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:bronub.shop.gain' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:bronub.shop.gain' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:bronub.shop.gain' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:bronub.shop.gain' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:bronub.shop.lose' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Sound 'minecraft:bronub.shop.gain' not Found in Bukkit... Transform custom
[17:50:31] [Server thread/INFO]: [MagicCosmetics] Registered menus: 7
[17:50:31] [Server thread/INFO]: [MagicCrates] 8 crates have been registered.
[17:50:31] [Server thread/INFO]: Done (53.688s)! For help, type "help"
[17:50:31] [Craft Scheduler Thread - 51 - GravesX/INFO]: [GravesX] Loading Block Map cache...
[17:50:31] [Craft Scheduler Thread - 53 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for itemframe...
[17:50:31] [Craft Scheduler Thread - 52 - GravesX/INFO]: [GravesX] Loading Entity Map Cache for armorstand...
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/INFO]: [GravesX] Loading Holograms into Hologram Map Cache...
[17:50:31] [Craft Scheduler Thread - 20 - GravesX/INFO]: [GravesX] Loading Entity Data Map Cache for citizensnpc...
[17:50:31] [Craft Scheduler Thread - 9 - GravesX/INFO]: [GravesX] Loading Entity Data Map Cache for itemsadder...
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] Error occurred while loading Hologram Map: (Message 42S02 not found); SQL statement:
SELECT * FROM hologram; [42102-232]
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.message.DbException.getJdbcSQLException(DbException.java:514)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.message.DbException.getJdbcSQLException(DbException.java:489)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.message.DbException.get(DbException.java:223)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.message.DbException.get(DbException.java:199)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.getTableOrViewNotFoundDbException(Parser.java:7945)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.getTableOrViewNotFoundDbException(Parser.java:7916)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.readTableOrView(Parser.java:7895)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.readTablePrimary(Parser.java:1769)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.readTableReference(Parser.java:2249)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseSelectFromPart(Parser.java:2702)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseSelect(Parser.java:2810)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryPrimary(Parser.java:2692)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryTerm(Parser.java:2547)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryExpressionBody(Parser.java:2526)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryExpressionBodyAndEndOfQuery(Parser.java:2519)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQueryExpression(Parser.java:2512)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parseQuery(Parser.java:2479)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parsePrepared(Parser.java:610)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parse(Parser.java:581)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.parse(Parser.java:556)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.command.Parser.prepareCommand(Parser.java:484)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.engine.SessionLocal.prepareLocal(SessionLocal.java:645)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.engine.SessionLocal.prepareCommand(SessionLocal.java:561)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:1164)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.jdbc.JdbcPreparedStatement.<init>(JdbcPreparedStatement.java:93)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:315)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.hikari.pool.ProxyConnection.prepareStatement(ProxyConnection.java:328)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.libraries.hikari.pool.HikariProxyConnection.prepareStatement(HikariProxyConnection.java)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] GravesX-4.9.7.3.jar//com.ranull.graves.manager.DataManager.lambda$loadHologramMap$3(DataManager.java:1336)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[17:50:31] [Craft Scheduler Thread - 54 - GravesX/ERROR]: [GravesX] java.base/java.lang.Thread.run(Thread.java:1583)
[17:50:31] [Craft Scheduler Thread - 17 - PlayerProfile/INFO]: [PlayerProfile] Loading players...
[17:50:31] [Craft Scheduler Thread - 51 - GravesX/INFO]: [GravesX] Loaded 0 Blocks into Block Map Cache.
[17:50:31] [Craft Scheduler Thread - 53 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for itemframe.
[17:50:31] [Craft Scheduler Thread - 52 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Map Cache for armorstand.
[17:50:31] [Craft Scheduler Thread - 20 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Data Map Cache for citizensnpc.
[17:50:31] [Craft Scheduler Thread - 9 - GravesX/INFO]: [GravesX] Loaded 0 entities into Entity Data Map Cache for itemsadder.
[17:50:31] [Server thread/INFO]: [voicechat] Loading plugins
[17:50:31] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
[17:50:31] [Server thread/INFO]: [voicechat] Initializing plugins
[17:50:31] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
[17:50:31] [Server thread/WARN]: [voicechat] Running in offline mode - Voice chat encryption is not secure!
[17:50:31] [VoiceChatServerThread/INFO]: [voicechat] Using server-ip as bind address: 0.0.0.0
[17:50:31] [VoiceChatServerThread/INFO]: [voicechat] Voice host is 'voicechat.vietrealm.com'
[17:50:31] [VoiceChatServerThread/INFO]: [voicechat] Voice chat server started at 0.0.0.0:2047
[17:50:31] [Craft Scheduler Thread - 17 - PlayerProfile/INFO]: [PlayerProfile] Loaded 302 players
[17:50:31] [Server thread/INFO]: [Citizens] Removing 18{thuvien, ZOMBIE} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 18{thuvien, ZOMBIE} DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 18{thuvien, ZOMBIE} due to chunk unload at [6,1]
[17:50:31] [Server thread/INFO]: [Citizens] Removing 22{thuvien4, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 22{thuvien4, PLAYER} DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 22{thuvien4, PLAYER} due to chunk unload at [6,1]
[17:50:31] [Server thread/INFO]: [Citizens] Removing 21{thuvien3, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 21{thuvien3, PLAYER} DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 21{thuvien3, PLAYER} due to chunk unload at [6,1]
[17:50:31] [Server thread/INFO]: [Citizens] Removing 25{expexchant, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 25{expexchant, PLAYER} DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 25{expexchant, PLAYER} due to chunk unload at [6,1]
[17:50:31] [Server thread/INFO]: [Citizens] Removing 29{alchemist, ZOMBIE} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 29{alchemist, ZOMBIE} DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 29{alchemist, ZOMBIE} due to chunk unload at [6,1]
[17:50:31] [Server thread/INFO]: [Citizens] Removing 16{farmmer, ZOMBIE} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 16{farmmer, ZOMBIE} DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 16{farmmer, ZOMBIE} due to chunk unload at [14,4]
[17:50:31] [Server thread/INFO]: [Citizens] Removing 10{farmshop, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 10{farmshop, PLAYER} DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 10{farmshop, PLAYER} due to chunk unload at [14,4]
[17:50:31] [Server thread/INFO]: [Citizens] Removing 31{shopfarm, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 31{shopfarm, PLAYER} DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 31{shopfarm, PLAYER} due to chunk unload at [14,4]
[17:50:31] [Server thread/INFO]: [Citizens] Removing 17{thoren, ZOMBIE} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 17{thoren, ZOMBIE} DespawnReason.CHUNK_UNLOAD
[17:50:31] [Server thread/INFO]: [Citizens] Despawned 17{thoren, ZOMBIE} due to chunk unload at [2,-1]
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 0{🗨, INTERACTION} due to SpawnReason.PLUGIN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 0{🗨, INTERACTION} SpawnReason.PLUGIN
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 1{🗨, INTERACTION} due to SpawnReason.PLUGIN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 1{🗨, INTERACTION} SpawnReason.PLUGIN
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 2{&f🗨, INTERACTION} due to SpawnReason.PLUGIN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 2{&f🗨, INTERACTION} SpawnReason.PLUGIN
[17:50:31] [Server thread/INFO]: [Citizens] Removing respawns of 3{🗨, INTERACTION} due to SpawnReason.PLUGIN
[17:50:31] [Server thread/INFO]: [Citizens] Spawned 3{🗨, INTERACTION} SpawnReason.PLUGIN
[17:50:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib, AdvancedEnchantments, WorldGuard, PlaceholderAPI, MythicMobs, Essentials, Vault, LuckPerms, ViaVersion, ItemsAdder, DiscordSRV.
[17:50:31] [Server thread/INFO]: [✇] Successfully loaded 24 blacklisted & 0 whitelisted item(s).
[17:50:31] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[17:50:32] [Craft Scheduler Thread - 51 - Images/INFO]: [Images] Loaded 12 images...
[17:50:32] [Craft Scheduler Thread - 24 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 2 languages!
[17:50:32] [Craft Scheduler Thread - 18 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Server resource pack found without verification hash: Downloaded
[17:50:32] [Craft Scheduler Thread - 18 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default, e7b6b46f6254fde942f9fedaaa505343f5362c30
[17:50:32] [Craft Scheduler Thread - 18 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[17:50:32] [Craft Scheduler Thread - 18 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[17:50:32] [Craft Scheduler Thread - 18 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[17:50:32] [Craft Scheduler Thread - 20 - Citizens/INFO]: [Citizens] Profile lookup for player '---' failed: Server did not find the requested profile
[17:50:32] [Craft Scheduler Thread - 20 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:77)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:43)
    at Citizens.jar//net.citizensnpcs.util.NMS.findProfilesByNames(NMS.java:193)
    at Citizens.jar//net.citizensnpcs.npc.skin.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134)
    at Citizens.jar//net.citizensnpcs.npc.skin.profile.ProfileFetchThread.run(ProfileFetchThread.java:212)
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:78)
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
    at java.base/java.lang.Thread.run(Thread.java:1583)

[17:50:33] [Craft Scheduler Thread - 18 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "e7b6b46f6254fde942f9fedaaa505343f5362c30" resources...
[17:50:34] [Craft Scheduler Thread - 15 - HuskHomes/INFO]: [HuskHomes] Registered 'after_load' hooks
[17:50:37] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!