Paste #134784: Unnamed Server Log Paste

Date: 2025/07/13 04:16:58 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


[13:15:44] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.2+13-LTS; Azul Systems, Inc. Zulu21.32+17-CA) on Linux 6.1.0-32-amd64 (amd64)
[13:15:44] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.1-2329-ver/1.21.1@803bf62 (2024-10-31T20:25:04Z) for Minecraft 1.21.1
[13:15:44] [ServerMain/WARN]: [oshi.software.os.linux.LinuxOperatingSystem] Did not find udev library in operating system. Some features may not work.
[13:15:44] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[13:15:45] [ServerMain/INFO]: [PluginInitializerManager] Initialized 62 plugins
[13:15:45] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (5):
 - AdvancedKits (1.19.30), BKCommonLib (1.21.1-v1), EconomyShopGUI (6.11.0), FancyHolograms (2.4.2), MiniPlaceholders (2.3.0-SNAPSHOT)
[13:15:45] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (57):
 - AdvancedChat (1.9.22), AdvancedEnchantments (9.14.5), AdvancedJobs (1.7.4), AdvancedPets (2.20.4), AdvancedPortals (2.3.3), AdvancedSkills (1.6.3), ArmorStandTools (4.4.6), BattlePass (4.8.18), BetterRTP (3.6.13), BlockEffects (4.0), BlockFly (1.5), Citizens (2.0.35-SNAPSHOT (build 3583)), CommandTimer (8.11.3), DailyRewardsPlus (1.4.6), DecentHolograms (2.8.14), DeluxeMenus (1.14.0-Release), DeluxeTags (1.8.2-Release), Denizen (1.3.0-SNAPSHOT (build 1804-REL)), Dungeons (3.8.0), Essentials (2.21.1-dev+12-8455212), EssentialsSpawn (2.21.1-dev+12-8455212), ExecutableBlocks (5.25.2.26), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1057;093c30d), GamerulesManager (4.5.4), HeadDatabase (4.21.2), HostifyMonitor (1.12), ImageFrame (1.8.3.0), Images (2.5.3), Iris (3.6.11-1.20.1-1.21.5), ItemsAdder (4.0.11), LPC (3.6.1), Lands (7.15.19), LiteBans (2.15.1), LoneLibs (1.0.65), LuckPerms (5.4.156), MineBlocks (2.1.4), MiniMOTD (2.1.5), MyCommand (5.7.4), My_Worlds (1.21.1-v1), NametagEdit (4.5.23), PhoenixCrates (4.0), PlaceholderAPI (2.11.6), PlayTime (3.6), ProtocolLib (5.3.0), SCore (5.25.3.4), Skript (2.11.2), TAB (5.0.7), TimeBar (1.4.7), UberEnchant (8.11.7), UltraBar (2.3.2.1), Vault (1.7.3-b131), ViaVersion (5.3.2), WorldBorder (1.2), WorldGuard (7.0.12+829a4a4), ZombieApocalypse (1.4.11), ajLeaderboards (2.10.1), ajParkour (2.12.10)
[13:15:48] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:15:50] [ServerMain/INFO]: Loaded 1335 recipes
[13:15:50] [ServerMain/INFO]: Loaded 1457 advancements
[13:15:50] [Server thread/INFO]: Starting minecraft server version 1.21.1
[13:15:50] [Server thread/INFO]: Loading properties
[13:15:50] [Server thread/INFO]: This server is running Purpur version 1.21.1-2329-ver/1.21.1@803bf62 (2024-10-31T20:25:04Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[13:15:51] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[13:15:51] [Server thread/INFO]: Server Ping Player Sample Count: 12
[13:15:51] [Server thread/INFO]: Using 4 threads for Netty based IO
[13:15:51] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[13:15:51] [Server thread/WARN]: [Pufferfish] SIMD operations are available for your server, but are not configured!
[13:15:51] [Server thread/WARN]: [Pufferfish] To enable additional optimizations, add "--add-modules=jdk.incubator.vector" to your startup flags, BEFORE the "-jar".
[13:15:51] [Server thread/WARN]: [Pufferfish] If you have already added this flag, then SIMD operations are not supported on your JVM or CPU.
[13:15:51] [Server thread/WARN]: [Pufferfish] Debug: Java: 21.0.2, test run: true
[13:15:51] [Server thread/INFO]: Default game type: SURVIVAL
[13:15:51] [Server thread/INFO]: Generating keypair
[13:15:51] [Server thread/INFO]: Starting Minecraft server on *:41780
[13:15:51] [Server thread/INFO]: Using epoll channel type
[13:15:51] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64, musl) compression from Velocity.
[13:15:51] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[13:15:51] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loading 1 libraries... please wait
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /data/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /data/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /data/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /data/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /data/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /data/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /data/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /data/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /data/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /data/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /data/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /data/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /data/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /data/libraries/org/json/json/20220320/json-20220320.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /data/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 14 libraries... please wait
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/beer/devs/FastNbt-jar/1.4.8/FastNbt-jar-1.4.8.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-api/4.20.0/adventure-api-4.20.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-key/4.20.0/adventure-key-4.20.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-text-serializer-gson/4.20.0/adventure-text-serializer-gson-4.20.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-text-serializer-json/4.20.0/adventure-text-serializer-json-4.20.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-text-serializer-commons/4.20.0/adventure-text-serializer-commons-4.20.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.20.0/adventure-text-serializer-gson-legacy-impl-4.20.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.20.0/adventure-text-serializer-json-legacy-impl-4.20.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-text-minimessage/4.20.0/adventure-text-minimessage-4.20.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/com/alibaba/fastjson/2.0.43/fastjson-2.0.43.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/com/alibaba/fastjson2/fastjson2-extension/2.0.43/fastjson2-extension-2.0.43.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/com/alibaba/fastjson2/fastjson2/2.0.43/fastjson2-2.0.43.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/com/jayway/jsonpath/json-path/2.8.0/json-path-2.8.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/minidev/json-smart/2.4.10/json-smart-2.4.10.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/net/minidev/accessors-smart/2.4.9/accessors-smart-2.4.9.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/org/ow2/asm/asm/9.3/asm-9.3.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/com/jeff-media/armor-equip-event/1.0.3/armor-equip-event-1.0.3.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/fr/skytasul/glowingentities/1.4.3/glowingentities-1.4.3.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /data/libraries/fr/skytasul/reflection-remapper/1.0.0/reflection-remapper-1.0.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loading 5 libraries... please wait
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/org/redisson/redisson/3.45.1/redisson-3.45.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/netty/netty-common/4.1.118.Final/netty-common-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/netty/netty-codec/4.1.118.Final/netty-codec-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/netty/netty-buffer/4.1.118.Final/netty-buffer-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/netty/netty-transport/4.1.118.Final/netty-transport-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/netty/netty-resolver/4.1.118.Final/netty-resolver-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/netty/netty-resolver-dns/4.1.118.Final/netty-resolver-dns-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/netty/netty-codec-dns/4.1.118.Final/netty-codec-dns-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/netty/netty-handler/4.1.118.Final/netty-handler-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/netty/netty-transport-native-unix-common/4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/projectreactor/reactor-core/3.6.2/reactor-core-3.6.2.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/io/reactivex/rxjava3/rxjava/3.1.8/rxjava-3.1.8.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/com/esotericsoftware/kryo/5.6.2/kryo-5.6.2.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/com/esotericsoftware/reflectasm/1.11.9/reflectasm-1.11.9.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/org/objenesis/objenesis/3.4/objenesis-3.4.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/com/esotericsoftware/minlog/1.3.1/minlog-1.3.1.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/com/fasterxml/jackson/core/jackson-annotations/2.18.2/jackson-annotations-2.18.2.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.18.2/jackson-dataformat-yaml-2.18.2.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/org/yaml/snakeyaml/2.3/snakeyaml-2.3.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/com/fasterxml/jackson/core/jackson-core/2.18.2/jackson-core-2.18.2.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/com/fasterxml/jackson/core/jackson-databind/2.18.2/jackson-databind-2.18.2.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/net/bytebuddy/byte-buddy/1.15.3/byte-buddy-1.15.3.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/org/jodd/jodd-util/6.3.0/jodd-util-6.3.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/org/slf4j/slf4j-jdk14/1.7.32/slf4j-jdk14-1.7.32.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Lands] Loaded library /data/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loading 1 libraries... please wait
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-all/4.1.118.Final/netty-all-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-buffer/4.1.118.Final/netty-buffer-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec/4.1.118.Final/netty-codec-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-dns/4.1.118.Final/netty-codec-dns-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-haproxy/4.1.118.Final/netty-codec-haproxy-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-http/4.1.118.Final/netty-codec-http-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-http2/4.1.118.Final/netty-codec-http2-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-memcache/4.1.118.Final/netty-codec-memcache-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-mqtt/4.1.118.Final/netty-codec-mqtt-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-redis/4.1.118.Final/netty-codec-redis-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-smtp/4.1.118.Final/netty-codec-smtp-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-socks/4.1.118.Final/netty-codec-socks-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-stomp/4.1.118.Final/netty-codec-stomp-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-codec-xml/4.1.118.Final/netty-codec-xml-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-common/4.1.118.Final/netty-common-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-handler/4.1.118.Final/netty-handler-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-native-unix-common/4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-handler-proxy/4.1.118.Final/netty-handler-proxy-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-handler-ssl-ocsp/4.1.118.Final/netty-handler-ssl-ocsp-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-resolver/4.1.118.Final/netty-resolver-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-resolver-dns/4.1.118.Final/netty-resolver-dns-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport/4.1.118.Final/netty-transport-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-rxtx/4.1.118.Final/netty-transport-rxtx-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-sctp/4.1.118.Final/netty-transport-sctp-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-udt/4.1.118.Final/netty-transport-udt-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-classes-epoll/4.1.118.Final/netty-transport-classes-epoll-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-classes-kqueue/4.1.118.Final/netty-transport-classes-kqueue-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-resolver-dns-classes-macos/4.1.118.Final/netty-resolver-dns-classes-macos-4.1.118.Final.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-x86_64.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-aarch_64.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-native-epoll/4.1.118.Final/netty-transport-native-epoll-4.1.118.Final-linux-riscv64.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-native-kqueue/4.1.118.Final/netty-transport-native-kqueue-4.1.118.Final-osx-x86_64.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-transport-native-kqueue/4.1.118.Final/netty-transport-native-kqueue-4.1.118.Final-osx-aarch_64.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-resolver-dns-native-macos/4.1.118.Final/netty-resolver-dns-native-macos-4.1.118.Final-osx-x86_64.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library /data/libraries/io/netty/netty-resolver-dns-native-macos/4.1.118.Final/netty-resolver-dns-native-macos-4.1.118.Final-osx-aarch_64.jar
[13:15:52] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loading 14 libraries... please wait
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/googlecode/concurrentlinkedhashmap/concurrentlinkedhashmap-lru/1.4.2/concurrentlinkedhashmap-lru-1.4.2.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/commons-io/commons-io/2.13.0/commons-io-2.13.0.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/io/timeandspace/smoothie-map/2.0.2/smoothie-map-2.0.2.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/io/timeandspace/jpsg-core/1.4/jpsg-core-1.4.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/org/zeroturnaround/zt-zip/1.14/zt-zip-1.14.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/org/slf4j/slf4j-api/1.6.6/slf4j-api-1.6.6.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/rhino/js/1.7R2/js-1.7R2.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/bsf/bsf/2.4.0/bsf-2.4.0.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/org/lz4/lz4-java/1.8.0/lz4-java-1.8.0.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/com/github/oshi/oshi-core/6.6.5/oshi-core-6.6.5.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/net/java/dev/jna/jna/5.15.0/jna-5.15.0.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /data/libraries/net/java/dev/jna/jna-platform/5.15.0/jna-platform-5.15.0.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSkills] Loading 1 libraries... please wait
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSkills] Loaded library /data/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSkills] Loaded library /data/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSkills] Loaded library /data/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSkills] Loaded library /data/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSkills] Loaded library /data/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedSkills] Loaded library /data/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[13:15:53] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /data/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[13:15:53] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[13:15:57] [Server thread/WARN]: Legacy plugin PlayTime v3.6 does not specify an api-version.
[13:15:57] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loading 3 libraries... please wait
[13:15:57] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /data/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[13:15:57] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /data/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[13:15:57] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /data/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[13:15:57] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loading 2 libraries... please wait
[13:15:57] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /data/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[13:15:57] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /data/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[13:15:57] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedJobs] Loaded library /data/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[13:15:58] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.2
[13:15:58] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.2 is now loaded. Registering protocol transformers and injecting...
[13:15:58] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[13:15:58] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[13:15:58] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.156
[13:15:58] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[13:15:58] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[13:15:58] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1057;093c30d
[13:15:58] [Server thread/WARN]: 
**********************************************
** You are using the Spigot-mapped FAWE jar on a modern Paper version.
** This will result in slower first-run times and wasted disk space from plugin remapping.
** Download the Paper FAWE jar from Modrinth to avoid this: https://modrinth.com/plugin/fastasyncworldedit/
**********************************************
[13:15:59] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@71f4a80f]
[13:15:59] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[13:15:59] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.21.1-v1
[13:16:02] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[13:16:02] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.21.1-v1
[13:16:02] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.15.1
[13:16:02] [Server thread/INFO]: [AdvancedChat] Loading server plugin AdvancedChat v1.9.22
[13:16:02] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3583)
[13:16:02] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.21.2
[13:16:02] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1-dev+12-8455212
[13:16:02] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.11.2
[13:16:02] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[13:16:02] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.14
[13:16:02] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.11
[13:16:02] [Server thread/INFO]: [Lands] Loading server plugin Lands v7.15.19
[13:16:03] [Server thread/INFO]: [Lands] Using default item currency for economy. You can edit the currency item for each locale in the corresponding GUI language files. Strict mode: false
[13:16:03] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:16:03] [Server thread/INFO]: [Lands] Using SQLite: /data/plugins/Lands/Data
[13:16:03] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Starting...
[13:16:03] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] ConnectionPool - Start completed.
[13:16:03] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[13:16:03] [Server thread/INFO]: [Lands] Setting up tables...
[13:16:03] [Server thread/INFO]: [Lands] Your SQL DBMS version: 3.46.0 (SQLite) Wiki: https://wiki.incredibleplugins.com/lands/configuration/database
[13:16:03] [Server thread/INFO]: [Lands] Successfully connected to SQL database.
[13:16:03] [Server thread/INFO]: [Lands] Added flag 'lands-claim' to the plugin WorldGuard.
[13:16:03] [Server thread/INFO]: [MiniPlaceholders] Loading server plugin MiniPlaceholders v2.3.0-SNAPSHOT
[13:16:03] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.14.5
[13:16:03] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.11.0
[13:16:03] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.25.3.4
[13:16:03] [Server thread/INFO]: [Iris] Loading server plugin Iris v3.6.11-1.20.1-1.21.5
[13:16:03] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.5
[13:16:03] [Server thread/INFO]: [UltraBar] Loading server plugin UltraBar v2.3.2.1
[13:16:03] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.1
[13:16:03] [Server thread/INFO]: [GamerulesManager] Loading server plugin GamerulesManager v4.5.4
[13:16:03] [Server thread/INFO]: [CommandTimer] Loading server plugin CommandTimer v8.11.3
[13:16:03] [Server thread/INFO]: [DailyRewardsPlus] Loading server plugin DailyRewardsPlus v1.4.6
[13:16:03] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.3
[13:16:03] [Server thread/INFO]: [AdvancedSkills] Loading server plugin AdvancedSkills v1.6.3
[13:16:03] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[13:16:03] [Server thread/INFO]: [FancyHolograms] Loading server plugin FancyHolograms v2.4.2
[13:16:03] [ForkJoinPool.commonPool-worker-1/INFO]: [AdvancedSkills] Legacy material support initialized. Ignore any error or warn message.
[13:16:03] [Server thread/INFO]: [BlockFly] Loading server plugin BlockFly v1.5
[13:16:03] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.65
[13:16:03] [Server thread/INFO]: [PlayTime] Loading server plugin PlayTime v3.6
[13:16:03] [Server thread/INFO]: [ajParkour] Loading server plugin ajParkour v2.12.10
[13:16:03] [Server thread/INFO]: [Dungeons] Loading server plugin Dungeons v3.8.0
[13:16:03] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.10.1
[13:16:03] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully loaded FancyHolograms version 2.4.2
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[13:16:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[13:16:03] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[13:16:03] [Server thread/INFO]: [MineBlocks] Loading server plugin MineBlocks v2.1.4
[13:16:03] [Server thread/INFO]: [WorldBorder] Loading server plugin WorldBorder v1.2
[13:16:03] [Server thread/INFO]: [UberEnchant] Loading server plugin UberEnchant v8.11.7
[13:16:03] [Server thread/INFO]: [ZombieApocalypse] Loading server plugin ZombieApocalypse v1.4.11
[13:16:03] [Server thread/INFO]: [HostifyMonitor] Loading server plugin HostifyMonitor v1.12
[13:16:03] [Server thread/INFO]: [BattlePass] Loading server plugin BattlePass v4.8.18
[13:16:03] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.6
[13:16:03] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[13:16:03] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.7
[13:16:03] [Server thread/INFO]: [ExecutableBlocks] Loading server plugin ExecutableBlocks v5.25.2.26
[13:16:03] [Server thread/INFO]: [BlockEffects] Loading server plugin BlockEffects v4.0
[13:16:03] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[13:16:03] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[13:16:03] [Server thread/INFO]: [TimeBar] Loading server plugin TimeBar v1.4.7
[13:16:03] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v2.3.3
[13:16:03] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.1-dev+12-8455212
[13:16:03] [Server thread/INFO]: [AdvancedJobs] Loading server plugin AdvancedJobs v1.7.4
[13:16:03] [Server thread/INFO]: [AdvancedKits] Loading server plugin AdvancedKits v1.19.30
[13:16:03] [Server thread/INFO]: [AdvancedPets] Loading server plugin AdvancedPets v2.20.4
[13:16:03] [Server thread/INFO]: [NametagEdit] Loading server plugin NametagEdit v4.5.23
[13:16:03] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.8.3.0
[13:16:03] [Server thread/INFO]: [PhoenixCrates] Loading server plugin PhoenixCrates v4.0
[13:16:03] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[13:16:03] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.156
[13:16:04] [Server thread/INFO]:         __    
[13:16:04] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.156
[13:16:04] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[13:16:04] [Server thread/INFO]: 
[13:16:04] [Server thread/INFO]: [LuckPerms] Loading configuration...
[13:16:04] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[13:16:05] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[13:16:05] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[13:16:05] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2157ms)
[13:16:05] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[13:16:05] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[13:16:06] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[13:16:06] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[13:16:06] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[13:16:06] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[13:16:06] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1057;093c30d
[13:16:06] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[13:16:06] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[13:16:06] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[13:16:06] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[13:16:06] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[13:16:06] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.21.1-v1
[13:16:06] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Purpur (Paper) (Spigot) (1.21.1-2329-803bf62 | mojmap) : (Unknown) (Minecraft 1.21.1)
[13:16:06] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 71 build(s) out of date.
You are running build 1057, the latest version is build 1128.
Update at https://ci.athion.net/job/FastAsyncWorldEdit
[13:16:06] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[13:16:07] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from FastAsyncWorldEdit (>= v1.17)
[13:16:07] [Server thread/INFO]: [BKCommonLib] This library is written with stability in mind.
[13:16:07] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.21.1-v1 (build: 1795) enabled! (1.106s)
[13:16:07] [Server thread/INFO]: [Iris] Enabling Iris v3.6.11-1.20.1-1.21.5
[13:16:08] [Server thread/INFO]: [Iris]: Locating NMS Binding for v1_21_R1
[13:16:08] [Server thread/INFO]: [Iris]: Craftbukkit v1_21_R1 <-> NMSBinding Successfully Bound
[13:16:08] [Server thread/INFO]: [Iris]: Checking Data Packs...
[13:16:08] [Server thread/INFO]: [Iris]: Data Packs Setup!
[13:16:08] [Server thread/INFO]: [Iris]: Enabled Iris SafeGuard
[13:16:08] [Server thread/INFO]: [Iris]: Checking for possible conflicts..
[13:16:08] [Server thread/INFO]: [Iris]: Warning mode has been activated.
[13:16:08] [Server thread/INFO]: [Iris]: Server type & version: 1.21.1-2329-803bf62 (MC: 1.21.1)
[13:16:08] [Server thread/INFO]: [Iris]: Java: OpenJDK 64-Bit Server VM Azul Systems, Inc. (build 21.0.2+13-LTS)
[13:16:08] [Server thread/INFO]: [Iris]: Bukkit distro: Purpur
[13:16:08] [Server thread/INFO]: [Iris]: Custom Biomes: 103
[13:16:08] [Server thread/INFO]: [Iris]: Version Information: 1.21.1-2329-803bf62 (MC: 1.21.1) | 1.21.1-R0.1-SNAPSHOT
[13:16:08] [Server thread/INFO]: [Iris]: Custom Dimensions: 1
[13:16:08] [Server thread/INFO]: [Iris]:   overworld v3910
[13:16:08] [Server thread/INFO]: [Iris]: 
[13:16:08] [Server thread/INFO]: 
[13:16:08] [Server thread/INFO]:             @@@@@@@@@@@@@@@@@
[13:16:08] [Server thread/INFO]:          @@&&&&&&&&&&&&&&&   .(((()))).                     
[13:16:08] [Server thread/INFO]:         @@@&&&&&&&&&&&&&  .((((((())))))).                  
[13:16:08] [Server thread/INFO]:         @@@&&&&&&&&&&&&  ((((((((()))))))))                @
[13:16:08] [Server thread/INFO]:         @@@&&&&@@@@@&    ((((((((-)))))))))               @@
[13:16:08] [Server thread/INFO]:         @@@&&            ((((((({ }))))))))            &&@@@     Iris
[13:16:08] [Server thread/INFO]:         @@               ((((((((-)))))))))    &@@@@@&&&&@@@     by Volmit Software
[13:16:08] [Server thread/INFO]:         @                ((((((((()))))))))  &&&&&&&&&&&&@@@     v3.6.11-1.20.1-1.21.5
[13:16:08] [Server thread/INFO]:                           '((((((()))))))'  &&&&&&&&&&&&&@@@
[13:16:08] [Server thread/INFO]:                              '(((())))'   &&&&&&&&&&&&&&&@@
[13:16:08] [Server thread/INFO]:                                        @@@@@@@@@@@@@@@@@
[13:16:08] [Server thread/INFO]: [Iris]: Iris is running in Warning Mode
[13:16:08] [Server thread/INFO]: [Iris]: 1 Conflicts found
[13:16:08] [Server thread/INFO]: [Iris]: Unsupported Server JDK
[13:16:08] [Server thread/INFO]: [Iris]: - Please consider using JDK 21 Instead of JRE 21
[13:16:08] [Server thread/INFO]: [Iris]: 
[13:16:08] [Server thread/INFO]: [Iris]: --==< IMPORTANT >==--
[13:16:08] [Server thread/INFO]: [Iris]: Iris is running in warning mode which may cause the following issues:
[13:16:08] [Server thread/INFO]: [Iris]: - Data Loss
[13:16:08] [Server thread/INFO]: [Iris]: - Errors
[13:16:08] [Server thread/INFO]: [Iris]: - Broken worlds
[13:16:08] [Server thread/INFO]: [Iris]: - Unexpected behavior.
[13:16:08] [Server thread/INFO]: [Iris]: - And perhaps further complications.
[13:16:08] [Server thread/INFO]: [Iris]: CAUSE: Unsupported JDK
[13:16:08] [Server thread/INFO]: [Iris]: 
[13:16:08] [Server thread/INFO]: [Iris]: Loading ExternalDataProvider...
[13:16:08] [Server thread/INFO]: [Iris]: Version Information: 1.21.1-2329-803bf62 (MC: 1.21.1) | 1.21.1-R0.1-SNAPSHOT
[13:16:08] [Server thread/INFO]: [BlockFly] Enabling BlockFly v1.5
[13:16:08] [Server thread/INFO]: WorldGuard found.
[13:16:08] [Server thread/INFO]: PlaceholderAPI found.
[13:16:09] [Server thread/INFO]: BlockFly enabled.
[13:16:09] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.65
[13:16:09] [Server thread/INFO]: Preparing level "Iris"
[13:16:09] [Server thread/INFO]: [Iris]: Loaded Prefetch Cache to reduce generation disk use.
[13:16:09] [Server thread/INFO]: [Iris]: Initializing Engine: Iris/overworld (IrisRange(min=-64.0, max=1024.0) height) Seed: 1337
[13:16:09] [Server thread/INFO]: [Iris]: Injected Iris Biome Source into Iris
[13:16:10] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[13:16:11] [Server thread/INFO]: Time elapsed: 867 ms
[13:16:11] [Server thread/INFO]: Preparing start region for dimension nmr:astral_plane
[13:16:11] [Server thread/INFO]: Time elapsed: 166 ms
[13:16:11] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[13:16:11] [Server thread/INFO]: Time elapsed: 37 ms
[13:16:11] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[13:16:11] [Server thread/INFO]: Time elapsed: 100 ms
[13:16:11] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.2
[13:16:11] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[13:16:11] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[13:16:11] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[13:16:11] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[13:16:11] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[13:16:11] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK
[13:16:11] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-2329-803bf62 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-2329-803bf62 (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.
[13:16:11] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK_CREAKING
[13:16:11] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-2329-803bf62 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-2329-803bf62 (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.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris) TNT ignition is PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris) Lighters are PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris) Lava fire is PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris) Fire spread is UNRESTRICTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Iris'
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_nmr_astral_plane) TNT ignition is PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_nmr_astral_plane) Lighters are PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_nmr_astral_plane) Lava fire is PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_nmr_astral_plane) Fire spread is UNRESTRICTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Iris_nmr_astral_plane'
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_the_end) TNT ignition is PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_the_end) Lighters are PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_the_end) Lava fire is PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_the_end) Fire spread is UNRESTRICTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Iris_the_end'
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_nether) TNT ignition is PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_nether) Lighters are PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_nether) Lava fire is PERMITTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] (Iris_nether) Fire spread is UNRESTRICTED.
[13:16:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Iris_nether'
[13:16:11] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:16:12] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.21.1-v1
[13:16:12] [Server thread/INFO]: [My_Worlds] Set auto-load for world 'Iris' to 'no' because it uses chunk generator plugin 'Iris'!
[13:16:12] [Server thread/INFO]: [My_Worlds] Loading world 'spawn' using chunk generator: ':minecraft:air;minecraft:the_void;nostructures'
[13:16:12] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[13:16:12] [Server thread/INFO]: Time elapsed: 207 ms
[13:16:12] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[13:16:12] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[13:16:12] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[13:16:12] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[13:16:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[13:16:12] [Server thread/INFO]: [My_Worlds] Loading world 'Dungeon'
[13:16:12] [Server thread/INFO]: Preparing start region for dimension minecraft:dungeon
[13:16:12] [Server thread/INFO]: Time elapsed: 68 ms
[13:16:12] [Server thread/INFO]: [WorldGuard] (Dungeon) TNT ignition is PERMITTED.
[13:16:12] [Server thread/INFO]: [WorldGuard] (Dungeon) Lighters are PERMITTED.
[13:16:12] [Server thread/INFO]: [WorldGuard] (Dungeon) Lava fire is PERMITTED.
[13:16:12] [Server thread/INFO]: [WorldGuard] (Dungeon) Fire spread is UNRESTRICTED.
[13:16:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Dungeon'
[13:16:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.21.1-v1]
[13:16:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.21.1-v1]
[13:16:12] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[13:16:12] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.21.1-v1 (build: 312) enabled! (0.641s)
[13:16:12] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.15.1
[13:16:12] [Server thread/INFO]: [LiteBans] Using system locale (en)
[13:16:12] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[13:16:12] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[13:16:12] [Server thread/INFO]: [LiteBans] Connecting to database...
[13:16:12] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[13:16:12] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[13:16:12] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (120.8 ms).
[13:16:12] [Server thread/INFO]: [LiteBans] Database connection fully initialized (123.2 ms).
[13:16:13] [Server thread/INFO]: [LiteBans] v2.15.1 enabled. Startup took 338 ms.
[13:16:13] [Server thread/INFO]: [AdvancedChat] Enabling AdvancedChat v1.9.22
[13:16:13] [Server thread/INFO]: [AdvancedChat] Loaded 18 chat colors
[13:16:13] [Server thread/INFO]: [AdvancedChat] Loaded 1 chat bubbles
[13:16:13] [Server thread/INFO]: [AdvancedChat] Loaded 33 tags
[13:16:13] [Server thread/INFO]: [AdvancedChat] Loading chat rules...
[13:16:13] [Server thread/INFO]: [AdvancedChat] Registered emojis chat rule
[13:16:13] [Server thread/INFO]: [AdvancedChat] Registered spam chat rule
[13:16:13] [Server thread/INFO]: [AdvancedChat] Registered advertising chat rule
[13:16:13] [Server thread/INFO]: [AdvancedChat] Registered caps chat rule
[13:16:13] [Server thread/INFO]: [AdvancedChat] Registered similarity chat rule
[13:16:13] [Server thread/INFO]: [AdvancedChat] Loaded 5 chat rules
[13:16:13] [Server thread/INFO]: [AdvancedChat] Loaded 2 announcements
[13:16:13] [Server thread/INFO]: [AdvancedChat] Customizer has been enabled.
[13:16:13] [Server thread/INFO]: [AdvancedChat] Loaded 1 message customizations.
[13:16:13] [Server thread/INFO]: [AdvancedChat] Registered owner chat format
[13:16:13] [Server thread/INFO]: [AdvancedChat] Registered default chat format
[13:16:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedchat [1.0.0]
[13:16:13] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3583)
[13:16:13] [Server thread/INFO]: [Citizens] Loading external libraries
[13:16:14] [Server thread/INFO]: [Citizens] Detected system language [[cs]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[13:16:14] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[13:16:14] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[13:16:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[13:16:14] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[13:16:14] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.21.2
[13:16:14] [Server thread/INFO]: [HeadDatabase]                                 
[13:16:14] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[13:16:14] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[13:16:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.21.2]
[13:16:14] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1-dev+12-8455212
[13:16:14] [Server thread/ERROR]: [Essentials] Používáte nepodporovanou verzi serveru!
[13:16:14] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[13:16:14] [Server thread/INFO]: [Essentials] No kits found to migrate.
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[13:16:14] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[13:16:14] [Server thread/INFO]: [Essentials] Loaded 43517 items from items.json.
[13:16:14] [Server thread/INFO]: [Essentials] Using locale cs_CZ
[13:16:14] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[13:16:15] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 87686 heads!
[13:16:15] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[13:16:15] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[13:16:15] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[13:16:15] [Server thread/INFO]: [Skript] Enabling Skript v2.11.2
[13:16:15] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[13:16:15] [Folia Async Scheduler Thread Timer/ERROR]: [HeadDatabase] Unable to check for updates. Error: https://api.spigotmc.org/simple/0.1/index.php?action=getResource&id=33051
[13:16:16] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[13:16:16] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[13:16:16] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[13:16:16] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1378), impl for Spigot v1.3.0-SNAPSHOT (build 1804-REL) 
[13:16:16] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.2 
[13:16:16] [Server thread/INFO]: +> [Denizen] Running on unrecognized (future?) Java version. May or may not work. 
[13:16:16] [Server thread/WARN]: [Denizen] -------------------------------------
[13:16:16] [Server thread/WARN]: [Denizen] This build of Denizen is not compatible with this Spigot version! Deactivating Denizen!
[13:16:16] [Server thread/WARN]: [Denizen] -------------------------------------
[13:16:16] [Server thread/INFO]: [Denizen] Disabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[13:16:16] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.14
[13:16:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[13:16:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[13:16:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[13:16:16] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.11
[13:16:16] [Server thread/WARN]: [ItemsAdder] LoneLibs is enabled. This plugin is not needed anymore and it's recommended to remove it (if you are not using it for other plugins).
[13:16:16] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Loaded 5330 aliases in 776ms
[13:16:16] [Server thread/WARN]: [ItemsAdder] Using default server address: . Consider setting it in the `config.yml`
[13:16:16] [Server thread/WARN]: [ItemsAdder] Using default server port: 41780. Consider setting it in the `config.yml`
[13:16:16] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.11
  ___  ___        __        __   __   ___  __      ProtocolLib 5.3.0
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     Purpur 1.21.1-2329-803bf62 (MC: 1.21.1)
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Build Date: 2025-06-10_18.20.51
                                                   Java Version: 21.0.2
                                                   OS: Linux 6.1.0-32-amd64                                               
[13:16:16] [Server thread/INFO]: [ItemsAdder] Loading GlowingEntities API
[13:16:16] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Found server version 1.21.1
[13:16:16] [Server thread/INFO]: [GlowingEntities] [GlowingEntities] Loaded transparent mappings.
[13:16:16] [Server thread/INFO]: [ItemsAdder] ViaVersion detected. Do not report glitches when joining using game versions different than the server version.
[13:16:16] [Server thread/INFO]: [ItemsAdder] More info: https://github.com/PluginBugs/Issues-ItemsAdder/issues/3683
[13:16:16] [Server thread/INFO]: [ItemsAdder] Registered Skript API
[13:16:16] [Server thread/ERROR]: [ItemsAdder] Error while hooking into Denizen
[13:16:16] [Server thread/WARN]: java.lang.NoClassDefFoundError: com/denizenscript/denizen/objects/ItemTag
[13:16:16] [Server thread/WARN]:     at ItemsAdder_4.0.11.jar//dev.lone.itemsadder.Core.OtherPlugins.Denizen.DenizenHook.hook(SourceFile:22)
[13:16:16] [Server thread/WARN]:     at ItemsAdder_4.0.11.jar//dev.lone.itemsadder.Main.onEnable(SourceFile:330)
[13:16:16] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[13:16:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[13:16:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[13:16:16] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[13:16:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655)
[13:16:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604)
[13:16:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757)
[13:16:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519)
[13:16:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366)
[13:16:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230)
[13:16:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333)
[13:16:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Unknown Source)
[13:16:16] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.objects.ItemTag
[13:16:16] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199)
[13:16:16] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166)
[13:16:16] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(Unknown Source)
[13:16:16] [Server thread/WARN]:     ... 14 more
[13:16:17] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[13:16:17] [Server thread/INFO]: [ItemsAdder] [!] Waiting for Cyclic dependencies to load before loading ItemsAdder contents: AdvancedEnchantments
[13:16:17] [Server thread/INFO]: [Iris]: Enabled ExternalDataProvider for ItemsAdder.
[13:16:17] [Server thread/INFO]: [Lands] Enabling Lands v7.15.19
[13:16:17] [Server thread/INFO]: [Lands]  _                        _      
[13:16:17] [Server thread/INFO]: [Lands] | |                      | |     
[13:16:17] [Server thread/INFO]: [Lands] | |      __ _  _ __    __| | ___ 
[13:16:17] [Server thread/INFO]: [Lands] | |     / _` || '_ \  / _` |/ __|
[13:16:17] [Server thread/INFO]: [Lands] | |____| (_| || | | || (_| |\__ \
[13:16:17] [Server thread/INFO]: [Lands] \_____/ \__,_||_| |_| \__,_||___/
[13:16:17] [Server thread/INFO]: [Lands] Version: 7.15.19 Previous: 7.15.19
[13:16:17] [Server thread/INFO]: [Lands] Server: 1.21.1 running Paper
[13:16:17] [Server thread/INFO]: [Lands] Licensed to: 1699706
[13:16:17] [Server thread/INFO]: [Lands] Experiencing issues or having questions? Join our Discord!
[13:16:17] [Server thread/INFO]: [Lands] Discord: https://discord.incredibleplugins.com
[13:16:17] [Server thread/INFO]: [Lands] Wiki: https://wiki.incredibleplugins.com/lands
[13:16:17] [Server thread/INFO]: [Lands]  
[13:16:17] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated DecentHolograms as hologram manager.
[13:16:17] [Server thread/INFO]: [Lands] Performing initial data load.
[13:16:17] [Server thread/INFO]: [Lands] There are currently 0 created land(s).
[13:16:17] [Server thread/WARN]: [Lands] Land 01JZ3NGRK9G8NBTGCW7XES992C does not exist any longer. Deleting world container for land 01JZ3NGRK9G8NBTGCW7XES992C.
[13:16:17] [Server thread/WARN]: [Lands] Land 01JZ3NJ4D3QHCDXQ9N7NMD1Q6G does not exist any longer. Deleting world container for land 01JZ3NJ4D3QHCDXQ9N7NMD1Q6G.
[13:16:17] [Server thread/WARN]: [Lands] Land 01JZ3NMCBSZ2AX9B80ST6M7Y27 does not exist any longer. Deleting world container for land 01JZ3NMCBSZ2AX9B80ST6M7Y27.
[13:16:17] [Server thread/INFO]: [Lands] Initial data load took 8 ms.
[13:16:17] [Server thread/INFO]: [MiniPlaceholders] Enabling MiniPlaceholders v2.3.0-SNAPSHOT
[13:16:17] [Server thread/INFO]: [MiniPlaceholders] Starting MiniPlaceholders Paper
[13:16:17] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.14.5
[13:16:17] [Server thread/INFO]: [AdvancedEnchantments] Loading Minecraft Version MC1_21_R1
[13:16:17] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: AdvancedEnchantments
[13:16:17] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[13:16:17] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[13:16:17] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[13:16:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedenchantments [1.0.0]
[13:16:17] [Server thread/INFO]: [ItemsAdder] [OK] Cyclic dependency has loaded: AdvancedEnchantments
[13:16:17] [Server thread/INFO]: [ItemsAdder] [OK] All Cyclic dependencies loaded, now loading ItemsAdder contents...
[13:16:17] [Server thread/INFO]: [ItemsAdder] [Libs] FFmpeg is available at: /data/plugins/ItemsAdder/storage/cache/ffmpeg/linux/ffmpeg
[13:16:17] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 41782
[13:16:17] [Server thread/INFO]: [ItemsAdder] [SelfHost] Rate limiter: max 3 requests / 2s.
[13:16:17] [Server thread/INFO]: [ItemsAdder] [SelfHost] Clients exceeding 5 times will be blocked for 30m.
[13:16:18] [Server thread/WARN]: [ItemsAdder] Detected legacy ItemsAdder pack (pre 3.3.0). You should migrate at some point.
[13:16:18] [Server thread/WARN]: [ItemsAdder] Guidelines: https://a.devs.beer/ia-new-guidelines-330
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.11.0
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 shop configs from /shops/
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 14 shop sections.
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.21.1...
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[13:16:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.0.0]
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[13:16:18] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[13:16:19] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 164ms to complete
[13:16:19] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: There is an update available for EconomyShopGUI, you are running v6.11.0 but found v6.14.2.
[13:16:19] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI] [INFO]: Download at: https://www.spigotmc.org/resources/economyshopgui.69927/
[13:16:19] [Server thread/INFO]: [SCore] Enabling SCore v5.25.3.4
[13:16:19] [Server thread/INFO]: ================ SCore ================
[13:16:19] [Server thread/INFO]: SCore is running on Folia
[13:16:19] [Server thread/INFO]: SCore is running on Paper or fork
[13:16:19] [Server thread/INFO]: SCore Version of the server 1.21.1-2329-803bf62 (MC: 1.21.1) !
[13:16:19] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (5.25.2.26) Load After
[13:16:19] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[13:16:19] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.12+829a4a4)  Load Before
[13:16:19] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[13:16:19] [Server thread/INFO]: SCore Lands hooked !  (7.15.19)  Load Before
[13:16:19] [Server thread/INFO]: SCore ProtocolLib hooked !
[13:16:19] [Server thread/INFO]: SCore Locale setup: EN
[13:16:19] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.21.2)  Load Before
[13:16:19] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.14)  Load Before
[13:16:19] [Server thread/INFO]: SCore ItemsAdder hooked !  (4.0.11)  Load Before
[13:16:19] [Server thread/INFO]: SCore TAB hooked !  (5.0.7) Load After
[13:16:19] [Server thread/INFO]: SCore WorldEdit hooked !  (2.13.1-SNAPSHOT-1057;093c30d)  Load Before
[13:16:19] [Server thread/INFO]: SCore Language of the editor setup on EN
[13:16:19] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[13:16:19] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[13:16:19] [Server thread/INFO]: SCore Connection to the db...
[13:16:19] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[13:16:19] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[13:16:19] [Server thread/INFO]: SCore Creating table Commands if not exists...
[13:16:19] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[13:16:19] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[13:16:19] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[13:16:19] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[13:16:19] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[13:16:19] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[13:16:19] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[13:16:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[13:16:19] [Server thread/INFO]: ================ SCore ================
[13:16:19] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.5
[13:16:19] [Server thread/ERROR]: Error occurred while enabling MiniMOTD v2.1.5 (Is it up to date?)
java.lang.IllegalStateException: Failed to load MiniMOTD. Ensure your config files are without errors.
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.platform_bukkit.xyz.jpenilla.minimotd.common.MiniMOTD.<init>(MiniMOTD.java:55) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.bukkit.MiniMOTDPlugin.onEnable(MiniMOTDPlugin.java:53) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.IllegalStateException: Failed to load config
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.platform_bukkit.xyz.jpenilla.minimotd.common.config.ConfigManager.loadConfigs(ConfigManager.java:79) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.platform_bukkit.xyz.jpenilla.minimotd.common.MiniMOTD.<init>(MiniMOTD.java:53) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    ... 13 more
Caused by: xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.loader.ParsingException: []@(line 16, col 0): null
Reader: 16
^
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.hocon.HoconConfigurationLoader.loadInternal(HoconConfigurationLoader.java:175) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.hocon.HoconConfigurationLoader.loadInternal(HoconConfigurationLoader.java:61) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.loader.AbstractConfigurationLoader.load(AbstractConfigurationLoader.java:155) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.loader.AbstractConfigurationLoader.load(AbstractConfigurationLoader.java:63) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.loader.ConfigurationLoader.load(ConfigurationLoader.java:56) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.platform_bukkit.xyz.jpenilla.minimotd.common.config.ConfigLoader.load(ConfigLoader.java:104) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.platform_bukkit.xyz.jpenilla.minimotd.common.config.ConfigManager.loadConfigs(ConfigManager.java:73) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.platform_bukkit.xyz.jpenilla.minimotd.common.MiniMOTD.<init>(MiniMOTD.java:53) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    ... 13 more
Caused by: xyz.jpenilla.minimotd.lib.com.typesafe.config.ConfigException$Parse: Reader: 16: Expecting a value but got wrong token: 'newline' (JSON does not allow unescaped newline in quoted strings, use a backslash escape) (if you intended 'newline' (JSON does not allow unescaped newline in quoted strings, use a backslash escape) to be part of a key or string value, try enclosing the key or value in double quotes, or you may be able to rename the file .properties rather than .conf)
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.parseError(ConfigDocumentParser.java:201) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.parseError(ConfigDocumentParser.java:197) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.parseValue(ConfigDocumentParser.java:251) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.parseObject(ConfigDocumentParser.java:475) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.parseValue(ConfigDocumentParser.java:247) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.consolidateValues(ConfigDocumentParser.java:152) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.parseArray(ConfigDocumentParser.java:551) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.parseValue(ConfigDocumentParser.java:249) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.consolidateValues(ConfigDocumentParser.java:152) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.parseObject(ConfigDocumentParser.java:473) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser$ParseContext.parse(ConfigDocumentParser.java:648) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.ConfigDocumentParser.parse(ConfigDocumentParser.java:14) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.Parseable.rawParseValue(Parseable.java:262) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.Parseable.rawParseValue(Parseable.java:250) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.Parseable.parseValue(Parseable.java:180) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.Parseable.parseValue(Parseable.java:174) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.impl.Parseable.parse(Parseable.java:301) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.ConfigFactory.parseReader(ConfigFactory.java:726) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.com.typesafe.config.ConfigFactory.parseReader(ConfigFactory.java:740) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.hocon.HoconConfigurationLoader.loadInternal(HoconConfigurationLoader.java:172) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.hocon.HoconConfigurationLoader.loadInternal(HoconConfigurationLoader.java:61) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.loader.AbstractConfigurationLoader.load(AbstractConfigurationLoader.java:155) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.loader.AbstractConfigurationLoader.load(AbstractConfigurationLoader.java:63) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.org.spongepowered.configurate.loader.ConfigurationLoader.load(ConfigurationLoader.java:56) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.platform_bukkit.xyz.jpenilla.minimotd.common.config.ConfigLoader.load(ConfigLoader.java:104) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.platform_bukkit.xyz.jpenilla.minimotd.common.config.ConfigManager.loadConfigs(ConfigManager.java:73) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    at minimotd-bukkit-bungeecord-2.1.5.jar/xyz.jpenilla.minimotd.lib.platform_bukkit.xyz.jpenilla.minimotd.common.MiniMOTD.<init>(MiniMOTD.java:53) ~[minimotd-bukkit-bungeecord-2.1.5.jar:?]
    ... 13 more
[13:16:19] [Server thread/INFO]: [MiniMOTD] Disabling MiniMOTD v2.1.5
[13:16:19] [Server thread/INFO]: [UltraBar] Enabling UltraBar v2.3.2.1
[13:16:19] [Server thread/INFO]: [UltraBar] WorldGuard detected. WorldGuard addon activated.
[13:16:19] [Server thread/INFO]: [UltraBar] PlaceholderAPI detected. PlaceholderAPI addon activated.
[13:16:19] [Server thread/INFO]: [UltraBar] Your server is running version 1.21.1!
[13:16:19] [Server thread/INFO]: [UltraBar] UltraBar is enabled and running fine! V: 2.3.2.1
[13:16:19] [Server thread/INFO]: [UltraBar] Bstat metrics for this plugin is enabled. Disable it in the config if you do not want it on.
[13:16:19] [Server thread/INFO]: [LPC] Enabling LPC v3.6.1
[13:16:19] [Server thread/INFO]: [GamerulesManager] Enabling GamerulesManager v4.5.4
[13:16:19] [Server thread/INFO]: [CommandTimer] Enabling CommandTimer v8.11.3
[13:16:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandtimer [8.11.3]
[13:16:19] [Server thread/INFO]: [CommandTimer] CommandTimer hooked in PlaceholderAPI
[13:16:19] [Server thread/INFO]: [CommandTimer] Server time : 13:16:19
[13:16:19] [Server thread/INFO]: [CommandTimer] Server day : SUNDAY
[13:16:19] [Server thread/INFO]: [CommandTimer] 8.11.3 loaded 0 tasks!
[13:16:19] [Server thread/INFO]: [DailyRewardsPlus] Enabling DailyRewardsPlus v1.4.6
[13:16:19] [Server thread/INFO]: [DailyRewards+] Starting DailyRewards+!
[13:16:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: daily [1.0.0]
[13:16:19] [Server thread/INFO]: [DailyRewards+] Detected Placeholder API. Successfully enabled plugin support.
[13:16:19] [Server thread/INFO]: [DailyRewards+] Cleaning up...
[13:16:19] [Server thread/INFO]: [DailyRewards+] Accumulating player data for LeaderBoard placeholders, this task will run asynchronously.
[13:16:19] [Server thread/INFO]: [DailyRewards+] Detected version group as V1.20.5+[1211]. Applying necessary settings.
[13:16:19] [Server thread/INFO]: [DailyRewards+] Has started successfully!
[13:16:19] [Server thread/INFO]: [Images] Enabling Images v2.5.3
[13:16:19] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[13:16:19] [Server thread/INFO]: [AdvancedSkills] Enabling AdvancedSkills v1.6.3
[13:16:19] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: AdvancedSkills
[13:16:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedskills [1.0.0]
[13:16:20] [Thread-24/INFO]: [CommandTimer] Checking for update...
[13:16:20] [Thread-24/INFO]: [CommandTimer] Update found!
[13:16:20] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[13:16:20] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[13:16:20] [Server thread/INFO]: [DeluxeTags] 14 tags loaded
[13:16:20] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[13:16:20] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[13:16:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
[13:16:20] [Server thread/INFO]: [DeluxeTags] ----------------------------
[13:16:20] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[13:16:20] [Server thread/INFO]: [DeluxeTags]  
[13:16:20] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[13:16:20] [Server thread/INFO]: [DeluxeTags] The latest version
[13:16:20] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[13:16:20] [Server thread/INFO]: [DeluxeTags]  
[13:16:20] [Server thread/INFO]: [DeluxeTags] ----------------------------
[13:16:20] [Server thread/INFO]: [FancyHolograms] Enabling FancyHolograms v2.4.2
[13:16:20] [FancyLogger/INFO]: [FancyHolograms] (Server thread) INFO: Successfully enabled FancyHolograms version 2.4.2
[13:16:20] [Server thread/INFO]: [PlayTime] Enabling PlayTime v3.6*
[13:16:20] [Server thread/INFO]: [PlayTime] PlaceholderAPI was found! Registering Placeholders.
[13:16:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playtime [3.6]
[13:16:20] [Server thread/INFO]: [ajParkour] Enabling ajParkour v2.12.10
[13:16:20] [FancyLogger/INFO]: [FancyHolograms] (FancyHolograms-Holograms) INFO: Loaded 40 holograms for all loaded worlds
[13:16:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajpk [2.12.10]
[13:16:20] [Server thread/INFO]: ajParkour v2.12.10 by ajgeiss0702 has been enabled!
[13:16:20] [Server thread/INFO]: [Dungeons] Enabling Dungeons v3.8.0
[13:16:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: dungeons [3.8.0]
[13:16:20] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[13:16:20] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[13:16:20] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[13:16:20] [Server thread/INFO]: | Command file(s) found : 1
[13:16:20] [Server thread/INFO]: | Config : Ready.
[13:16:20] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[13:16:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[13:16:20] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[13:16:20] [Server thread/INFO]: | Custom commands loaded : 44
[13:16:20] [FancyLogger/INFO]: [FancyHolograms] (ForkJoinPool.commonPool-worker-3) WARN: 
[13:16:20] [FancyLogger/INFO]: -------------------------------------------------------
[13:16:20] [FancyLogger/INFO]: You are not using the latest version of the FancyHolograms plugin.
[13:16:20] [FancyLogger/INFO]: Please update to the newest version (2.5.0).
[13:16:20] [FancyLogger/INFO]: https://modrinth.com/plugin/FancyHolograms
[13:16:20] [FancyLogger/INFO]: -------------------------------------------------------
[13:16:20] [FancyLogger/INFO]: 
[13:16:20] [Thread-26/WARN]: [MyCommand] The updater could not find any files for the project id 37488
[13:16:20] [Server thread/INFO]: | You're running the latest version of MyCommand.
[13:16:20] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[13:16:20] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[13:16:20] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.10.1
[13:16:21] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[13:16:21] [Server thread/INFO]: [ajLeaderboards] Loaded 7 boards
[13:16:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.10.1]
[13:16:21] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[13:16:21] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 by ajgeiss0702 enabled!
[13:16:21] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[13:16:21] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[13:16:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[13:16:21] [Server thread/INFO]: [MineBlocks] Enabling MineBlocks v2.1.4
[13:16:21] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.2
[13:16:21] [Server thread/INFO]: [WorldBorder] ERROR: Unable to create world border world because this world does not exist
[13:16:21] [Server thread/INFO]: [UberEnchant] Enabling UberEnchant v8.11.7
[13:16:21] [Server thread/INFO]: [ZombieApocalypse] Enabling ZombieApocalypse v1.4.11
[13:16:21] [Server thread/INFO]: [ZombieApocalypse] Configuration has been successfully loaded!
[13:16:21] [Server thread/INFO]: [ZombieApocalypse] If you really love this project, you could consider donating to help me keep this project alive! https://paypal.me/3ricL
[13:16:21] [Server thread/INFO]: [HostifyMonitor] Enabling HostifyMonitor v1.12
[13:16:21] [Server thread/INFO]: [HostifyMonitor] Plugin has been successfully enabled!
[13:16:21] [Server thread/INFO]: [BattlePass] Enabling BattlePass v4.8.18
[13:16:21] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[13:16:21] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[13:16:21] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[13:16:21] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully.
[13:16:21] [Server thread/INFO]: [BattlePass] Finished loading the week-pool quests. All quests loaded successfully.
[13:16:21] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[13:16:21] [Server thread/INFO]: [AdvancedEnchantments] Hooked into AdvancedEnchantments
[13:16:22] [Server thread/INFO]: [Citizens] Hooked into Citizens
[13:16:22] [Server thread/INFO]: [Lands] Hooked into Lands
[13:16:22] [Server thread/INFO]: [EconomyShopGUI] Hooked into EconomyShopGUI
[13:16:22] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[13:16:22] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[13:16:22] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[13:16:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: battlepass [1.1]
[13:16:22] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.6
[13:16:22] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[13:16:22] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[13:16:22] [Server thread/INFO]: [TAB] Enabling TAB v5.0.7
[13:16:22] [Server thread/INFO]: [TAB] Loaded NMS hook in 15ms
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "owner". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "admin". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "builder". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "helper". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "dev". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "vip". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "vipplus". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "mvip". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "mvipplus". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "dragon". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "abovename" defined for group "default". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "default". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "belowname" defined for group "default". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix, header, footer]
[13:16:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [5.0.7]
[13:16:22] [Server thread/INFO]: [TAB] [WARN] Found a total of 15 issues.
[13:16:22] [Server thread/INFO]: [TAB] Enabled in 122ms
[13:16:22] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v5.25.2.26
[13:16:22] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[13:16:23] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the World value of ifNotInWorld from config, value: world_nether (Block: house11)
[13:16:23] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the World value of ifNotInWorld from config, value: world_nether (Block: house11)
[13:16:23] [Server thread/INFO]: ExecutableBlocks Amount of Executable Blocks configurations loaded: 1
[13:16:23] [Server thread/INFO]: ExecutableBlocks There are: 2 ExecutableBlock placed configs to load.
[13:16:23] [Server thread/INFO]: ExecutableBlocks 0/2 blocks loaded.
[13:16:23] [Server thread/INFO]: ExecutableBlocks 1/2 blocks loaded.
[13:16:23] [Server thread/INFO]: ExecutableBlocks 2 ExecutableBlock(s)Placed loaded !
[13:16:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableBlocks [1.0.0]
[13:16:23] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[13:16:23] [Server thread/INFO]: [BlockEffects] Enabling BlockEffects v4.0
[13:16:23] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[13:16:23] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[13:16:23] [Server thread/INFO]: [DeluxeMenus] 9 GUI menus loaded!
[13:16:23] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[13:16:23] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[13:16:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[13:16:23] [Server thread/INFO]: [TimeBar] Enabling TimeBar v1.4.7
[13:16:23] [Server thread/INFO]: [TimeBar] PlaceholderAPI is detected! Enabling support.
[13:16:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: timebar [1.4.7]
[13:16:23] [Server thread/INFO]: [TimeBar] Successfully registered placeholders!
[13:16:23] [Server thread/WARN]: [TimeBar] world is not a valid world, skipping. If it is a valid world, wait for your server to load then try '/timebar reload'
[13:16:23] [Server thread/WARN]: [TimeBar] world2 is not a valid world, skipping. If it is a valid world, wait for your server to load then try '/timebar reload'
[13:16:23] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v2.3.3
[13:16:23] [Server thread/INFO]: [AdvancedPortals] Loading Advanced Portals Core v2.3.3 for MC: 1.21.1
[13:16:23] [pool-80-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.10.1)
[13:16:23] [Server thread/INFO]: [AdvancedPortals] Advanced portals have been enabled!
[13:16:23] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.1-dev+12-8455212
[13:16:23] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[13:16:23] [Server thread/INFO]: [AdvancedJobs] Enabling AdvancedJobs v1.7.4
[13:16:23] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: AdvancedJobs
[13:16:23] [Server thread/INFO]: [AdvancedEnchantments] Hooked into AdvancedEnchantments
[13:16:23] [Server thread/INFO]: [Citizens] Hooked into Citizens
[13:16:23] [Server thread/INFO]: [Lands] Hooked into Lands
[13:16:23] [Server thread/INFO]: [EconomyShopGUI] Hooked into EconomyShopGUI
[13:16:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedjobs [1.0.0]
[13:16:23] [Server thread/INFO]: [AdvancedKits] Enabling AdvancedKits v1.19.30
[13:16:23] [Server thread/INFO]: [AdvancedKits]                                 
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library boosted-yaml
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library YamlAssist
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library gson
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library XSeries
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library fast-uuid
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library adventure-api
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library adventure-key
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library examination-api
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library examination-string
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library adventure-text-serializer-legacy
[13:16:23] [Server thread/INFO]: [AdvancedKits] Loading library adventure-text-minimessage
[13:16:23] [Server thread/INFO]: [AdvancedKits] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[13:16:23] [Server thread/INFO]: [AdvancedKits] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully connected to the YAML database!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID EXP!
[13:16:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedkits [1.19.30]
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully hooked into PlaceholderAPI (EXPANSION)!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully hooked into PlaceholderAPI (PLACEHOLDER)!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID VAULT!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully hooked into Vault (ECONOMY) [EssentialsX Economy]!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully hooked into HeadDatabase (ITEM)!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully hooked into ItemsAdder (ITEM)!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully hooked into ItemsAdder (PLACEHOLDER)!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID ESSENTIALS!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Successfully hooked into Essentials (ECONOMY)!
[13:16:23] [Server thread/INFO]: [AdvancedKits] Enabled asynchronous tab completion support with PaperSpigot!
[13:16:24] [Server thread/INFO]: [AdvancedKits] Successfully enabled in 264 ms!
[13:16:24] [Server thread/INFO]: [AdvancedPets] Enabling AdvancedPets v2.20.4
[13:16:24] [/INFO]: [AdvancedKits] There is a new update available.
[13:16:24] [/INFO]: [AdvancedKits] Current installed version: v1.19.30
[13:16:24] [/INFO]: [AdvancedKits] Latest available version: v1.20.3
[13:16:24] [/INFO]: [AdvancedKits] Download link: https://www.spigotmc.org/resources/96948/
[13:16:24] [Server thread/INFO]: [Lands] [Integrations] 3rd party plugin hooking into Lands: AdvancedPets
[13:16:24] [Server thread/INFO]: [AdvancedPets] Loaded 24,661 custom heads
[13:16:24] [Server thread/INFO]: [AdvancedPets] Mammoth.amob model wasn't loaded - it requires ModelEngine: https://mobs.advancedplugins.net/supported-plugins/modelengine 
[13:16:24] [Server thread/INFO]: [AdvancedPets] Bear.amob model wasn't loaded - it requires ModelEngine: https://mobs.advancedplugins.net/supported-plugins/modelengine 
[13:16:24] [Server thread/INFO]: [AdvancedPets] Reindeer.amob model wasn't loaded - it requires ModelEngine: https://mobs.advancedplugins.net/supported-plugins/modelengine 
[13:16:24] [Server thread/INFO]: [AdvancedPets] Loaded 15 mob configurations.
[13:16:24] [Server thread/INFO]: [AdvancedPets] Loaded 6 pet abilities.
[13:16:24] [Server thread/INFO]: [AdvancedPets] Loaded 6 Skin Packs.
[13:16:24] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.23
[13:16:24] [Server thread/ERROR]: Error occurred while enabling NametagEdit v4.5.23 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at NametagEdit.jar/com.nametagedit.plugin.packets.PacketWrapper.<clinit>(PacketWrapper.java:28) ~[NametagEdit.jar:?]
    at NametagEdit.jar/com.nametagedit.plugin.NametagEdit.testCompat(NametagEdit.java:103) ~[NametagEdit.jar:?]
    at NametagEdit.jar/com.nametagedit.plugin.NametagEdit.onEnable(NametagEdit.java:39) ~[NametagEdit.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
    at NametagEdit.jar/com.nametagedit.plugin.packets.PacketAccessor.<clinit>(PacketAccessor.java:15) ~[NametagEdit.jar:?]
    ... 15 more
[13:16:24] [Server thread/INFO]: [NametagEdit] Disabling NametagEdit v4.5.23
[13:16:24] [Server thread/ERROR]: Error occurred while disabling NametagEdit v4.5.23
java.lang.NullPointerException: Cannot invoke "com.nametagedit.plugin.NametagManager.reset()" because "this.manager" is null
    at NametagEdit.jar/com.nametagedit.plugin.NametagEdit.onDisable(NametagEdit.java:86) ~[NametagEdit.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at java.base/java.lang.Thread.run(Unknown Source) ~[?:?]
[13:16:24] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.8.3.0
[13:16:24] [Server thread/INFO]: [ImageFrame] ImageFrame has hooked into ViaVersion!
[13:16:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: imageframe [1.0.0]
[13:16:26] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[13:16:26] [Server thread/INFO]: [PhoenixCrates] Enabling PhoenixCrates v4.0
[13:16:26] [Server thread/INFO]: Loading cross version adapter...
[13:16:26] [Server thread/INFO]:   ____    ____                               
[13:16:26] [Server thread/INFO]:  |  _ \  / ___|                              
[13:16:26] [Server thread/INFO]:  | |_) || |       Phoenix Crates v4.0      
[13:16:26] [Server thread/INFO]:  |  __/ | |___    https://myphoenixstore.com/
[13:16:26] [Server thread/INFO]:  |_|     \____|                             
[13:16:26] [Server thread/INFO]:                                                  
[13:16:26] [Server thread/INFO]: Loading settings...
[13:16:26] [Server thread/INFO]: Loading file "config.yml".
[13:16:26] [Server thread/INFO]: File "config.yml" is up to date. Importing configurations.
[13:16:26] [Server thread/INFO]: Validating license...
[13:16:26] [Server thread/INFO]: Great news! Your license is valid and active. Enjoy full access to all the features and benefits of this plugin.
[13:16:26] [Server thread/INFO]: No new version available!
[13:16:26] [Server thread/INFO]: Checking for possible migrations...
[13:16:26] [Server thread/INFO]: [PhoenixCrates] No migrations to run.
[13:16:26] [Server thread/INFO]: Vault founded. Preparing Economy...
[13:16:26] [Server thread/INFO]: Placeholder API founded. Preparing placeholders...
[13:16:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: phoenixcrates [1.0.0]
[13:16:26] [Server thread/INFO]: Model Engine is not installed. If you want to support custom models in this plugin install it.
[13:16:26] [Server thread/INFO]: -> (Meg 3) See more at: https://www.spigotmc.org/resources/conxeptworks-legacy-model-engine-1-16-5-1-20.79477/
[13:16:26] [Server thread/INFO]: -> (Meg 4) See more at: https://mythiccraft.io/index.php?resources/20-off-model-engine%E2%80%94ultimate-entity-model-manager-1-19-4-1-20-1.1213/
[13:16:26] [Server thread/INFO]: Loading components...
[13:16:27] [Server thread/INFO]: Loading database...
[13:16:27] [Server thread/WARN]: 2 [Server thread] INFO com.phoenixplugins.phoenixcrates.lib.hikari.HikariDataSource - CyberSQLitePool - Starting...
[13:16:27] [Server thread/WARN]: 12 [Server thread] INFO com.phoenixplugins.phoenixcrates.lib.hikari.HikariDataSource - CyberSQLitePool - Start completed.
[13:16:27] [Server thread/INFO]: Loading menus...
[13:16:27] [Server thread/INFO]: Loading file "menus/default_rewards_preview.yml".
[13:16:27] [Server thread/INFO]: File "menus/default_rewards_preview.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "menus/default_crate_milestones.yml".
[13:16:27] [Server thread/INFO]: File "menus/default_crate_milestones.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "menus/default_crate_reroll.yml".
[13:16:27] [Server thread/INFO]: File "menus/default_crate_reroll.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "menus/default_select_reward.yml".
[13:16:27] [Server thread/INFO]: File "menus/default_select_reward.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Menu "default_rewards_preview" loaded successfully
[13:16:27] [Server thread/INFO]: Menu "default_crate_milestones" loaded successfully
[13:16:27] [Server thread/INFO]: Menu "default_crate_reroll" loaded successfully
[13:16:27] [Server thread/INFO]: Menu "default_select_reward" loaded successfully
[13:16:27] [Server thread/INFO]: Loading addons...
[13:16:27] [Server thread/INFO]: Loading players data...
[13:16:27] [Server thread/INFO]: Loading crates...
[13:16:27] [Server thread/INFO]: Loading file "locations.yml".
[13:16:27] [Server thread/INFO]: File "locations.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/Leviathan.yml".
[13:16:27] [Server thread/INFO]: File "crates/Leviathan.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/Cosmo1.yml".
[13:16:27] [Server thread/INFO]: File "crates/Cosmo1.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/rare_bedna.yml".
[13:16:27] [Server thread/INFO]: File "crates/rare_bedna.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/common_bedna.yml".
[13:16:27] [Server thread/INFO]: File "crates/common_bedna.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/legendary_bedna.yml".
[13:16:27] [Server thread/INFO]: File "crates/legendary_bedna.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/vote_bedna.yml".
[13:16:27] [Server thread/INFO]: File "crates/vote_bedna.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/EasterBunny.yml".
[13:16:27] [Server thread/INFO]: File "crates/EasterBunny.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/epic_bedna.yml".
[13:16:27] [Server thread/INFO]: File "crates/epic_bedna.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/Necros.yml".
[13:16:27] [Server thread/INFO]: File "crates/Necros.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/SweetHeart.yml".
[13:16:27] [Server thread/INFO]: File "crates/SweetHeart.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/g.yml".
[13:16:27] [Server thread/INFO]: File "crates/g.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/EnderDragon.yml".
[13:16:27] [Server thread/INFO]: File "crates/EnderDragon.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/INFO]: Loading file "crates/Cosmo.yml".
[13:16:27] [Server thread/INFO]: File "crates/Cosmo.yml" is up to date. Importing configurations.
[13:16:27] [Server thread/WARN]: [PhoenixCrates] There was an attempt to add crates with an invalid type: "commong_bedna"!
[13:16:27] [Server thread/WARN]: [PhoenixCrates] There was an attempt to add crates with an invalid type: "LeviatánBox"!
[13:16:27] [Server thread/WARN]: [PhoenixCrates] There was an attempt to add crates with an invalid type: "10001"!
[13:16:27] [Server thread/WARN]: [PhoenixCrates] There was an attempt to add crates with an invalid type: "NecrosBox"!
[13:16:27] [Server thread/WARN]: [PhoenixCrates] There was an attempt to add crates with an invalid type: "Leviathanaa"!
[13:16:27] [Server thread/INFO]: Loaded 13 types.
[13:16:27] [Server thread/INFO]: Loaded 10 crates.
[13:16:27] [Server thread/INFO]: 
[13:16:27] [Server thread/INFO]: Plugin loaded successfully!
[13:16:27] [Server thread/INFO]: [Any questions or problems that may arise, contact us through
[13:16:27] [Server thread/INFO]: the website or our discord: https://phoenixplugins.com/discord]
[13:16:27] [Server thread/INFO]: 
[13:16:27] [Server thread/INFO]: [spark] Starting background profiler...
[13:16:27] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[13:16:27] [Server thread/INFO]: Done preparing level "Iris" (18.562s)
[13:16:27] [Server thread/INFO]: Running delayed init tasks
[13:16:27] [Craft Scheduler Thread - 9 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[13:16:27] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[13:16:27] [Craft Scheduler Thread - 10 - Essentials/INFO]: [Essentials] Získávání informací o verzi…
[13:16:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[13:16:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[13:16:27] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: 
[13:16:27] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: A newer version of DecentHolograms is available. Download it from: 
[13:16:27] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: - https://www.spigotmc.org/resources/96927/
[13:16:27] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: - https://modrinth.com/plugin/decentholograms
[13:16:27] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loaded 2 holograms!
[13:16:27] [Craft Scheduler Thread - 16 - GamerulesManager/INFO]: [GamerulesManager] There is a new update available.
[13:16:27] [Craft Scheduler Thread - 20 - PlayTime/INFO]: [PlayTime] Latest version is installed! - v3.6
[13:16:27] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: TonyVrtal (345741)
[13:16:27] [Server thread/INFO]: [Iris]: Server type & version: 1.21.1-2329-803bf62 (MC: 1.21.1)
[13:16:27] [Server thread/INFO]: [Iris]: Java: OpenJDK 64-Bit Server VM Azul Systems, Inc. (build 21.0.2+13-LTS)
[13:16:27] [Server thread/INFO]: [Iris]: Bukkit distro: Purpur
[13:16:27] [Server thread/INFO]: [Iris]: Custom Biomes: 103
[13:16:27] [Server thread/INFO]: [Iris]: Version Information: 1.21.1-2329-803bf62 (MC: 1.21.1) | 1.21.1-R0.1-SNAPSHOT
[13:16:27] [Server thread/INFO]: [Iris]: Custom Dimensions: 1
[13:16:27] [Craft Scheduler Thread - 34 - Vault/INFO]: [Vault] Checking for Updates ... 
[13:16:27] [Server thread/INFO]: [Iris]:   overworld v3910
[13:16:27] [Craft Scheduler Thread - 25 - AdvancedPets/INFO]: [AdvancedPets] Your license exceeded maximum number of unique IPs. Contact the developer for an enterprise license or connect using previously used IPs.
[13:16:27] [Craft Scheduler Thread - 34 - Vault/WARN]: [Vault] No files found, or Feed URL is bad.
[13:16:27] [Craft Scheduler Thread - 34 - Vault/INFO]: [Vault] No new version available
[13:16:27] [Server thread/INFO]: [Iris]: 
[13:16:27] [Server thread/INFO]: 
[13:16:27] [Server thread/INFO]:             @@@@@@@@@@@@@@@@@
[13:16:27] [Server thread/INFO]:          @@&&&&&&&&&&&&&&&   .(((()))).                     
[13:16:27] [Server thread/INFO]:         @@@&&&&&&&&&&&&&  .((((((())))))).                  
[13:16:27] [Server thread/INFO]:         @@@&&&&&&&&&&&&  ((((((((()))))))))                @
[13:16:27] [Server thread/INFO]:         @@@&&&&@@@@@&    ((((((((-)))))))))               @@
[13:16:27] [Server thread/INFO]:         @@@&&            ((((((({ }))))))))            &&@@@     Iris
[13:16:27] [Server thread/INFO]:         @@               ((((((((-)))))))))    &@@@@@&&&&@@@     by Volmit Software
[13:16:27] [Server thread/INFO]:         @                ((((((((()))))))))  &&&&&&&&&&&&@@@     v3.6.11-1.20.1-1.21.5
[13:16:27] [Server thread/INFO]:                           '((((((()))))))'  &&&&&&&&&&&&&@@@
[13:16:27] [Server thread/INFO]:                              '(((())))'   &&&&&&&&&&&&&&&@@
[13:16:27] [Server thread/INFO]:                                        @@@@@@@@@@@@@@@@@
[13:16:27] [Server thread/INFO]: [Iris]: Iris is running in Warning Mode
[13:16:27] [Server thread/INFO]: [Iris]: 1 Conflicts found
[13:16:27] [Server thread/INFO]: [Iris]: Unsupported Server JDK
[13:16:27] [Server thread/INFO]: [Iris]: - Please consider using JDK 21 Instead of JRE 21
[13:16:27] [Server thread/INFO]: [Iris]: 
[13:16:27] [Server thread/INFO]: [Iris]: --==< IMPORTANT >==--
[13:16:27] [Server thread/INFO]: [Iris]: Iris is running in warning mode which may cause the following issues:
[13:16:27] [Server thread/INFO]: [Iris]: - Data Loss
[13:16:27] [Server thread/INFO]: [Iris]: - Errors
[13:16:27] [Server thread/INFO]: [Iris]: - Broken worlds
[13:16:27] [Server thread/INFO]: [Iris]: - Unexpected behavior.
[13:16:27] [Server thread/INFO]: [Iris]: - And perhaps further complications.
[13:16:27] [Server thread/INFO]: [Iris]: CAUSE: Unsupported JDK
[13:16:27] [Server thread/INFO]: [Iris]: 
[13:16:27] [Server thread/INFO]: [AdvancedChat] 1
[13:16:27] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[13:16:28] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] Tvé vývojové sestavení EssentialsX je zastaralé o 39 verzí!
[13:16:28] [Craft Scheduler Thread - 10 - Essentials/WARN]: [Essentials] Ke stažení zde: https://essentialsx.net/downloads.html
[13:16:28] [Craft Scheduler Thread - 4 - TimeBar/INFO]: [TimeBar] You are running the latest version.
[13:16:28] [Craft Scheduler Thread - 6 - AdvancedChat/INFO]: [AdvancedChat] Loaded 3521 swear words.
[13:16:28] [Craft Scheduler Thread - 21 - ajParkour/INFO]: [ajParkour] You are up to date! (2.12.10)
[13:16:28] [Craft Scheduler Thread - 19 - DailyRewardsPlus/INFO]: [DailyRewards+] Successfully acquired all player data for LeaderBoard.
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 301 items
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] Used Blocks IDs:
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - REAL 0/188
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_NOTE 28/750
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - REAL_TRANSPARENT 0/63
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] Used Font Images: 880/6608
[13:16:28] [Server thread/INFO]: [Skript] Loading variables...
[13:16:28] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[13:16:28] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[13:16:28] [Server thread/INFO]: [Skript]     No scripts were found, maybe you should write some ;)
[13:16:28] [Server thread/INFO]: [Skript] Finished loading.
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [Content] Loaded 11 categories
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] [Content] Contents loaded successfully!
[13:16:28] [Server thread/INFO]: SUMC
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder] ResourcePack
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - Path: datapluginsItemsAdderoutputgenerated.zip
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - Download: http://pig.hostify.cz:41782/generated.zip
[13:16:28] [Craft Scheduler Thread - 17 - ItemsAdder/INFO]: [ItemsAdder]  - Size: 12 MB/250 MB (4%)
[13:16:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: BlockFly [1.0.0]
[13:16:29] [Server thread/INFO]: [Citizens] Loaded 32 NPCs.
[13:16:29] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[13:16:29] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[13:16:29] [Server thread/INFO]: [Lands] Added region provider: WorldGuard Type: SERVER
[13:16:29] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated Vault economy into economy system. Name: EssentialsX Economy
[13:16:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lands [7.15.19]
[13:16:29] [Server thread/INFO]: [Lands] [Integrations] Successfully registered placeholders at PlaceholderAPI. More info: https://wiki.incredibleplugins.com/lands/configuration/placeholderapi-placeholders
[13:16:29] [Server thread/INFO]: [Lands] [Integrations] Successfully integrated FastAsyncWorldEdit. 
[13:16:29] [Server thread/INFO]: [Lands] [Integrations] Successfully loaded LuckPerms contexts. More information: https://wiki.incredibleplugins.com/lands/permissions/luckperms-context
[13:16:29] [Server thread/INFO]: [Lands] [Economy] Next economic tasks (taxes, upkeep, nations upkeep) execution is in 9 hour(s), 43 minute(s), 30 second(s). Interval: 7 day(s)
[13:16:30] [Server thread/INFO]: [MineBlocks] Integration with plugin LuckPerms successfully enabled!
[13:16:30] [Server thread/INFO]: [MineBlocks] Integration with plugin DecentHolograms successfully enabled!
[13:16:30] [Server thread/INFO]: [MineBlocks] Integration with plugin Essentials successfully enabled!
[13:16:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mb [2.1.4]
[13:16:30] [Server thread/INFO]: [MineBlocks] Integration with plugin PlaceholderAPI successfully enabled!
[13:16:30] [Server thread/INFO]: [MineBlocks] Using DecentHolograms as hologram provider
[13:16:30] [Server thread/INFO]: [MineBlocks] Using LuckPerms as prefix provider
[13:16:30] [Server thread/WARN]: [MineBlocks] Block example could not be loaded: Invalid world world_name configured for block example
[13:16:30] [Server thread/INFO]: [MineBlocks] Loaded blocks from the config: 2, 3, 4, 5, DraciCoiny
[13:16:30] [Server thread/INFO]: [MineBlocks] MineBlocks enabled successfully!
[13:16:30] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 5.4.1, you're on: 5.3.2
[13:16:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iris [3.6.11-1.20.1-1.21.5]
[13:16:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[13:16:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[13:16:30] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs...
[13:16:30] [Server thread/INFO]: [ItemsAdder] Reloaded 0 ItemsAdder Custom Entities Citizens NPCs.
[13:16:30] [Server thread/INFO]: Done (46.587s)! For help, type "help"
[13:16:30] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2871ms or 57 ticks behind
[13:16:30] [Craft Scheduler Thread - 25 - ZombieApocalypse/INFO]: [ZombieApocalypse] Checking for updates...
[13:16:30] [Craft Scheduler Thread - 25 - ZombieApocalypse/INFO]: [ZombieApocalypse] Update detected! You are using version 1.4.11, but version 1.4.13 is available!
[13:16:30] [Craft Scheduler Thread - 25 - ZombieApocalypse/INFO]: [ZombieApocalypse] You can download the new version here -> https://www.spigotmc.org/resources/82106/updates
[13:16:31] [Craft Scheduler Thread - 26 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 9 ImageMaps!
[13:16:31] [Server thread/INFO]: [AdvancedChat] Successfully hooked into ProtocolLib, WorldGuard, PlaceholderAPI, Vault, LuckPerms, ViaVersion, ItemsAdder.
[13:16:31] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib, AdvancedEnchantments, WorldGuard, PlaceholderAPI, Lands, Essentials, Vault, LuckPerms, ViaVersion, ItemsAdder.
[13:16:31] [Server thread/INFO]: [AdvancedSkills] Successfully hooked into ProtocolLib, AdvancedEnchantments, AdvancedSkills, WorldGuard, PlaceholderAPI, Lands, Essentials, Vault, LuckPerms, ViaVersion, ItemsAdder.
[13:16:31] [Server thread/INFO]: [AdvancedJobs] Successfully hooked into ProtocolLib, AdvancedEnchantments, AdvancedSkills, WorldGuard, PlaceholderAPI, Lands, Essentials, Vault, LuckPerms, ViaVersion, ItemsAdder.
[13:16:31] [Server thread/INFO]: [AdvancedPets] Successfully hooked into ProtocolLib, AdvancedEnchantments, AdvancedSkills, WorldGuard, PlaceholderAPI, Lands, Essentials, Vault, LuckPerms, ViaVersion, TAB, ItemsAdder.
[13:16:31] [Craft Scheduler Thread - 9 - Iris/INFO]: [Iris]: Checking Data Packs...
[13:16:31] [Craft Scheduler Thread - 30 - AdvancedSkills/INFO]: [AdvancedSkills] You're using an outdated version of AdvancedSkills. A new version is available: 1.6.7
[13:16:31] [Craft Scheduler Thread - 30 - AdvancedSkills/INFO]: [AdvancedSkills] Keep your Advanced plugins up to date automatically with MintServers Unlimited Hosting: https://mintservers.com/
[13:16:31] [Craft Scheduler Thread - 19 - AdvancedPets/INFO]: [AdvancedPets] You're using an outdated version of AdvancedPets. A new version is available: 2.20.8
[13:16:31] [Craft Scheduler Thread - 19 - AdvancedPets/INFO]: [AdvancedPets] Keep your Advanced plugins up to date automatically with MintServers Unlimited Hosting: https://mintservers.com/
[13:16:32] [Craft Scheduler Thread - 9 - Iris/INFO]: [Iris]: Data Packs Setup!
[13:16:32] [ForkJoinPool.commonPool-worker-2/ERROR]: [PlaceholderAPI] Failed to load expansion Expansion_jobsmenu.jar (is a dependency missing?)
java.lang.NoClassDefFoundError: com/gamingmesh/jobs/container/Job
    at java.base/java.lang.Class.getDeclaredMethods0(Native Method) ~[?:?]
    at java.base/java.lang.Class.privateGetDeclaredMethods(Unknown Source) ~[?:?]
    at java.base/java.lang.Class.getDeclaredMethods(Unknown Source) ~[?:?]
    at PlaceholderAPI-2.11.6.jar/me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$findExpansionInFile$7(LocalExpansionManager.java:429) ~[PlaceholderAPI-2.11.6.jar:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(Unknown Source) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(Unknown Source) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinTask.doExec(Unknown Source) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(Unknown Source) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.scan(Unknown Source) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinPool.runWorker(Unknown Source) ~[?:?]
    at java.base/java.util.concurrent.ForkJoinWorkerThread.run(Unknown Source) ~[?:?]
Caused by: java.lang.ClassNotFoundException: com.gamingmesh.jobs.container.Job
    at java.base/java.net.URLClassLoader.findClass(Unknown Source) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]
    at java.base/java.lang.ClassLoader.loadClass(Unknown Source) ~[?:?]
    ... 11 more
[13:16:32] [Craft Scheduler Thread - 24 - Images/INFO]: [Images] Loaded 1 images...
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Grids
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 1 Dungeons
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Structures
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Entities
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Loot Tables
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Placed Structures
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 1 Scoreboards
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Loadouts
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Restrictions
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Objectives
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Backpacks
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Packages
[13:16:33] [Server thread/INFO]:     >> Dungeons loaded 0 Boosters
[13:16:33] [Server thread/INFO]: Dungeons loaded files after My_Worlds loaded
[13:16:35] [Server thread/INFO]: [UberEnchant] Found: 0 Registered UberEnchantments.
[13:16:35] [Server thread/INFO]: [UberEnchant] Loaded: 0 UberEnchantments.
[13:16:35] [Server thread/INFO]: [UberEnchant] Custom enchantment table mechanics are enabled
[13:16:35] [Server thread/INFO]: [UberEnchant] Custom anvil mechanics are enabled
[13:16:35] [ForkJoinPool.commonPool-worker-3/INFO]: [Lands] There is a new version available: 7.16.3
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [1.4.1]
[13:16:37] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: checkitem [2.7.5]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: parseother [2.0.0]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.3]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.7.1]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.6.1]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: utils [1.0.9]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: random [1.0.0]
[13:16:37] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion superbvote due to a missing plugin: SuperbVote
[13:16:37] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion multiverse due to a missing plugin: Multiverse-Core
[13:16:37] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to a missing plugin: VotingPlugin
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[13:16:37] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: nested [1.3.1]
[13:16:37] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion luckperms. Identifier is already in use.
[13:16:37] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion luckperms due to an unknown issue.
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[13:16:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.8.0]
[13:16:37] [Server thread/INFO]: 16 placeholder hook(s) registered! 7 placeholder hook(s) have an update available.