Paste #139611: Latest logs

Date: 2026/03/24 15:08:16 UTC+00: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


[16:01:46] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.10+7-LTS; Eclipse Adoptium Temurin-21.0.10+7) on Windows 11 10.0 (amd64)
[16:01:46] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.11-127-main@bd74bf6 (2026-03-10T02:55:23Z) for Minecraft 1.21.11
[16:01:47] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[16:01:47] [Paper Plugin Remapper Thread - 0/INFO]: [ReobfServer] Remapping server...
[16:01:51] [Paper Plugin Remapper Thread - 0/INFO]: [ReobfServer] Done remapping server in 3348ms.
[16:01:51] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins\Ersatz.jar'...
[16:01:51] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins\EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar'...
[16:01:51] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Remapping plugin 'plugins\Denizen-1.3.1-b7267-DEV.jar'...
[16:01:51] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins\EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar' in 458ms.
[16:01:51] [Paper Plugin Remapper Thread - 3/INFO]: [PluginRemapper] Done remapping plugin 'plugins\Denizen-1.3.1-b7267-DEV.jar' in 702ms.
[16:01:51] [ServerMain/ERROR]: [PluginRemapper] Encountered exception remapping plugins
java.util.concurrent.CompletionException: java.lang.RuntimeException: Failed to remap plugin jar 'plugins\Ersatz.jar'
    at java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:315) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:320) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:649) ~[?:?]
    at java.base/java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.RuntimeException: Failed to remap plugin jar 'plugins\Ersatz.jar'
    at io.papermc.paper.pluginremap.PluginRemapper.lambda$remap$7(PluginRemapper.java:362) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:646) ~[?:?]
    ... 4 more
Caused by: java.lang.RuntimeException: Failed to execute task com/pikachu/papiaddon/Main
    at net.neoforged.art.internal.AsyncHelper.invokeAll(AsyncHelper.java:56) ~[AutoRenamingTool-2.0.3.jar:?]
    at net.neoforged.art.internal.AsyncHelper.consumeAll(AsyncHelper.java:36) ~[AutoRenamingTool-2.0.3.jar:?]
    at net.neoforged.art.internal.RenamerImpl.run(RenamerImpl.java:161) ~[paper-1.21.11.jar:?]
    at net.neoforged.art.internal.RenamerImpl.run(RenamerImpl.java:79) ~[paper-1.21.11.jar:?]
    at io.papermc.paper.pluginremap.PluginRemapper.lambda$remap$7(PluginRemapper.java:359) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    ... 5 more
Caused by: java.util.concurrent.ExecutionException: java.lang.IllegalStateException: Duplicate key _$oe$_()V (attempted merging values public com/pikachu/papiaddon/Main/_$oe$_()V and public com/pikachu/papiaddon/Main/_$oe$_()V)
    at java.base/java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:?]
    at java.base/java.util.concurrent.FutureTask.get(FutureTask.java:191) ~[?:?]
    at net.neoforged.art.internal.AsyncHelper.invokeAll(AsyncHelper.java:52) ~[AutoRenamingTool-2.0.3.jar:?]
    ... 9 more
Caused by: java.lang.IllegalStateException: Duplicate key _$oe$_()V (attempted merging values public com/pikachu/papiaddon/Main/_$oe$_()V and public com/pikachu/papiaddon/Main/_$oe$_()V)
    at java.base/java.util.stream.Collectors.duplicateKeyException(Collectors.java:135) ~[?:?]
    at java.base/java.util.stream.Collectors.lambda$uniqKeysMapAccumulator$1(Collectors.java:182) ~[?:?]
    at java.base/java.util.stream.ReduceOps$3ReducingSink.accept(ReduceOps.java:169) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]
    at java.base/java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1708) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
    at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]
    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
    at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]
    at net.neoforged.art.internal.ClassProviderImpl$ClassInfo.<init>(ClassProviderImpl.java:115) ~[AutoRenamingTool-2.0.3.jar:?]
    at net.neoforged.art.internal.ClassProviderBuilderImpl.lambda$addClass$1(ClassProviderBuilderImpl.java:64) ~[AutoRenamingTool-2.0.3.jar:?]
    at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708) ~[?:?]
    at net.neoforged.art.internal.ClassProviderBuilderImpl.addClass(ClassProviderBuilderImpl.java:64) ~[AutoRenamingTool-2.0.3.jar:?]
    at net.neoforged.art.internal.RenamerImpl.lambda$run$2(RenamerImpl.java:162) ~[paper-1.21.11.jar:?]
    at net.neoforged.art.internal.AsyncHelper.lambda$null$0(AsyncHelper.java:33) ~[AutoRenamingTool-2.0.3.jar:?]
    at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317) ~[?:?]
    ... 3 more
[16:01:52] [ServerMain/INFO]: [BeautyQuests] Paper is using the Google mirror for Maven central repository, which lacks some artifacts.
BeautyQuests will use the default Maven central CDN until a better mirror has been found.

[16:01:52] [ServerMain/WARN]: [MavenLibraryResolver] Use of Maven Central as a CDN is against the Maven Central Terms of Service. Use MavenLibraryResolver.MAVEN_CENTRAL_DEFAULT_MIRROR instead.
java.lang.RuntimeException: Plugin used Maven Central for library resolution (central (https://repo1.maven.org/maven2/, default, releases+snapshots))
    at io.papermc.paper.plugin.loader.library.impl.MavenLibraryResolver.addRepository(MavenLibraryResolver.java:126) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at beautyquests-2.0.0.jar//fr.skytasul.quests.BeautyQuestsLoader.classloader(BeautyQuestsLoader.java:46) ~[?:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProviderFactory.build(SpigotPluginProviderFactory.java:59) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProviderFactory.build(SpigotPluginProviderFactory.java:28) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.provider.type.PluginFileType.register(PluginFileType.java:72) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.provider.source.FileProviderSource.registerProviders(FileProviderSource.java:95) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:63) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.provider.source.DirectoryProviderSource.registerProviders(DirectoryProviderSource.java:17) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.util.EntrypointUtil.registerProvidersFromSource(EntrypointUtil.java:15) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.PluginInitializerManager.load(PluginInitializerManager.java:113) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.Main.main(Main.java:108) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.PaperBootstrap.boot(PaperBootstrap.java:21) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at org.bukkit.craftbukkit.Main.main(Main.java:204) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paperclip.Paperclip.lambda$main$0(Paperclip.java:42) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[16:01:52] [ServerMain/INFO]: [BeautyQuests] Loading 8 libraries using Paper plugin loader...
[16:01:52] [ServerMain/INFO]: [PluginInitializerManager] Initialized 61 plugins
[16:01:52] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (4):
 - CrazyCrates (5.0.0), EconomyShopGUI-Premium (5.21.0), MarriageMaster (2.8.6), RoseStacker (1.5.39)
[16:01:52] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (57):
 - AdvancedRenamer (1.1), AdvancedSetSpawn (2.4), AuctionHouse (1.4.3), AuraSkills (2.3.10), AutoRestart (4.2.1), BanItem (3.3.3), BeautyQuests (2.0.0), BlockParticles (1.12), BottledExp (3.2.4.0), CMILib (1.5.8.9), ChangeSkin (3.0), Citizens (2.0.41-SNAPSHOT (build 4025)), CitizensGUI (1.11), ClearLag (3.2.2), ColorGradient (0.0.4), CommandSigns (2.2.0), CrazyEnchantments (2.7.1), Denizen (1.3.1-SNAPSHOT (build 7267-DEV)), EnchantControl_Reforged (1.2.5), Essentials (2.22.0-dev+74-d7452bf), EssentialsChat (2.22.0-dev+74-d7452bf), ExecutableItems (7.26.3.15), GHolo (2.3.2), GSit (3.2.1), HeadDatabase (4.22.2), IridiumSkyblock (4.1.2), JSONAPI (5.7.0), JetsMinions (7.12.3), LPC (3.2.0), LibsDisguises (11.0.16), LoginSecurity (3.2.0), Lores (1.4.1), LuckPerms (5.3.86), Multiverse-Core (4.3.1-b861), NBTAPI (2.15.5), PlaceholderAPI (2.12.2), PlayerParticles (8.11), PlayerPoints (3.3.3), ProtocolLib (5.4.1-SNAPSHOT-19cb81b), SCore (5.26.3.15), Sentinel (2.9.2-SNAPSHOT (build 527)), Shopkeepers (2.26.0), SimpleScore (4.1.0), SkQuery (4.3.2), SkinsRestorer (15.11.0), Skript (2.12.2), SpawnerMeta (25.5), TAB (5.5.0), TimeIsMoney (1.9.6.22), Vault (1.7.3-b131), Vegas (3.0.10), ViaVersion (5.7.2), WorldEdit (7.4.1+76eaf25bd), WorldGuard (7.0.15+2347-5fafea6), arcatest (1.0), packetevents (2.11.2), skript-placeholders (1.7.0)
[16:01:56] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, profilesHost=https://api.mojang.com, name=PROD]
[16:01:57] [ServerMain/INFO]: Loaded 1470 recipes
[16:01:57] [ServerMain/INFO]: Loaded 1584 advancements
[16:01:57] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Initialising converters for DataConverter...
[16:01:57] [ServerMain/INFO]: [ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry] Finished initialising converters for DataConverter in 310,1ms
[16:01:57] [Server thread/INFO]: Starting minecraft server version 1.21.11
[16:01:57] [Server thread/INFO]: Loading properties
[16:01:58] [Server thread/INFO]: This server is running Paper version 1.21.11-127-main@bd74bf6 (2026-03-10T02:55:23Z) (Implementing API version 1.21.11-R0.1-SNAPSHOT)
[16:01:58] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[16:01:58] [Server thread/INFO]: Server Ping Player Sample Count: 12
[16:01:58] [Server thread/INFO]: Using 4 threads for Netty based IO
[16:01:58] [Server thread/INFO]: [MoonriseCommon] Paper is using 4 worker threads, 1 I/O threads
[16:01:58] [Server thread/INFO]: Default game type: SURVIVAL
[16:01:58] [Server thread/INFO]: Generating keypair
[16:01:58] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25125
[16:01:58] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[16:01:58] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[16:01:58] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[16:02:03] [Server thread/WARN]: Legacy plugin AutoRestart v4.2.1 does not specify an api-version.
[16:02:03] [Server thread/WARN]: Legacy plugin AdvancedSetSpawn v2.4 does not specify an api-version.
[16:02:03] [Server thread/WARN]: Legacy plugin Lores v1.4.1 does not specify an api-version.
[16:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loading 2 libraries... please wait
[16:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\com\mysql\mysql-connector-j\9.1.0\mysql-connector-j-9.1.0.jar
[16:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\com\google\protobuf\protobuf-java\4.26.1\protobuf-java-4.26.1.jar
[16:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\xerial\sqlite-jdbc\3.46.0.0\sqlite-jdbc-3.46.0.0.jar
[16:02:03] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[16:02:03] [Server thread/WARN]: Legacy plugin JSONAPI v5.7.0 does not specify an api-version.
[16:02:03] [Server thread/WARN]: Legacy plugin ChangeSkin v3.0 does not specify an api-version.
[16:02:03] [Server thread/WARN]: [CrazyCrates] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 6 libraries... please wait
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\ch\ethz\globis\phtree\phtree\2.8.2\phtree-2.8.2.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\it\unimi\dsi\fastutil\8.5.16\fastutil-8.5.16.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\team\unnamed\mocha\3.0.0\mocha-3.0.0.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\javassist\javassist\3.30.2-GA\javassist-3.30.2-GA.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\bytebuddy\byte-buddy\1.14.12\byte-buddy-1.14.12.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\bytebuddy\byte-buddy-agent\1.14.12\byte-buddy-agent-1.14.12.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\mongodb\mongodb-driver-sync\4.8.1\mongodb-driver-sync-4.8.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\mongodb\bson\4.8.1\bson-4.8.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\mongodb\mongodb-driver-core\4.8.1\mongodb-driver-core-4.8.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\mongodb\bson-record-codec\4.8.1\bson-record-codec-4.8.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\redis\clients\jedis\4.3.1\jedis-4.3.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\apache\commons\commons-pool2\2.11.1\commons-pool2-2.11.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\json\json\20220320\json-20220320.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\com\google\code\gson\gson\2.8.9\gson-2.8.9.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loading 0 libraries... please wait
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\github\revxrsal\lamp.bukkit\4.0.0-rc.13\lamp.bukkit-4.0.0-rc.13.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\github\revxrsal\lamp.brigadier\4.0.0-rc.13\lamp.brigadier-4.0.0-rc.13.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\github\revxrsal\lamp.common\4.0.0-rc.13\lamp.common-4.0.0-rc.13.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\com\github\cryptomorin\XSeries\13.5.0\XSeries-13.5.0.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\com\zaxxer\HikariCP\6.0.0\HikariCP-6.0.0.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\fr\mrmicky\fastboard\2.1.5\fastboard-2.1.5.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-api\4.9.3\adventure-api-4.9.3.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-key\4.9.3\adventure-key-4.9.3.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\org\jetbrains\annotations\22.0.0\annotations-22.0.0.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-platform-bukkit\4.0.1\adventure-platform-bukkit-4.0.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-platform-api\4.0.1\adventure-platform-api-4.0.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-text-serializer-bungeecord\4.0.1\adventure-text-serializer-bungeecord-4.0.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-text-serializer-legacy\4.9.1\adventure-text-serializer-legacy-4.9.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-nbt\4.9.1\adventure-nbt-4.9.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-text-serializer-gson\4.9.1\adventure-text-serializer-gson-4.9.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.9.1\adventure-text-serializer-gson-legacy-impl-4.9.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-platform-facet\4.0.1\adventure-platform-facet-4.0.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\net\kyori\adventure-platform-viaversion\4.0.1\adventure-platform-viaversion-4.0.1.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [BeautyQuests] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\commons-lang\commons-lang\2.6\commons-lang-2.6.jar
[16:02:04] [Server thread/WARN]: [RoseStacker] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loading 1 libraries... please wait
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-all\4.1.118.Final\netty-all-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-buffer\4.1.118.Final\netty-buffer-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec\4.1.118.Final\netty-codec-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-dns\4.1.118.Final\netty-codec-dns-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-haproxy\4.1.118.Final\netty-codec-haproxy-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-http\4.1.118.Final\netty-codec-http-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-http2\4.1.118.Final\netty-codec-http2-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-memcache\4.1.118.Final\netty-codec-memcache-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-mqtt\4.1.118.Final\netty-codec-mqtt-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-redis\4.1.118.Final\netty-codec-redis-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-smtp\4.1.118.Final\netty-codec-smtp-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-socks\4.1.118.Final\netty-codec-socks-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-stomp\4.1.118.Final\netty-codec-stomp-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-codec-xml\4.1.118.Final\netty-codec-xml-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-common\4.1.118.Final\netty-common-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-handler\4.1.118.Final\netty-handler-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-native-unix-common\4.1.118.Final\netty-transport-native-unix-common-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-handler-proxy\4.1.118.Final\netty-handler-proxy-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-handler-ssl-ocsp\4.1.118.Final\netty-handler-ssl-ocsp-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-resolver\4.1.118.Final\netty-resolver-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-resolver-dns\4.1.118.Final\netty-resolver-dns-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport\4.1.118.Final\netty-transport-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-rxtx\4.1.118.Final\netty-transport-rxtx-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-sctp\4.1.118.Final\netty-transport-sctp-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-udt\4.1.118.Final\netty-transport-udt-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-classes-epoll\4.1.118.Final\netty-transport-classes-epoll-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-classes-kqueue\4.1.118.Final\netty-transport-classes-kqueue-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-resolver-dns-classes-macos\4.1.118.Final\netty-resolver-dns-classes-macos-4.1.118.Final.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-native-epoll\4.1.118.Final\netty-transport-native-epoll-4.1.118.Final-linux-x86_64.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-native-epoll\4.1.118.Final\netty-transport-native-epoll-4.1.118.Final-linux-aarch_64.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-native-epoll\4.1.118.Final\netty-transport-native-epoll-4.1.118.Final-linux-riscv64.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-native-kqueue\4.1.118.Final\netty-transport-native-kqueue-4.1.118.Final-osx-x86_64.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\libraries\io\netty\netty-transport-native-kqueue\4.1.118.Final\netty-transport-native-kqueue-4.1.118.Final-osx-aarch_64.jar
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\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
[16:02:04] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library C:\Users\alexa\Desktop\Arcadia MC\2 - Serveur DEV\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
[16:02:05] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[16:02:05] [Server thread/WARN]: [MarriageMaster] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[16:02:05] [Server thread/WARN]: [EconomyShopGUI-Premium] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[16:02:05] [Server thread/INFO]: [EnchantControl_Reforged] Loading server plugin EnchantControl_Reforged v1.2.5
[16:02:05] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.12.2
[16:02:05] [Server thread/INFO]: [AutoRestart] Loading server plugin AutoRestart v4.2.1
[16:02:05] [Server thread/INFO]: [AdvancedSetSpawn] Loading server plugin AdvancedSetSpawn v2.4
[16:02:05] [Server thread/INFO]: [arcatest] Loading server plugin arcatest v1.0
[16:02:05] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.7.2
[16:02:05] [Server thread/INFO]: [ViaVersion] ViaVersion 5.7.2 is now loaded. Registering protocol transformers and injecting...
[16:02:05] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading block connection mappings ...
[16:02:05] [Via-Mappingloader-1/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[16:02:06] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.15.5
[16:02:06] [Server thread/INFO]: [NBTAPI] Update check disabled
[16:02:06] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.11! Trying to find NMS support
[16:02:06] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R7' loaded!
[16:02:06] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[16:02:06] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.3.86
[16:02:06] [Server thread/INFO]: [ColorGradient] Loading server plugin ColorGradient v0.0.4
[16:02:06] [Server thread/INFO]: [AdvancedRenamer] Loading server plugin AdvancedRenamer v1.1
[16:02:06] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[16:02:06] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.8.9
[16:02:06] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.1-SNAPSHOT-19cb81b
[16:02:06] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[16:02:06] [Server thread/INFO]: [Lores] Loading server plugin Lores v1.4.1
[16:02:06] [Server thread/INFO]: [BottledExp] Loading server plugin BottledExp v3.2.4.0
[16:02:06] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.3.3
[16:02:06] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.5.3
[16:02:06] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.11.0
[16:02:06] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v1.4.3
[16:02:06] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.11.2
[16:02:07] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.2.0
[16:02:07] [Server thread/INFO]: [JSONAPI] Loading server plugin JSONAPI v5.7.0
[16:02:07] [Server thread/INFO]: [Vegas] Loading server plugin Vegas v3.0.10
[16:02:07] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.4.1+76eaf25bd
[16:02:08] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@eba958d]
[16:02:08] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.22.0-dev+74-d7452bf
[16:02:08] [Server thread/INFO]: [LoginSecurity] Loading server plugin LoginSecurity v3.2.0
[16:02:08] [Server thread/INFO]: [ChangeSkin] Loading server plugin ChangeSkin v3.0
[16:02:08] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.22.2
[16:02:08] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v11.0.16
[16:02:08] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.22.0-dev+74-d7452bf
[16:02:08] [Server thread/INFO]: [TimeIsMoney] Loading server plugin TimeIsMoney v1.9.6.22
[16:02:08] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.5.0
[16:02:08] [Server thread/INFO]: [SpawnerMeta] Loading server plugin SpawnerMeta v25.5
[16:02:08] [Server thread/INFO]: [BlockParticles] Loading server plugin BlockParticles v1.12
[16:02:08] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v5.0.0
[16:02:08] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.15+2347-5fafea6
[16:02:08] [Server thread/INFO]: [BanItem] Loading server plugin BanItem v3.3.3
[16:02:08] [Server thread/INFO]: [GSit] Loading server plugin GSit v3.2.1
[16:02:08] [Server thread/INFO]: [CrazyEnchantments] Loading server plugin CrazyEnchantments v2.7.1
[16:02:08] [Server thread/INFO]: [SimpleScore] Loading server plugin SimpleScore v4.1.0
[16:02:09] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.12.2
[16:02:09] [Server thread/INFO]: [SkQuery] Loading server plugin SkQuery v4.3.2
[16:02:09] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.41-SNAPSHOT (build 4025)
[16:02:09] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.9.2-SNAPSHOT (build 527)
[16:02:09] [Server thread/INFO]: [skript-placeholders] Loading server plugin skript-placeholders v1.7.0
[16:02:09] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.11
[16:02:09] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.3.10
[16:02:09] [Server thread/INFO]: [CitizensGUI] Loading server plugin CitizensGUI v1.11
[16:02:09] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.3.1-SNAPSHOT (build 7267-DEV)
[16:02:09] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v2.0.0
[16:02:09] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.39
[16:02:09] [Server thread/INFO]: [IridiumSkyblock] Loading server plugin IridiumSkyblock v4.1.2
[16:02:09] [Server thread/INFO]: [IridiumSkyblock] GENERATOR TYPE: VOID
[16:02:10] [Server thread/INFO]: [IridiumSkyblock] Loading world generator...
[16:02:10] [Server thread/INFO]: [IridiumSkyblock] Generator Type = VOID
[16:02:10] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[16:02:10] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.26.0
[16:02:10] [Server thread/INFO]: [Shopkeepers] Compatibility provider loaded: 1_21_R9_paper
[16:02:10] [Server thread/INFO]: [Shopkeepers] Loading config.
[16:02:10] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[16:02:10] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[16:02:10] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[16:02:10] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[16:02:10] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'MUSHROOM_COW' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'MOOSHROOM'.
[16:02:10] [Server thread/WARN]: [Shopkeepers] Config: Ignoring mob type 'SNOWMAN' in setting 'enabled-living-shops'. This mob was renamed in MC 1.20.5: Consider replacing it with 'SNOW_GOLEM'.
[16:02:10] [Server thread/WARN]: [Shopkeepers] Config: All existing entity type names can be found here: https://hub.spigotmc.org/javadocs/spigot/org/bukkit/entity/EntityType.html
[16:02:10] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[16:02:10] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[16:02:10] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (233 ms).
[16:02:10] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.26.3.15
[16:02:10] [Server thread/INFO]: [GHolo] Loading server plugin GHolo v2.3.2
[16:02:10] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.8.6
[16:02:10] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v7.26.3.15
[16:02:10] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.21.0
[16:02:10] [Server thread/INFO]: [CommandSigns] Loading server plugin CommandSigns v2.2.0
[16:02:10] [Server thread/INFO]: [JetsMinions] Loading server plugin JetsMinions v7.12.3
[16:02:10] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[16:02:10] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.3.86
[16:02:15] [Server thread/INFO]:         __    
[16:02:15] [Server thread/INFO]:   |    |__)   LuckPerms v5.3.86
[16:02:15] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[16:02:15] [Server thread/INFO]: 
[16:02:15] [Server thread/INFO]: [LuckPerms] Loading configuration...
[16:02:18] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[16:02:20] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[16:02:21] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[16:02:21] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 8519ms)
[16:02:21] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.1-SNAPSHOT-19cb81b
[16:02:21] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[16:02:21] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[16:02:21] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[16:02:21] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[16:02:21] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[16:02:21] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.3.3
[16:02:22] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[16:02:22] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.11.0
[16:02:23] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.11.
[16:02:24] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[16:02:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.11.0]
[16:02:24] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[16:02:24] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.4.1+76eaf25bd
[16:02:24] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.11.0
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: 52f31ab
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[16:02:25] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[16:02:25] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[16:02:26] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21_11.PaperweightAdapter as the Bukkit adapter
[16:02:26] [Server thread/INFO]: Preparing level "world"
[16:02:26] [Server thread/INFO]: Loading 25 persistent chunks for world 'minecraft:overworld'...
[16:02:26] [Server thread/INFO]: Preparing spawn area: 28%
[16:02:27] [Server thread/INFO]: Prepared spawn area in 549 ms
[16:02:27] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:the_nether'...
[16:02:27] [Server thread/INFO]: Prepared spawn area in 2 ms
[16:02:27] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:the_end'...
[16:02:27] [Server thread/INFO]: Prepared spawn area in 0 ms
[16:02:27] [Server thread/INFO]: Done preparing level "world" (1.130s)
[16:02:27] [Server thread/INFO]: [EnchantControl_Reforged] Enabling EnchantControl_Reforged v1.2.5
[16:02:27] [Server thread/INFO]: Enchant Control starting...
[16:02:27] [Server thread/INFO]: CommandManager OnEnable
[16:02:27] [Server thread/INFO]: ListenerManager OnEnable
[16:02:27] [Server thread/INFO]: Enchant Control started !
[16:02:27] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.12.2
[16:02:27] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[16:02:27] [Server thread/INFO]: [AutoRestart] Enabling AutoRestart v4.2.1*
[16:02:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: autorestart [4.2.1]
[16:02:28] [Server thread/INFO]: [AutoRestart] Loaded
[16:02:28] [Server thread/INFO]: [AdvancedSetSpawn] Enabling AdvancedSetSpawn v2.4*
[16:02:28] [Server thread/INFO]: [arcatest] Enabling arcatest v1.0
[16:02:28] [Server thread/INFO]: [arcatest] [STDOUT] Lancement du plugin ArcaAide
[16:02:28] [Server thread/WARN]: Nag author(s): '[Aio13]' of 'arcatest v1.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:02:28] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.7.2
[16:02:28] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.11 (774)
[16:02:28] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[16:02:28] [Server thread/WARN]: [ViaVersion] ViaVersion only supports newer client versions. Use ViaBackwards to allow older versions (ViaRewind for 1.7/1.8) to join.
[16:02:28] [Server thread/WARN]: [ViaVersion] Get setup help at https://viaversion.com/setup or download ViaBackwards/ViaRewind directly at https://ci.viaversion.com/
[16:02:28] [Server thread/WARN]: [ViaVersion] Need more help? Join our Discord at https://viaversion.com/discord
[16:02:28] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.15.5
[16:02:28] [Server thread/INFO]: [NBTAPI] Checking bindings...
[16:02:28] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[16:02:28] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[16:02:28] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[16:02:28] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[16:02:28] [Server thread/INFO]: [ColorGradient] Enabling ColorGradient v0.0.4
[16:02:28] [Server thread/INFO]: Registered 2 languages successfully !
[16:02:28] [Server thread/INFO]:  
[16:02:28] [Server thread/INFO]:  ___  ____ 
[16:02:28] [Server thread/INFO]:  |    | __     >- ColorGradient
[16:02:28] [Server thread/INFO]:  |__  |__|     >- Running in Spigot - Paper v0.0.4
[16:02:28] [Server thread/INFO]:  
[16:02:28] [Server thread/INFO]: [AdvancedRenamer] Enabling AdvancedRenamer v1.1
[16:02:28] [Server thread/INFO]: --------------------------------- 
[16:02:28] [Server thread/INFO]: Advanced item renamer by Potassio
[16:02:28] [Server thread/INFO]: ----------------------------------
[16:02:28] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[16:02:28] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[16:02:28] [Server thread/INFO]: [ClearLag] Loading modules...
[16:02:28] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (Index 3 out of bounds for length 3)
[16:02:28] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[16:02:28] [Server thread/WARN]: [ClearLag] Invalid entity type specified path="command-remove.remove-entities" value=Baby_zombie
[16:02:28] [Server thread/WARN]: [ClearLag] Invalid entity type specified path="auto-removal.remove-entities" value=Baby_zombie
[16:02:28] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[16:02:28] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[16:02:28] [Thread-82/WARN]: [ClearLag] Clearlag failed to check for updates - bukkit may be down
[16:02:28] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.8.9
[16:02:28] [Thread-82/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[16:02:28] [Thread-82/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.Util.getBukkitVersion(Util.java:105)
[16:02:28] [Thread-82/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.updateAvailable(BukkitUpdater.java:32)
[16:02:28] [Thread-82/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.run(BukkitUpdater.java:82)
[16:02:28] [Thread-82/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:02:28] [Server thread/INFO]: Server version: v1_21_R7 - 1.21.11 - paper  1.21.11-127-bd74bf6 (MC: 1.21.11)
[16:02:28] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, profilesHost=https://api.mojang.com, name=PROD]
[16:02:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.8.9]
[16:02:28] [Server thread/INFO]: PlaceholderAPI hooked.
[16:02:29] [Server thread/INFO]: Updated (EN) language file. Took 25ms
[16:02:29] [Server thread/INFO]: [Lores] Enabling Lores v1.4.1*
[16:02:29] [Server thread/INFO]: [Lores] Lores 1.4.1 (Build 45) is enabled!
[16:02:29] [Server thread/INFO]: [BottledExp] Enabling BottledExp v3.2.4.0
[16:02:29] [Server thread/INFO]: [BottledExp] Version 3.2.4.0 has been enabled
[16:02:29] [Server thread/INFO]: [BottledExp] Using LuckPerms via Vault.
[16:02:29] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v1.4.3
[16:02:29] [Server thread/INFO]: [AuctionHouse] AuctionHouse enabled in 75ms
[16:02:29] [Server thread/INFO]: [packetevents] Enabling packetevents v2.11.2
[16:02:29] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[16:02:29] [Server thread/INFO]: [LPC] Enabling LPC v3.2.0
[16:02:29] [Server thread/INFO]: [LPC] Hooked into PlaceholderAPI.
[16:02:29] [Server thread/INFO]: [JSONAPI] Enabling JSONAPI v5.7.0*
[16:02:29] [Server thread/ERROR]: Error occurred while enabling JSONAPI v5.7.0 (Is it up to date?)
java.lang.NoSuchMethodError: 'java.lang.String org.bukkit.Server.getServerName()'
    at JSONAPI-mc1.12-R0.1.jar//com.alecgorge.minecraft.jsonapi.JSONAPI._$oe$_(JSONAPI.java:435) ~[?:?]
    at JSONAPI-mc1.12-R0.1.jar//com.alecgorge.minecraft.jsonapi.JSONAPI.onEnable(JSONAPI.java) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:207) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:636) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:365) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[16:02:29] [Server thread/INFO]: [JSONAPI] Disabling JSONAPI v5.7.0
[16:02:29] [Server thread/INFO]: [Vegas] Enabling Vegas v3.0.10
[16:02:29] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.11.2)
[16:02:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vegas [3.0]
[16:02:29] [Server thread/INFO]: 
[16:02:29] [Server thread/INFO]:  __   _____ ___   _   ___ 
[16:02:29] [Server thread/INFO]:  \ \ / / __/ __| /_\ / __|
[16:02:29] [Server thread/INFO]:   \ V /| _| (_ |/ _ \\__ \
[16:02:29] [Server thread/INFO]:    \_/ |___\___/_/ \_\___/
[16:02:29] [Server thread/INFO]: 
[16:02:29] [Server thread/INFO]: The plugin adds a variety of popular game modes that you can play alone, with other players, or against each other!
[16:02:29] [Server thread/INFO]: Version: 3.0.10
[16:02:29] [Server thread/INFO]: Author: MineShimado
[16:02:29] [Server thread/INFO]:  
[16:02:29] [Server thread/INFO]: [Essentials] Enabling Essentials v2.22.0-dev+74-d7452bf
[16:02:29] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[16:02:29] [Server thread/INFO]: [Essentials] No kits found to migrate.
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Legacy Biome Name Provider as the provider for BiomeNameProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Paper 1.13+ Tile Entity Provider as the provider for TileEntityProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[16:02:29] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[16:02:29] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[16:02:30] [Server thread/INFO]: [Essentials] Using locale fr
[16:02:30] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[16:02:30] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[16:02:30] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[16:02:30] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[16:02:30] [Server thread/INFO]: [LoginSecurity] Enabling LoginSecurity v3.2.0
[16:02:30] [Server thread/INFO]: [LoginSecurity] Loading base translations from "en_us"
[16:02:30] [Server thread/INFO]: [LoginSecurity] Loading specified translations from "fr_fr"
[16:02:30] [Server thread/INFO]: [LoginSecurity] Registering commands...
[16:02:30] [Server thread/INFO]: [LoginSecurity] Registering listeners...
[16:02:30] [Server thread/WARN]: [LoginSecurity] "LoginSecurity v3.2.0" has registered a listener for org.spigotmc.event.player.PlayerSpawnLocationEvent on method "public void com.lenis0012.bukkit.loginsecurity.modules.general.PlayerListener.onPlayerSpawn(org.spigotmc.event.player.PlayerSpawnLocationEvent)", but the event is Deprecated. "Listening to this event causes the player to be created early. Using the player from this event will result in undefined behavior. Prefer AsyncPlayerSpawnLocationEvent."; please notify the authors [lenis0012].
[16:02:30] [Server thread/INFO]: [LoginSecurity] Using 1.12+ map captcha renderer
[16:02:30] [Server thread/INFO]: [ChangeSkin] Enabling ChangeSkin v3.0*
[16:02:30] [Server thread/ERROR]: Error occurred while enabling ChangeSkin v3.0 (Is it up to date?)
java.lang.ExceptionInInitializerError
    at ChangeSkin-S21469-207217.jar//com.github.games647.changeskin.bukkit.ChangeSkinBukkit.registerCommands(ChangeSkinBukkit.java:137) ~[?:?]
    at ChangeSkin-S21469-207217.jar//com.github.games647.changeskin.bukkit.ChangeSkinBukkit._$oe$_(ChangeSkinBukkit.java:48) ~[?:?]
    at ChangeSkin-S21469-207217.jar//com.github.games647.changeskin.bukkit.ChangeSkinBukkit.onEnable(ChangeSkinBukkit.java) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:207) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:636) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:365) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
    at ChangeSkin-S21469-207217.jar//com.github.games647.changeskin.bukkit.commands.SkullCommand.getServerVersion(SkullCommand.java:110) ~[?:?]
    at ChangeSkin-S21469-207217.jar//com.github.games647.changeskin.bukkit.commands.SkullCommand.<clinit>(SkullCommand.java:36) ~[?:?]
    ... 14 more
[16:02:30] [Server thread/INFO]: [ChangeSkin] Disabling ChangeSkin v3.0
[16:02:30] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.22.2
[16:02:30] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[16:02:30] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[16:02:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.22.2]
[16:02:30] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v11.0.16
[16:02:30] [Server thread/ERROR]: [LibsDisguises] Hi, this is libraryaddict from Lib's Disguises. It appears that another plugin has injected malware into Lib's Disguises. As soon as it started on your server, it detected 4 unknown files were added to the jar. Please redownload Lib's Disguises from a trusted source such as SpigotMC. If this warning persists after updating, you can try https://www.spigotmc.org/resources/spigot-anti-malware.64982/, but you will most likely need to reinstall all your plugins, jars, and related files, as a single infected plugin can compromise everything.
[16:02:30] [Server thread/ERROR]: [LibsDisguises] This usually happens when a server owner installs third-party plugins from untrusted sources. Lib's Disguises only detects its own infection and cannot tell which other plugins are infected. You can confirm the infection by checking that the jar in your plugins folder is larger than the version downloaded from SpigotMC. There is no shortcut, redownload all plugins from trusted sources and avoid shady downloads.
[16:02:30] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.27-Free.jar
[16:02:30] [Server thread/INFO]: [LibsDisguises] Discovered nms version (LD: v1_21_R7) (MC: 1.21.11)
[16:02:30] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1760
[16:02:30] [Server thread/INFO]: [LibsDisguises] Build Date: 13/03/2026 07:21
[16:02:30] [Server thread/INFO]: [LibsDisguises] Build Hash: 5fb890cd~1
[16:02:30] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[16:02:30] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[16:02:30] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Loading block mappings for V_1_21_9/20...
[16:02:30] [Server thread/INFO]: [com.github.retrooper.packetevents.PacketEventsAPI] Finished loading block mappings for V_1_21_9/20 in 214.7792ms
[16:02:31] [Folia Async Scheduler Thread #3/INFO]: [HeadDatabase] Invalid Head found in Database: 122729
[16:02:31] [Folia Async Scheduler Thread #3/INFO]: [HeadDatabase] Successfully loaded 91302 heads!
[16:02:31] [Folia Async Scheduler Thread #3/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[16:02:31] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[16:02:31] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise infecté_arene
[16:02:31] [Server thread/INFO]: [LibsDisguises] Loaded 2 custom disguises
[16:02:31] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[16:02:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: libsdisguises [1.0.0]
[16:02:31] [Server thread/INFO]: [LibsDisguises] PlaceholderAPI support enabled
[16:02:31] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.22.0-dev+74-d7452bf
[16:02:31] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[16:02:31] [Server thread/INFO]: [TimeIsMoney] Enabling TimeIsMoney v1.9.6.22
[16:02:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tim [1.9.6.22]
[16:02:31] [Server thread/INFO]: [TimeIsMoney] Loaded 5 Payouts!
[16:02:31] [Server thread/INFO]: Time is Money: Essentials found. Hook in it -> Will use Essentials's AFK feature if afk is enabled.
[16:02:31] [Server thread/INFO]: Time is Money v1.9.6.22 started.
[16:02:31] [Server thread/INFO]: [TAB] Enabling TAB v5.5.0
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [config.yml] scoreboard-teams: Missing configuration section "scoreboard-teams.can-see-friendly-invisibles" of type Boolean, using default value false.
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [config.yml] proxy-support: Missing configuration section "proxy-support.type" of type String, using default value PLUGIN.
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [config.yml] proxy-support.plugin: Missing configuration section "proxy-support.plugin.name" of type String, using default value RedisBungee.
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [config.yml] proxy-support.redis: Missing configuration section "proxy-support.redis.url" of type String, using default value redis://:password@localhost:6379/0.
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [config.yml] proxy-support.rabbitmq: Missing configuration section "proxy-support.rabbitmq.exchange" of type String, using default value plugin.
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [config.yml] proxy-support.rabbitmq: Missing configuration section "proxy-support.rabbitmq.url" of type String, using default value amqp://guest:guest@localhost:5672/%2F.
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "header" defined for group "example_group". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix]
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "footer" defined for group "example_group". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix]
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [groups.yml] Unknown property "customtagname" defined for group "_DEFAULT_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix]
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "abovename" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix]
[16:02:31] [Server thread/INFO]: [TAB] [WARN] [users.yml] Unknown property "belowname" defined for user "_NEZNAMY_". Valid properties: [tagprefix, tagsuffix, tabprefix, customtabname, tabsuffix]
[16:02:31] [Server thread/INFO]: [TAB] [WARN] Found a total of 11 issues.
[16:02:31] [Server thread/INFO]: [TAB] Enabled in 154ms
[16:02:31] [Server thread/INFO]: [SpawnerMeta] Enabling SpawnerMeta v25.5
[16:02:31] [Server thread/INFO]: [SpawnerMeta v25.4] enabled!
[16:02:31] [Server thread/INFO]: [SpawnerMeta] Vault has been found, economy enabled!
[16:02:31] [Server thread/INFO]: [SpawnerMeta] PlayerPoints has been found, player points enabled!
[16:02:32] [Server thread/INFO]: [BlockParticles] Enabling BlockParticles v1.12
[16:02:32] [Server thread/INFO]: [BlockParticles] Loading the config.yml
[16:02:32] [Server thread/INFO]: [BlockParticles] Successfully loaded config.yml
[16:02:32] [Server thread/INFO]: [BlockParticles] Loading the data.yml
[16:02:32] [Server thread/INFO]: [BlockParticles] Successfully loaded data.yml
[16:02:32] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v5.0.0
[16:02:32] [ForkJoinPool.commonPool-worker-1/ERROR]: Failed to read field (Id=[I;67411088,-739686879,-1666252800,-1432091531]): Not a string
[16:02:32] [ForkJoinPool.commonPool-worker-1/ERROR]: Failed to read field (Id=[I;-1288600659,-373273272,-1897203511,898446696]): Not a string
[16:02:32] [ForkJoinPool.commonPool-worker-1/ERROR]: Failed to read field (Id=[I;-1288600659,-373273272,-1897203511,898446696]): Not a string
[16:02:32] [ForkJoinPool.commonPool-worker-1/ERROR]: Failed to read field (Id=[I;67411088,-739686879,-1666252800,-1432091531]): Not a string
[16:02:32] [ForkJoinPool.commonPool-worker-1/ERROR]: Failed to read field (Id=[I;67411088,-739686879,-1666252800,-1432091530]): Not a string
[16:02:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: crazycrates [5.0.0]
[16:02:32] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.15+2347-5fafea6
[16:02:32] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[16:02:32] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[16:02:32] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[16:02:32] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[16:02:32] [Server thread/INFO]: [WorldGuard] Loading region data...
[16:02:32] [Server thread/INFO]: [BanItem] Enabling BanItem v3.3.3
[16:02:32] [Server thread/INFO]: [GSit] Enabling GSit v3.2.1
[16:02:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [3.2.1]
[16:02:32] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[16:02:32] [Server thread/INFO]: [GSit] Le plugin a été activé avec succès.
[16:02:32] [Server thread/INFO]: [GSit] Lien avec PlaceholderAPI réussi !
[16:02:32] [Server thread/INFO]: [GSit] Lien avec WorldGuard réussi !
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Enabling CrazyEnchantments v2.7.1
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Loading the config.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded config.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Loading the BlockList.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded BlockList.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Loading the HeadMap.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded HeadMap.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Loading the Data.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Data.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantments.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantments.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Loading the GKitz.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded GKitz.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Loading the Messages.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Messages.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Loading the Enchantment-Types.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Enchantment-Types.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Loading the Tinker.yml
[16:02:32] [Server thread/INFO]: [CrazyEnchantments] Successfully loaded Tinker.yml
[16:02:33] [Server thread/INFO]: [Arcadia]»=== CrazyEnchantment Hook Status ===
[16:02:33] [Server thread/INFO]: [Arcadia]»GRIEF_PREVENTION NOT FOUND
[16:02:33] [Server thread/INFO]: [Arcadia]»SUPERIORSKYBLOCK NOT FOUND
[16:02:33] [Server thread/INFO]: [Arcadia]»WORLDGUARD FOUND
[16:02:33] [Server thread/INFO]: [Arcadia]»PLOT_SQUARED NOT FOUND
[16:02:33] [Server thread/INFO]: [Arcadia]»MCMMO NOT FOUND
[16:02:33] [Server thread/INFO]: [Arcadia]»FACTIONS_UUID NOT FOUND
[16:02:33] [Server thread/INFO]: [Arcadia]»LANDS NOT FOUND
[16:02:33] [Server thread/INFO]: [Arcadia]»TOWNYADVANCED NOT FOUND
[16:02:33] [Server thread/INFO]: [Arcadia]»VAULT FOUND
[16:02:33] [Server thread/INFO]: [Arcadia]»WORLDEDIT FOUND
[16:02:33] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v4.1.0
[16:02:33] [Server thread/INFO]: [Skript] Enabling Skript v2.12.2
[16:02:33] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.14.3 (you're currently running 2.12.2)
[16:02:33] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: https://github.com/SkriptLang/Skript/releases/download/2.14.3/Skript-2.14.3.jar
[16:02:34] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[16:02:34] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.3.2
[16:02:34] [Server thread/INFO]: [skQuery] Beginning to process a total of 152 from SkQuery
[16:02:34] [Server thread/INFO]: [skQuery] com.skquery.skquery.elements.effects.base.OptionsPragma is patternless and failed to register. This is most likely a code error.
[16:02:34] [Server thread/INFO]: [skQuery] com.skquery.skquery.elements.effects.base.Pragma is patternless and failed to register. This is most likely a code error.
[16:02:34] [Server thread/INFO]: [skQuery] Out of 152 classes, 102 classes were loaded from SkQuery
[16:02:34] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.41-SNAPSHOT (build 4025)
[16:02:34] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] Loaded 5684 aliases in 699ms
[16:02:35] [Server thread/INFO]: [Citizens] La langue du système détectée est: [[fr]]. Si vous le souhaitez, vous pouvez contribuer à la traduction de Citizens sur notre Discord! https://discord.gg/Q6pZGSR
[16:02:35] [Server thread/INFO]: [Citizens] Loaded 2 templates.
[16:02:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizens [1.0.0]
[16:02:35] [Server thread/INFO]: [Citizens] Chargement de la gestion de l'économie via Vault.
[16:02:35] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.9.2-SNAPSHOT (build 527)
[16:02:35] [Server thread/INFO]: [Sentinel] Sentinel loading...
[16:02:35] [Server thread/INFO]: [Sentinel] Running on java version: 21.0.10
[16:02:35] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[16:02:35] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[16:02:35] [Server thread/INFO]: [Sentinel] Sentinel found WorldGuard! Adding support for it!
[16:02:35] [Server thread/ERROR]: [Citizens] Impossible de récupérer le champ NMS ce\: [[ce.
[16:02:35] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.reflect.Field.setAccessible(boolean)" because "dataWatcherAngryField" is null
[16:02:35] [Server thread/WARN]:     at Sentinel-2.9.2-SNAPSHOT-b527.jar//org.mcmonkey.sentinel.utilities.SentinelNMSHelper.init(SentinelNMSHelper.java:118)
[16:02:35] [Server thread/WARN]:     at Sentinel-2.9.2-SNAPSHOT-b527.jar//org.mcmonkey.sentinel.SentinelPlugin._$oe$_(SentinelPlugin.java:472)
[16:02:35] [Server thread/WARN]:     at Sentinel-2.9.2-SNAPSHOT-b527.jar//org.mcmonkey.sentinel.SentinelPlugin.onEnable(SentinelPlugin.java)
[16:02:35] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[16:02:35] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:207)
[16:02:35] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[16:02:35] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[16:02:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:639)
[16:02:35] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:596)
[16:02:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.initPostWorld(MinecraftServer.java:636)
[16:02:35] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:365)
[16:02:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1253)
[16:02:35] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388)
[16:02:35] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[16:02:35] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[16:02:35] [Server thread/INFO]: [skript-placeholders] Enabling skript-placeholders v1.7.0
[16:02:35] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.11
[16:02:35] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[16:02:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.11]
[16:02:35] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.3.10
[16:02:36] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[16:02:37] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[16:02:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.3.10]
[16:02:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.3.10]
[16:02:37] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[16:02:37] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[16:02:37] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[16:02:37] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[16:02:37] [Server thread/INFO]: [AuraSkills] Loaded 160 config options in 83 ms
[16:02:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.11! Trying to find NMS support
[16:02:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R7' loaded!
[16:02:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[16:02:37] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[16:02:37] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[16:02:37] [Server thread/INFO]: [CitizensGUI] Enabling CitizensGUI v1.11
[16:02:37] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.1-SNAPSHOT (build 7267-DEV)
[16:02:37] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1413), impl for Spigot v1.3.1-SNAPSHOT (build 7267-DEV) 
[16:02:37] [Server thread/INFO]: +> [Denizen] Running on java version: 21.0.10 
[16:02:37] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 21. 
[16:02:37] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[16:02:37] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[16:02:37] [Server thread/INFO]: +> [Denizen]  
[16:02:37] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[16:02:37] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[16:02:37] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[16:02:37] [Server thread/INFO]: +> [Denizen] version: 1.3.1-SNAPSHOT (build 7267-DEV) 
[16:02:37] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[16:02:38] [Server thread/INFO]: +> [Denizen] Legacy Spigot name support enabled. This may be unnecessary; see config.yml for more information. 
[16:02:38] [Server thread/INFO]: +> [TriggerRegistry] Loaded 4 core triggers 
[16:02:38] [Server thread/INFO]: +> [PaperModule] Loading Paper support module... 
[16:02:38] [Server thread/INFO]: +> [Denizen] Loaded 153 core commands and 30 core object types, at 1473ms from start. 
[16:02:38] [Server thread/INFO]: +> [ScriptHelper] No scripts in /plugins/Denizen/scripts/ to load! 
[16:02:38] [Server thread/INFO]: +> [ScriptRegistry] Loading 0 script files... 
[16:02:38] [Server thread/INFO]: +> [DenizenCore] Scripts loaded! File load took 1ms, processing 70ms. 
[16:02:38] [Server thread/INFO]: +> [Denizen] Final full init took 1572ms. 
[16:02:39] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v2.0.0
[16:02:39] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[16:02:39] [Server thread/INFO]: [BeautyQuests] Loaded valid Paper internals access.
[16:02:39] [Server thread/WARN]: [BeautyQuests] The file is not fully translated! 5 missing translations.
[16:02:39] [Server thread/INFO]: [BeautyQuests] Loaded language fr_FR (0.018s)!
[16:02:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beautyquests [2.0.0]
[16:02:39] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[16:02:39] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.integrations.worldguard.WorldGuardEntryHandler
[16:02:39] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.39
[16:02:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.39]
[16:02:40] [Server thread/INFO]: [IridiumSkyblock] Enabling IridiumSkyblock v4.1.2
[16:02:40] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:iridiumskyblock'...
[16:02:40] [Server thread/INFO]: Prepared spawn area in 1 ms
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) TNT ignition is PERMITTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Lighters are PERMITTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Lava fire is PERMITTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Fire spread is UNRESTRICTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock'
[16:02:40] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:iridiumskyblock_nether'...
[16:02:40] [Server thread/INFO]: Prepared spawn area in 1 ms
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) TNT ignition is PERMITTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Lighters are PERMITTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Lava fire is PERMITTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Fire spread is UNRESTRICTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock_nether'
[16:02:40] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:iridiumskyblock_the_end'...
[16:02:40] [Server thread/INFO]: Prepared spawn area in 0 ms
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) TNT ignition is PERMITTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) Lighters are PERMITTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) Lava fire is PERMITTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) Fire spread is UNRESTRICTED.
[16:02:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock_the_end'
[16:02:40] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'IridiumSkyblock_the_end'
[16:02:40] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'IridiumSkyblock_the_end'
[16:02:40] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'IridiumSkyblock_the_end'
[16:02:40] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'IridiumSkyblock_the_end' in 0,00s
[16:02:40] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk I/O to halt for world 'IridiumSkyblock_the_end'
[16:02:40] [Server thread/INFO]: [ChunkHolderManager] Halted I/O scheduler for world 'IridiumSkyblock_the_end'
[16:02:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.11! Trying to find NMS support
[16:02:40] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(1.21.11-R0.1-SNAPSHOT) is not supported by this NBT-API Version(2.15.3) located in IridiumSkyblock. The NBT-API will try to work as good as it can! Some functions may not work!
[16:02:40] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'IridiumSkyblock' to create a bStats instance!
[16:02:40] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:iridiumskyblock_the_end'...
[16:02:40] [Server thread/INFO]: Prepared spawn area in 0 ms
[16:02:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iridiumskyblock [4.1.2]
[16:02:40] [Server thread/INFO]: [IridiumSkyblock] Successfully registered Placeholders for PlaceholderAPI.
[16:02:40] [Server thread/INFO]: [IridiumSkyblock] -------------------------------
[16:02:40] [Server thread/INFO]: [IridiumSkyblock] 
[16:02:40] [Server thread/INFO]: [IridiumSkyblock] IridiumSkyblock Enabled!
[16:02:40] [Server thread/INFO]: [IridiumSkyblock] 
[16:02:40] [Server thread/INFO]: [IridiumSkyblock] -------------------------------
[16:02:40] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[16:02:40] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[16:02:40] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[16:02:41] [Server thread/INFO]: Loading 0 persistent chunks for world 'minecraft:donjon'...
[16:02:41] [Server thread/INFO]: Prepared spawn area in 1 ms
[16:02:41] [Server thread/INFO]: [WorldGuard] (donjon) TNT ignition is PERMITTED.
[16:02:41] [Server thread/INFO]: [WorldGuard] (donjon) Lighters are PERMITTED.
[16:02:41] [Server thread/INFO]: [WorldGuard] (donjon) Lava fire is PERMITTED.
[16:02:41] [Server thread/INFO]: [WorldGuard] (donjon) Fire spread is UNRESTRICTED.
[16:02:41] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'donjon'
[16:02:41] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: KyudoSan
[16:02:41] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[16:02:41] [Server thread/INFO]: Could not set generator for world 'kyudo': Plugin 'kyudo' does not exist
[16:02:41] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: kyudo
[16:02:41] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[16:02:41] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[16:02:41] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[16:02:41] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[16:02:41] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.26.0
[16:02:41] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[16:02:41] [Server thread/INFO]: [Shopkeepers] Loading the data of 6 shopkeepers ...
[16:02:41] [Server thread/INFO]: [SCore] Enabling SCore v5.26.3.15
[16:02:41] [Server thread/INFO]: SCore The library part of SCore is initializing ... (by SCore)
[16:02:41] [Server thread/INFO]: SCore ExecutableItems hooked !  (7.26.3.15) Load After
[16:02:41] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.12.2)  Load Before
[16:02:41] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.15+2347-5fafea6)  Load Before
[16:02:41] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[16:02:41] [Server thread/INFO]: SCore IridiumSkyblock hooked !  (4.1.2)  Load Before
[16:02:41] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)  Load Before
[16:02:41] [Server thread/INFO]: SCore packetevents hooked !  (2.11.2)  Load Before
[16:02:41] [Server thread/INFO]: SCore ProtocolLib hooked !
[16:02:41] [Server thread/INFO]: SCore Locale setup: FR
[16:02:41] [Server thread/INFO]: SCore NBTAPI hooked !  (2.15.5)  Load Before
[16:02:41] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.22.2)  Load Before
[16:02:41] [Server thread/INFO]: SCore RoseStacker hooked !  (1.5.39)  Load Before
[16:02:41] [Server thread/INFO]: SCore TAB hooked !  (5.5.0)  Load Before
[16:02:41] [Server thread/INFO]: SCore JetsMinions hooked !  (7.12.3) Load After
[16:02:41] [Server thread/INFO]: SCore WorldEdit hooked !  (7.4.1+76eaf25bd)  Load Before
[16:02:41] [Server thread/INFO]: SCore Language of the editor setup on FR
[16:02:41] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[16:02:41] [Server thread/INFO]: SCore Connection to the db...
[16:02:41] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[16:02:41] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[16:02:41] [Server thread/INFO]: SCore Creating table Commands if not exists...
[16:02:41] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[16:02:41] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[16:02:41] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[16:02:41] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[16:02:41] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[16:02:41] [Server thread/INFO]: SCore Creating table AbsorptionQuery if not exists...
[16:02:41] [Server thread/INFO]: SCore Creating table ATemporaryAttributesQuery if not exists...
[16:02:41] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[16:02:41] [Server thread/INFO]: ================ SCore ================
[16:02:41] [Server thread/INFO]: SCore is running on Folia
[16:02:41] [Server thread/INFO]: SCore is running on Paper or fork
[16:02:41] [Server thread/INFO]: SCore Version of the server 1.21.11-127-bd74bf6 (MC: 1.21.11) !
[16:02:41] [Server thread/INFO]: SCore Language for in-game messages setup on FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: cancelPlaceInBundle in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: cancelSpawner in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: detailedTargetItems in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifEntityInRegion in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifEntityIsInWater in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifEntityIsInLava in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifEntityAge in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifEntityLastDamageCause in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifEntityVelocity in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifNotEntityInRegion in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifPlayerIsRiding in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifPlayerLastDamage in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifPlayerOxygen in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifPlayerBedSpawnLocationX in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifPlayerBedSpawnLocationY in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifPlayerBedSpawnLocationZ in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifSheepColor in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: input1ItemCheckers in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: input2ItemCheckers in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: input3ItemCheckers in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: input4ItemCheckers in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: input5ItemCheckers in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: input6ItemCheckers in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: input7ItemCheckers in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: input8ItemCheckers in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: input9ItemCheckers in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: detailedInput in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: updateTooltipModel in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: damageReductions in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: damageReduction in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: baseDamageBlocked in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: factorDamageBlocked in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: horizontalBlockingAngle in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: damageTypes in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: blockAttacksFeatures in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: blockDelay in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: blockSound in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: disableSound in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: disableCooldownScale in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: bypassedBy in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: itemTextures in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: itemAdvancedComponents in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifGameMode in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifNearbyEntityCount in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifLineOfSight in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifPlayerSpeed in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: ifNearbyPlayerCount in FR
[16:02:41] [Server thread/INFO]: SCore No feature Translation found for setting: suspiciousBlockLoot in FR
[16:02:41] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: trident1 &6>> Enchantments available: Look in-game, it's the same name
[16:02:41] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: tridentCustom1 &6>> Enchantments available: Look in-game, it's the same name
[16:02:41] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[16:02:41] [Server thread/INFO]: [SCore] CustomListsManager: Loaded 0 entity lists and 0 block lists
[16:02:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[16:02:41] [Server thread/INFO]: ================ SCore ================
[16:02:41] [Server thread/INFO]: [GHolo] Enabling GHolo v2.3.2
[16:02:41] [Server thread/INFO]: [GHolo] The plugin was successfully enabled.
[16:02:41] [Server thread/INFO]: [GHolo] Link with PlaceholderAPI successful!
[16:02:41] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.8.6
[16:02:41] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[16:02:41] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[16:02:41] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[16:02:41] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[16:02:41] [Server thread/INFO]: [MarriageMaster] MarriageMaster-Connection-Pool - Starting...
[16:02:41] [Server thread/INFO]: [MarriageMaster] MarriageMaster-Connection-Pool - Start completed.
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Loading marriages ...
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Marriages loaded
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Loading priests ...
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Priests loaded
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Loading players ...
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Players loaded
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Loading marriages into cache ...
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Marriages loaded into cache
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Loading homes ...
[16:02:41] [Thread-94/INFO]: [MarriageMaster] Homes loaded
[16:02:41] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[16:02:41] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[16:02:41] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 826 items.
[16:02:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.8.6]
[16:02:42] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[16:02:42] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[16:02:42] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.26.3.15
[16:02:42] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[16:02:42] [Server thread/WARN]: [ExecutableItems] No pack found in the folder __textures__
[16:02:43] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: GRASS (Item: Prem_Grass_Cutter).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[16:02:43] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 204
[16:02:43] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[16:02:43] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[16:02:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.21.0
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file.
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 section configs from /sections/
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 19 shop configs from /shops/
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Validating shop settings
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.21.11...
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled ExecutableItems hook...
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 17 shop sections.
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider set to AUTO in config
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Automatically searching for compatible spawner provider....
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: RoseStacker found, integrating...
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using RoseStacker as spawner provider.
[16:02:43] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Providers not enabled yet, waiting...
[16:02:43] [Server thread/INFO]: [CommandSigns] Enabling CommandSigns v2.2.0
[16:02:43] [Server thread/INFO]: [CommandSigns] Plugin vault detected
[16:02:43] [Server thread/INFO]: [CommandSigns] Vault economy [EssentialsX Economy] linked with command signs !
[16:02:43] [Server thread/INFO]: [CommandSigns] If this plugin is useful to you, you can make a donation at: https://www.paypal.me/nokorbis
[16:02:43] [Server thread/INFO]: [JetsMinions] Enabling JetsMinions v7.12.3
[16:02:43] [Server thread/INFO]: [JetsMinions] Initialising Plugin v7.12.3...
[16:02:43] [Server thread/INFO]: [JetsMinions] hooks.yml found, loading!
[16:02:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jetsminions [1.0.0]
[16:02:43] [Server thread/INFO]: [JetsMinions] skins.yml found, loading!
[16:02:43] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI-Premium] [INFO]: There is an update available for EconomyShopGUI Premium, you are running v5.21.0 but found v5.30.1.
[16:02:43] [ESGUI_UTIL_THREAD #0/INFO]: [EconomyShopGUI-Premium] [INFO]: Download using command /eshop update
[16:02:43] [Server thread/INFO]: [JetsMinions] config.yml found, loading!
[16:02:43] [Server thread/INFO]: [JetsMinions] Version is 1.21.11-127-bd74bf6 (MC: 1.21.11)
[16:02:43] [Server thread/INFO]: [JetsMinions] messages.yml found, loading!
[16:02:43] [Server thread/INFO]: [JetsMinions] controlpanel.yml found, loading!
[16:02:43] [Server thread/INFO]: [JetsMinions] players.yml found, loading!
[16:02:43] [Server thread/INFO]: [JetsMinions] store.yml found, loading!
[16:02:43] [Server thread/INFO]: [JetsMinions] Loaded Minion: Miner Made by Jet315
[16:02:43] [Server thread/INFO]: [JetsMinions] Loaded Minion: Slayer Made by Jet315
[16:02:43] [Server thread/INFO]: [JetsMinions] Loaded Minion: Collector Made by Jet315
[16:02:43] [Server thread/INFO]: [JetsMinions] Loaded Minion: Feeder Made by Jet315
[16:02:43] [Server thread/INFO]: [JetsMinions] Loaded Minion: Lumberjack Made by Jet315
[16:02:43] [Server thread/INFO]: [JetsMinions] Loaded Minion: Farmer Made by Jet315
[16:02:43] [Server thread/INFO]: [JetsMinions] Loaded Minion: Fisher Made by Jet315
[16:02:43] [Server thread/INFO]: [JetsMinions] Loaded Minion: Seller Made by Jet315
[16:02:43] [Server thread/INFO]: [JetsMinions] [STDOUT] [JetsMinions] Loaded 1/1 Minions
[16:02:43] [Server thread/WARN]: Nag author(s): '[Jet315]' of 'JetsMinions v7.12.3' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[16:02:43] [Server thread/INFO]: [JetsMinions] Initialising Complete in 167ms
[16:02:44] [Server thread/INFO]: [spark] Starting background profiler...
[16:02:44] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[16:02:44] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[16:02:44] [Server thread/INFO]: Running delayed init tasks
[16:02:44] [Craft Scheduler Thread - 8 - Essentials/INFO]: [Essentials] Récupération des informations de version...
[16:02:44] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] Checking for Updates ... 
[16:02:44] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[16:02:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.3.3]
[16:02:44] [Server thread/WARN]: [PlayerPoints] The hook for Votifier was enabled, but it does not appear to be installed.
[16:02:44] [Server thread/INFO]: [AutoRestart] No Internet to check for updates
[16:02:44] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[16:02:44] [Craft Scheduler Thread - 18 - Vault/INFO]: [Vault] No new version available
[16:02:44] [Server thread/INFO]: [Skript] Loading variables...
[16:02:44] [Server thread/INFO]: [Skript] Loaded 80 variables in 0.0 seconds
[16:02:44] [Server thread/INFO]: [Skript] Line 76: (nouveau 1.sk)
[16:02:44] [Server thread/INFO]:     indentation error: expected 6 spaces, but found 8 spaces
[16:02:44] [Server thread/INFO]:     Line: if player's inventory contains 1 carrot:
[16:02:44] [Server thread/INFO]:  
[16:02:44] [Server thread/INFO]: [Skript] Line 77: (nouveau 1.sk)
[16:02:44] [Server thread/INFO]:     indentation error: expected 6 spaces, but found 12 spaces
[16:02:44] [Server thread/INFO]:     Line: remove 1 carrot from player's inventory
[16:02:44] [Server thread/INFO]:  
[16:02:44] [Server thread/INFO]: [Skript] Line 1: (Booster.sk)
[16:02:44] [Server thread/INFO]:     Can't understand this structure: --command boost
[16:02:44] [Server thread/INFO]:     Line: --command boost:
[16:02:44] [Server thread/INFO]:  
[16:02:44] [Craft Scheduler Thread - 13 - RoseStacker/INFO]: [RoseStacker] Fetched 138 translation locales.
[16:02:45] [Server thread/INFO]: [Skript] Line 19: (RULES.sk)
[16:02:45] [Server thread/INFO]:     Can't understand this section: create a new gui with virtual chest inventory named "                &lRégles" with 3 rows
[16:02:45] [Server thread/INFO]:     Line: create a new gui with virtual chest inventory named "                &lRégles" with 3 rows:# <-- ajout de deux points
[16:02:45] [Server thread/INFO]:  
[16:02:45] [Server thread/INFO]: [Skript] Line 23: (RULES.sk)
[16:02:45] [Server thread/INFO]:     Can't understand this condition/effect: open last created gui to player
[16:02:45] [Server thread/INFO]:     Line: open last created gui to player
[16:02:45] [Server thread/INFO]:  
[16:02:45] [Server thread/INFO]: [Skript] Line 57: (Booster.sk)
[16:02:45] [Server thread/INFO]:     Can't understand this expression: vault_eco_balance
[16:02:45] [Server thread/INFO]:     Line: if {%vault_eco_balance%} is greater than 1:
[16:02:45] [Server thread/INFO]:  
[16:02:45] [Server thread/INFO]: [Skript] Line 206: (Booster.sk)
[16:02:45] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%}). You could prefix it with the script's name: {Booster::%player%}
[16:02:45] [Server thread/INFO]:     Line: if {joueur.first::*} does not contain {%player%}:
[16:02:45] [Server thread/INFO]:  
[16:02:45] [Server thread/INFO]: [Skript] Line 207: (Booster.sk)
[16:02:45] [Server thread/INFO]:     Starting a variable's name with an expression is discouraged ({%player%}). You could prefix it with the script's name: {Booster::%player%}
[16:02:45] [Server thread/INFO]:     Line: add {%player%} to {joueur.first::*}
[16:02:45] [Server thread/INFO]:  
[16:02:45] [Server thread/INFO]: [Skript] Line 47: (nouveau 1.sk)
[16:02:45] [Server thread/INFO]:     Can't understand this condition/effect: play raw sound "random.levelup" at player with pitch 1 volume 1
[16:02:45] [Server thread/INFO]:     Line: play raw sound "random.levelup" at player with pitch 1 volume 1
[16:02:45] [Server thread/INFO]:  
[16:02:45] [Server thread/INFO]: [Skript] Loaded 8 scripts with a total of 31 structures in 0.9 seconds
[16:02:45] [Server thread/INFO]: [Skript] Finished loading.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 0.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique scripttrait a échoué au chargement pour le PNJ portant l'ID\: 0.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 1.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 3.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 2.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique scripttrait a échoué au chargement pour le PNJ portant l'ID\: 2.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 8.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 5.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 13.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 17.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 18.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 19.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 20.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 23.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 22.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 24.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 28.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 42.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 41.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 40.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 39.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 38.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 37.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 36.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 35.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 34.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 33.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 44.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 50.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 64.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 188.
[16:02:45] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 196.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 210.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 212.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 221.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 220.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 219.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 218.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 223.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 222.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 241.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 240.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 239.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 238.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 233.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 232.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 229.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 227.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 226.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 225.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 224.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 255.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 256.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 406.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 420.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 458.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 459.
[16:02:46] [Server thread/ERROR]: [Citizens] La caractéristique speech a échoué au chargement pour le PNJ portant l'ID\: 510.
[16:02:46] [Server thread/INFO]: [Citizens] Chargement de 323 NPCs.
[16:02:46] [Server thread/INFO]: [AuraSkills] Loaded 15 skills with 333 total sources
[16:02:46] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[16:02:46] [Server thread/INFO]: [AuraSkills] Loaded 30 pattern rewards and 0 level rewards
[16:02:46] [Server thread/INFO]: [AuraSkills] Loaded 31 loot entries in 4 pools and 2 tables
[16:02:46] [Server thread/INFO]: [AuraSkills] Loaded 7 menus
[16:02:46] [Server thread/INFO]: +> [ScriptEvent] Processed 0 script event paths. 
[16:02:46] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[16:02:46] [Server thread/INFO]: +> [Denizen] Denizen fully loaded at: 2026/03/24 16:02:37 
[16:02:46] [Server thread/INFO]: Done (60.670s)! For help, type "help"
[16:02:47] [Craft Scheduler Thread - 8 - Essentials/WARN]: [Essentials] Vous êtes en retard de 1 version(s) de développement d‘EssentialsX !
[16:02:47] [Craft Scheduler Thread - 8 - Essentials/WARN]: [Essentials] Téléchargez-la ici : https://essentialsx.net/downloads.html
[16:02:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled HeadDatabase hook...
[16:02:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [DEBUG]: ITEMS provider loaded, waiting...
[16:02:47] [Server thread/INFO]: [JetsMinions] skins.yml found, loading!
[16:02:47] [Server thread/INFO]: [JetsMinions] config.yml found, loading!
[16:02:47] [Server thread/INFO]: [JetsMinions] messages.yml found, loading!
[16:02:47] [Server thread/INFO]: [JetsMinions] hooks.yml found, loading!
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jetsminions [1.0.0]
[16:02:47] [Server thread/INFO]: [JetsMinions] controlpanel.yml found, loading!
[16:02:47] [Server thread/INFO]: [JetsMinions] store.yml found, loading!
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: parseother [2.0.0]
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.9]
[16:02:47] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rainbowcolor [1.2]
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: rng [1.4.0]
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: objective [4.2.0]
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[16:02:47] [Server thread/INFO]: 9 placeholder hook(s) registered!
[16:02:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[16:02:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.1.0]
[16:02:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Debug mode is enabled.
[16:02:47] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading item stock provider...
[16:02:47] [Server thread/ERROR]: Could not pass event ProviderLoadEvent to EconomyShopGUI-Premium v5.21.0
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R5/inventory/CraftItemStack
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.versions.v1_21_R3.v1_21_R3.getLoreAsNBT(v1_21_R3.java:232) ~[?:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.EconomyShopGUI.initLore(EconomyShopGUI.java:877) ~[?:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.providers.LimitedStockProvider.<init>(LimitedStockProvider.java:79) ~[?:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.methodes.StartupReload.setupProviders(StartupReload.java:384) ~[?:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.EconomyShopGUI.loadDelayed(EconomyShopGUI.java:310) ~[?:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.events.DelayedLoadListener.onLoad(DelayedLoadListener.java:44) ~[?:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.providers.PlaceholderAPIHook.enable(PlaceholderAPIHook.java:99) ~[?:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.providers.PlaceholderAPIHook.onExpansionsLoad(PlaceholderAPIHook.java:57) ~[?:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:71) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at PlaceholderAPI-2.12.2.jar//me.clip.placeholderapi.expansion.manager.LocalExpansionManager.lambda$registerAll$4(LocalExpansionManager.java:393) ~[?:?]
    at PlaceholderAPI-2.12.2.jar//me.clip.placeholderapi.util.Futures.lambda$onMainThread$0(Futures.java:48) ~[?:?]
    at PlaceholderAPI-2.12.2.jar//me.clip.placeholderapi.scheduler.folia.FoliaScheduler.lambda$runTask$0(FoliaScheduler.java:72) ~[?:?]
    at io.papermc.paper.threadedregions.scheduler.FoliaGlobalRegionScheduler$GlobalScheduledTask.run(FoliaGlobalRegionScheduler.java:178) ~[paper-1.21.11.jar:?]
    at io.papermc.paper.threadedregions.scheduler.FoliaGlobalRegionScheduler.tick(FoliaGlobalRegionScheduler.java:36) ~[paper-1.21.11.jar:?]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1758) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1611) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.dedicated.DedicatedServer.tickServer(DedicatedServer.java:427) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.processPacketsAndTick(MinecraftServer.java:1667) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1335) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R5.inventory.CraftItemStack
    at io.papermc.paper.plugin.entrypoint.classloader.PaperPluginClassLoader.loadClass(PaperPluginClassLoader.java:146) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at io.papermc.paper.plugin.entrypoint.classloader.PaperPluginClassLoader.loadClass(PaperPluginClassLoader.java:107) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 30 more
[16:02:47] [Server thread/WARN]: [BeautyQuests] The NPC 474 does not exist for stage unknown (ITEMS) of quest 65, branch 0
[16:02:47] [Server thread/INFO]: [BeautyQuests] 51 quests loaded (0.151s)!
[16:02:47] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 710
[16:02:48] [Server thread/INFO]: [BanItem] Invalid particle parameters set in config.yml.
[16:02:48] [Server thread/INFO]: [BanItem] Successfully loaded 5 blacklisted & 0 whitelisted item(s).
[16:02:48] [Craft Scheduler Thread - 20 - BanItem/INFO]: [BanItem] A newer version (v3.7) is available!
[16:02:49] [Craft Scheduler Thread - 20 - SpawnerMeta/INFO]: [Spawner Meta v25.4] New version is available: v25.5! To download visit: https://www.spigotmc.org/resources/spawnermeta.74188/
[16:04:15] [User Authenticator #0/INFO]: UUID of player Aio13 is 02d6ad6f-8f46-488e-9634-bfba0c27d73b
[16:04:15] [Server thread/INFO]: [HorriblePlayerLoginEventHack] You have plugins listening to the PlayerLoginEvent, this will cause re-configuration APIs to be unavailable: [LuckPerms, Denizen, Skript, LoginSecurity, ProtocolLib, WorldGuard]
[16:04:16] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /warp spawn Aio13
[16:04:16] [Server thread/INFO]: <ARCADIA> » Aio13 à rejoint le serveur !
[16:04:16] [Server thread/INFO]: Aio13[/127.0.0.1:56632] logged in with entity id 1889 at ([world]35.490572613675205, 72.0, 55.312601438673205)
[16:04:47] [Server thread/INFO]: Aio13 issued server command: /pl
[16:04:57] [Server thread/INFO]: ℹ Server Plugins (61):
[16:04:57] [Server thread/INFO]: Paper Plugins (4):
[16:04:57] [Server thread/INFO]:  - CrazyCrates, EconomyShopGUI-Premium, MarriageMaster, RoseStacker
[16:04:57] [Server thread/INFO]: Bukkit Plugins (57):
[16:04:57] [Server thread/INFO]:  - AdvancedRenamer, *AdvancedSetSpawn, arcatest, AuctionHouse, AuraSkills, *AutoRestart, BanItem, BeautyQuests, BlockParticles, BottledExp
[16:04:57] [Server thread/INFO]:  *ChangeSkin, Citizens, CitizensGUI, ClearLag, CMILib, ColorGradient, CommandSigns, CrazyEnchantments, Denizen, EnchantControl_Reforged
[16:04:57] [Server thread/INFO]:  Essentials, EssentialsChat, ExecutableItems, GHolo, GSit, HeadDatabase, IridiumSkyblock, JetsMinions, *JSONAPI, LibsDisguises
[16:04:57] [Server thread/INFO]:  LoginSecurity, *Lores, LPC, LuckPerms, Multiverse-Core, NBTAPI, packetevents, PlaceholderAPI, PlayerParticles, PlayerPoints
[16:04:57] [Server thread/INFO]:  ProtocolLib, SCore, Sentinel, Shopkeepers, SimpleScore, SkinsRestorer, SkQuery, Skript, skript-placeholders, SpawnerMeta
[16:04:57] [Server thread/INFO]:  TAB, TimeIsMoney, Vault, Vegas, ViaVersion, WorldEdit, WorldGuard
[16:05:04] [Server thread/INFO]: Aio13 issued server command: /shop
[16:05:04] [Server thread/ERROR]: Command exception: /shop
java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:190) ~[guava-33.5.0-jre.jar:?]
    at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2265) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at org.bukkit.Bukkit.createInventory(Bukkit.java:1931) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.objects.MainMenu.<init>(MainMenu.java:23) ~[?:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.commands.Shop.execute(Shop.java:61) ~[?:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:83) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:30) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:13) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:104) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:469) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.Commands.performCommand(Commands.java:374) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.Commands.performCommand(Commands.java:362) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2375) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$12(ServerGamePacketListenerImpl.java:2348) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:177) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1525) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:188) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:151) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1505) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1499) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.recordTaskExecutionTimeWhileWaiting(MinecraftServer.java:1225) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1341) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[16:05:15] [Server thread/INFO]: ℹ Server Plugins (61):
[16:05:15] [Server thread/INFO]: Paper Plugins (4):
[16:05:15] [Server thread/INFO]:  - CrazyCrates, EconomyShopGUI-Premium, MarriageMaster, RoseStacker
[16:05:15] [Server thread/INFO]: Bukkit Plugins (57):
[16:05:15] [Server thread/INFO]:  - AdvancedRenamer, *AdvancedSetSpawn, arcatest, AuctionHouse, AuraSkills, *AutoRestart, BanItem, BeautyQuests, BlockParticles, BottledExp
[16:05:15] [Server thread/INFO]:  *ChangeSkin, Citizens, CitizensGUI, ClearLag, CMILib, ColorGradient, CommandSigns, CrazyEnchantments, Denizen, EnchantControl_Reforged
[16:05:15] [Server thread/INFO]:  Essentials, EssentialsChat, ExecutableItems, GHolo, GSit, HeadDatabase, IridiumSkyblock, JetsMinions, *JSONAPI, LibsDisguises
[16:05:15] [Server thread/INFO]:  LoginSecurity, *Lores, LPC, LuckPerms, Multiverse-Core, NBTAPI, packetevents, PlaceholderAPI, PlayerParticles, PlayerPoints
[16:05:15] [Server thread/INFO]:  ProtocolLib, SCore, Sentinel, Shopkeepers, SimpleScore, SkinsRestorer, SkQuery, Skript, skript-placeholders, SpawnerMeta
[16:05:15] [Server thread/INFO]:  TAB, TimeIsMoney, Vault, Vegas, ViaVersion, WorldEdit, WorldGuard
[16:05:22] [Server thread/INFO]: Aio13 issued server command: /economyshopgui-premium:market
[16:05:22] [Server thread/ERROR]: Command exception: /economyshopgui-premium:market
java.lang.IllegalArgumentException: Size for custom inventory must be a multiple of 9 between 9 and 54 slots (got 0)
    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:190) ~[guava-33.5.0-jre.jar:?]
    at org.bukkit.craftbukkit.CraftServer.createInventory(CraftServer.java:2265) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at org.bukkit.Bukkit.createInventory(Bukkit.java:1931) ~[paper-api-1.21.11-R0.1-SNAPSHOT.jar:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.objects.MainMenu.<init>(MainMenu.java:23) ~[?:?]
    at EconomyShopGUI-Premium-5.21.0-patched-1.21.11.jar//me.gypopo.economyshopgui.commands.Shop.execute(Shop.java:61) ~[?:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:83) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:30) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:13) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:104) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:469) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.Commands.performCommand(Commands.java:374) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.commands.Commands.performCommand(Commands.java:362) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2375) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$12(ServerGamePacketListenerImpl.java:2348) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:177) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1525) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:188) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:151) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1505) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1499) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.recordTaskExecutionTimeWhileWaiting(MinecraftServer.java:1225) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1341) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at net.minecraft.server.MinecraftServer.lambda$spin$2(MinecraftServer.java:388) ~[paper-1.21.11.jar:1.21.11-127-bd74bf6]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[16:05:25] [Server thread/INFO]: Aio13 issued server command: /economyshopgui-premium
[16:05:33] [Server thread/INFO]: Aio13 issued server command: /eshop
[16:05:41] [Server thread/INFO]: Aio13 issued server command: /sell
[16:05:43] [Server thread/INFO]: Aio13 issued server command: /sellall