Paste #127077: HELP ME

Date: 2024/10/04 23:26:10 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324


[06:18:23] [main/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[06:18:24] [main/INFO]: Reloading ResourceManager: Default, bukkit
[06:18:26] [Worker-Main-5/INFO]: Loaded 7 recipes
[06:18:29] [Server thread/INFO]: Starting minecraft server version 1.16.5
[06:18:29] [Server thread/INFO]: Loading properties
[06:18:29] [Server thread/INFO]: This server is running Paper version git-Paper-794 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT)
[06:18:29] [Server thread/INFO]: Server Ping Player Sample Count: 12
[06:18:29] [Server thread/INFO]: Using 4 threads for Netty based IO
[06:18:29] [Server thread/INFO]: Debug logging is disabled
[06:18:29] [Server thread/INFO]: Default game type: SURVIVAL
[06:18:29] [Server thread/INFO]: Generating keypair
[06:18:29] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25757
[06:18:29] [Server thread/INFO]: Using epoll channel type
[06:18:31] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[06:18:38] [Server thread/WARN]: Legacy plugin Friends v1.5.12-SNAPSHOT (SPIGOT) does not specify an api-version.
[06:18:38] [Server thread/WARN]: Legacy plugin FancyEnchantments v1.0.0 does not specify an api-version.
[06:18:38] [Server thread/WARN]: Legacy plugin SpecialItems v1.7 does not specify an api-version.
[06:18:38] [Server thread/ERROR]: Could not load 'plugins/SpecialItems.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.NoSuchMethodError: 'void org.bukkit.enchantments.Enchantment.<init>(int)'
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:157) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:414) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:322) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServer.java:393) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:269) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1074) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:291) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: java.lang.NoSuchMethodError: 'void org.bukkit.enchantments.Enchantment.<init>(int)'
    at de.ancash.specialitems.E.E109.<init>(E109.java:9) ~[?:?]
    at de.ancash.specialitems.main.Main.<clinit>(Main.java:76) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:398) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:82) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:153) ~[patched_1.16.5.jar:git-Paper-794]
    ... 7 more
[06:18:38] [Server thread/WARN]: Legacy plugin EffectPlaceholders v1.0.0 does not specify an api-version.
[06:18:38] [Server thread/WARN]: [ViaVersion] Invalid blocked version found in config: '1.16'
[06:18:39] [Server thread/WARN]: Legacy plugin DamageIndicators v1.0.0-1.16.5 does not specify an api-version.
[06:18:39] [Server thread/WARN]: Legacy plugin DeathTeleport v1.0 does not specify an api-version.
[06:18:39] [Server thread/WARN]: Legacy plugin FancyCrafting v1.0.1 does not specify an api-version.
[06:18:40] [Server thread/INFO]: [MythicMobs] Loading 4 libraries... please wait
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[06:18:40] [Server thread/INFO]: [MythicMobs] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[06:18:40] [Server thread/ERROR]: Could not load 'plugins/MythicMobs-5.8.0-SNAPSHOT 5204 .jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.UnsupportedClassVersionError: io/lumine/mythic/bukkit/MythicBukkit has been compiled by a more recent version of the Java Runtime (class file version 60.0), this version of the Java Runtime only recognizes class file versions up to 55.0
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:157) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:414) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:353) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServer.java:393) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:269) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1074) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:291) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: java.lang.UnsupportedClassVersionError: io/lumine/mythic/bukkit/MythicBukkit has been compiled by a more recent version of the Java Runtime (class file version 60.0), this version of the Java Runtime only recognizes class file versions up to 55.0
    at java.lang.ClassLoader.defineClass1(Native Method) ~[?:?]
    at java.lang.ClassLoader.defineClass(ClassLoader.java:1017) ~[?:?]
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:174) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:201) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:589) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:119) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:114) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:398) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:82) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:153) ~[patched_1.16.5.jar:git-Paper-794]
    ... 7 more
[06:18:40] [Server thread/ERROR]: Fatal error trying to convert Quests v3.15.2-b216e2b:com/leonardobishop/quests/bukkit/BukkitQuestsPlugin.class
java.lang.IllegalArgumentException: Unsupported class file major version 65
    at org.bukkit.craftbukkit.libs.org.objectweb.asm.ClassReader.<init>(ClassReader.java:196) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.libs.org.objectweb.asm.ClassReader.<init>(ClassReader.java:177) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.libs.org.objectweb.asm.ClassReader.<init>(ClassReader.java:163) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.util.Commodore.convert(Commodore.java:171) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.util.CraftMagicNumbers.processClass(CraftMagicNumbers.java:384) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:178) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:589) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:119) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:114) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:398) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:82) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:153) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:414) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:353) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServer.java:393) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:269) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1074) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:291) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.Thread.run(Thread.java:829) [?:?]
[06:18:40] [Server thread/ERROR]: Could not load 'plugins/Quests-3.15.2-b216e2b.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.UnsupportedClassVersionError: com/leonardobishop/quests/bukkit/BukkitQuestsPlugin has been compiled by a more recent version of the Java Runtime (class file version 65.0), this version of the Java Runtime only recognizes class file versions up to 55.0
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:157) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:414) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:353) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServer.java:393) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:269) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1074) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:291) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: java.lang.UnsupportedClassVersionError: com/leonardobishop/quests/bukkit/BukkitQuestsPlugin has been compiled by a more recent version of the Java Runtime (class file version 65.0), this version of the Java Runtime only recognizes class file versions up to 55.0
    at java.lang.ClassLoader.defineClass1(Native Method) ~[?:?]
    at java.lang.ClassLoader.defineClass(ClassLoader.java:1017) ~[?:?]
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:174) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:201) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:589) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:119) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:114) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:398) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:82) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:153) ~[patched_1.16.5.jar:git-Paper-794]
    ... 7 more
[06:18:40] [Server thread/INFO]: [CombatLogX] This plugin is using SirBlobmanAPI by SirBlobman.
[06:18:40] [Server thread/INFO]: [CombatLogX] Searching for a handler that matches NMS version 1_16_R3
[06:18:40] [Server thread/INFO]: [CombatLogX] Successfully found NMS Handler class 'com.SirBlobman.combatlogx.api.shaded.nms.NMS_1_16_R3'.
[06:18:40] [Server thread/ERROR]: Could not load 'plugins/ProJumpPads-4.0 beta.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.UnsupportedClassVersionError: me/sedattr/projumppads/ProJumpPads has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 55.0
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:157) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:414) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:353) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServer.java:393) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:269) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1074) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:291) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: java.lang.UnsupportedClassVersionError: me/sedattr/projumppads/ProJumpPads has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 55.0
    at java.lang.ClassLoader.defineClass1(Native Method) ~[?:?]
    at java.lang.ClassLoader.defineClass(ClassLoader.java:1017) ~[?:?]
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:174) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:201) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:589) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:119) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:114) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:398) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:82) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:153) ~[patched_1.16.5.jar:git-Paper-794]
    ... 7 more
[06:18:41] [Server thread/INFO]: [DisablePortalBreak] Loading DisablePortalBreak v1.0-SNAPSHOT
[06:18:41] [Server thread/INFO]: [Friends] Loading Friends v1.5.12-SNAPSHOT (SPIGOT)
[06:18:41] [Server thread/INFO]: [FancyEnchantments] Loading FancyEnchantments v1.0.0
[06:18:41] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.10
[06:18:41] [Server thread/INFO]: [ItemRarityGlow] Loading ItemRarityGlow v1.0.0
[06:18:41] [Server thread/INFO]: [EnderDragon] Loading EnderDragon v2.5.4
[06:18:41] [Server thread/INFO]: [EnderDragon] Wrong special_dragon_jude_mode type in config.yml! Only "weight" or "pc" is valid.
[06:18:41] [Server thread/INFO]: [ItemLoreDamage] Loading ItemLoreDamage v1.0.0
[06:18:41] [Server thread/INFO]: [wDrops] Loading wDrops v0.2
[06:18:41] [Server thread/INFO]: [NoteBlockAPI] Loading NoteBlockAPI v1.6.2
[06:18:41] [Server thread/INFO]: [BookReport] Loading BookReport v1.0.0
[06:18:41] [Server thread/INFO]: [EffectPlaceholders] Loading EffectPlaceholders v1.0.0
[06:18:41] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v5.0.3
[06:18:41] [Server thread/INFO]: [ViaVersion] ViaVersion 5.0.3 is now loaded. Registering protocol transformers and injecting...
[06:18:42] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[06:18:43] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[06:18:43] [Server thread/INFO]: [ViaBackwards] Loading translations...
[06:18:43] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[06:18:44] [Server thread/INFO]: [ViaRewind] Registering protocols...
[06:18:45] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.11.1
[06:18:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[06:18:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[06:18:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[06:18:45] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v5.0.3
[06:18:45] [Server thread/INFO]: [JukeBox] Loading JukeBox v1.20.6
[06:18:45] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.131
[06:18:46] [Server thread/INFO]: [NpcIntroductions] Loading NpcIntroductions v1.0.0
[06:18:46] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.8.11
[06:18:46] [Server thread/INFO]: [DamageIndicators] Loading DamageIndicators v1.0.0-1.16.5
[06:18:46] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.7.0
[06:18:46] [Thread-11/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package de.tr7zw.nbtapi' seems to be outdated!
[06:18:46] [Thread-11/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.13.2'
[06:18:46] [Thread-11/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[06:18:48] [Server thread/INFO]: [ILibrary] Loading ILibrary v3.12.0
[06:18:48] [Server thread/INFO]: [Minepacks] Loading Minepacks v2.4.31.4-T20240629215752
[06:18:48] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[06:18:48] [Server thread/INFO]: [HubThat] Loading HubThat v10.1.184
[06:18:48] [Server thread/INFO]: [RoyaleEconomy] Loading RoyaleEconomy v1.4.3
[06:18:48] [Server thread/INFO]: [InteractiveBooks] Loading InteractiveBooks v1.5.6
[06:18:48] [Server thread/INFO]: [NBTNexus] Loading NBTNexus v1.1.4
[06:18:48] [Server thread/INFO]: [DeathTeleport] Loading DeathTeleport v1.0
[06:18:48] [Server thread/INFO]: [CustomPlaceholders] Loading CustomPlaceholders v1.0
[06:18:48] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[06:18:48] [Server thread/INFO]: [FancyCrafting] Loading FancyCrafting v1.0.1
[06:18:48] [Server thread/INFO]: [ViaRewind] Loading ViaRewind v4.0.2
[06:18:48] [Server thread/INFO]: [BetterProfiles] Loading BetterProfiles v1.4-BETA
[06:18:48] [Server thread/INFO]: [DeluxeBazaar] Loading DeluxeBazaar v6.6
[06:18:48] [Server thread/INFO]: [Chatty] Loading Chatty v2.18
[06:18:48] [Server thread/INFO]: [Essentials] Loading Essentials v2.20.1
[06:18:48] [Server thread/INFO]: [ItemLore] Loading ItemLore v1.0.0
[06:18:48] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v1.17-223;37998ec
[06:18:51] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@1001f955]
[06:18:51] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.3-Release
[06:18:51] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.5+3827266
[06:18:51] [Server thread/INFO]: [SimpleScore] Loading SimpleScore v3.6.3-beta.1
[06:18:51] [Server thread/ERROR]: [org.bukkit.craftbukkit.v1_16_R3.CraftServer] com.sk89q.minecraft.util.commands.CommandException: WorldEdit does not appear to be enabled. initializing SimpleScore v3.6.3-beta.1 (Is it up to date?)
java.lang.RuntimeException: com.sk89q.minecraft.util.commands.CommandException: WorldEdit does not appear to be enabled.
    at com.r4g3baby.simplescore.shaded.worldguardwrapper.implementation.v7.WorldGuardImplementation.<init>(WorldGuardImplementation.java:68) ~[?:?]
    at com.r4g3baby.simplescore.shaded.worldguardwrapper.WorldGuardWrapper.<init>(WorldGuardWrapper.java:58) ~[?:?]
    at com.r4g3baby.simplescore.shaded.worldguardwrapper.WorldGuardWrapper.getInstance(WorldGuardWrapper.java:20) ~[?:?]
    at com.r4g3baby.simplescore.utils.WorldGuardAPI.init(WorldGuardAPI.kt:15) ~[?:?]
    at com.r4g3baby.simplescore.SimpleScore.onLoad(SimpleScore.kt:26) ~[?:?]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.loadPlugins(CraftServer.java:399) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:269) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1074) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:291) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: com.sk89q.minecraft.util.commands.CommandException: WorldEdit does not appear to be enabled.
    at com.sk89q.worldguard.bukkit.WorldGuardPlugin.getWorldEdit(WorldGuardPlugin.java:389) ~[?:?]
    at com.r4g3baby.simplescore.shaded.worldguardwrapper.implementation.v7.WorldGuardImplementation.<init>(WorldGuardImplementation.java:66) ~[?:?]
    ... 9 more
[06:18:51] [Server thread/INFO]: [Skript] Loading Skript v2.9.3
[06:18:51] [Server thread/INFO]: [SkQuery] Loading SkQuery v4.1.10
[06:18:51] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.29-SNAPSHOT (build 2548)
[06:18:51] [Server thread/INFO]: [UG-RegionBlocks] Loading UG-RegionBlocks v1.0-Beta
[06:18:51] [Server thread/INFO]: [RegionPlaceholders] Loading RegionPlaceholders v1.0.0
[06:18:51] [Server thread/INFO]: [AuctionMaster] Loading AuctionMaster v3.1
[06:18:51] [Server thread/INFO]: [AuctionMasterItemDisplay] Loading AuctionMasterItemDisplay v2.1
[06:18:51] [Server thread/INFO]: [SCore] Loading SCore v3.9.35
[06:18:51] [Server thread/INFO]: [ExecutableItems] Loading ExecutableItems v5.9.35
[06:18:51] [Server thread/INFO]: [HandyOrbs] Loading HandyOrbs v2.1.3
[06:18:51] [Server thread/INFO]: [CombatLogX] Loading CombatLogX v10.3.8.3
[06:18:51] [Server thread/INFO]: [CombatLogX] Loading expansions...
[06:18:51] [Server thread/INFO]: [CombatLogX] Successfully loaded 2 expansions.
[06:18:51] [Server thread/INFO]: [CombatLogX] CombatLogX loaded successfully.
[06:18:52] [Server thread/INFO]: [DragonEggDrop] Loading DragonEggDrop v1.9.2
[06:18:52] [Server thread/INFO]: [AdvancedTabOverlay] Loading AdvancedTabOverlay v1.2.3
[06:18:52] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.0-b846
[06:18:52] [Server thread/INFO]: [DragonSlayer] Loading DragonSlayer v0.12.5_Jeppa
[06:18:52] [Server thread/INFO]: [ItemJoin] Loading ItemJoin v6.1.0-RELEASE-b1031
[06:18:52] [Server thread/INFO]: [BentoBox] Loading BentoBox v1.16.2
[06:18:52] [Server thread/INFO]: [Codex] Loading Codex v1.16.2
[06:18:52] [Server thread/INFO]: [Multiverse-Portals] Loading Multiverse-Portals v4.2.1-b834
[06:18:52] [Server thread/INFO]: [PlugManX] Loading PlugManX v2.4.1
[06:18:52] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[06:18:52] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[06:18:53] [Server thread/INFO]:         __    
[06:18:53] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[06:18:53] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[06:18:53] [Server thread/INFO]: 
[06:18:53] [Server thread/INFO]: [LuckPerms] Loading configuration...
[06:18:54] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[06:18:55] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[06:18:55] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[06:18:56] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 4395ms)
[06:18:56] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.7.0
[06:18:56] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[06:18:56] [Server thread/INFO]: [RoyaleEconomy] Enabling RoyaleEconomy v1.4.3
[06:18:56] [Server thread/INFO]: [RoyaleEconomy] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[06:18:56] [Server thread/INFO]: [RoyaleEconomy]   Plugin: RoyaleEconomy
[06:18:56] [Server thread/INFO]: [RoyaleEconomy]   Version: 1.4
[06:18:56] [Server thread/INFO]: [RoyaleEconomy]   Author: qKing12 (Dumitru Ghinea)
[06:18:56] [Server thread/INFO]: [RoyaleEconomy]   Copyright: 2020-2020 All Rights Reserved
[06:18:56] [Server thread/INFO]: [RoyaleEconomy] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[06:18:56] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Player Purse SQL.
[06:18:56] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Personal Banks SQL.
[06:18:56] [Server thread/INFO]: [RoyaleEconomy] Succesfully loaded the interest.
[06:18:56] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the Shared Banks SQL.
[06:18:56] [Server thread/INFO]: [RoyaleEconomy] Succesfully connected to the External Generated Data SQL.
[06:18:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] RoyaleEconomySQLitePool - Starting...
[06:18:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] RoyaleEconomySQLitePool - Start completed.
[06:18:56] [Server thread/WARN]: [RoyaleEconomy] Loaded class net.milkbowl.vault.economy.AbstractEconomy from Vault v1.7.3-b131 which is not a depend, softdepend or loadbefore of this plugin.
[06:18:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[06:18:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[06:18:57] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[06:18:57] [Thread-14/WARN]: [NBTAPI] [NBTAPI] The NBT-API at 'package me.qKing12.RoyaleEconomy.utils' seems to be outdated!
[06:18:57] [Thread-14/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.7.1' Newest Version: 2.13.2'
[06:18:57] [Thread-14/WARN]: [NBTAPI] [NBTAPI] Please update the nbt-api or the plugin that contains the api!
[06:18:58] [Server thread/WARN]: [RoyaleEconomy] Loaded class world.bentobox.bentobox.api.events.island.IslandEvent$IslandDeleteEvent from BentoBox v1.16.2 which is not a depend, softdepend or loadbefore of this plugin.
[06:18:58] [Server thread/WARN]: [RoyaleEconomy] "RoyaleEconomy v1.4.3" has registered a listener for world.bentobox.bentobox.api.events.team.TeamEvent$TeamSetownerEvent on method "public void me.qKing12.RoyaleEconomy.Hooks.BentoBox.islandTransferEvent(world.bentobox.bentobox.api.events.team.TeamEvent$TeamSetownerEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [qKing12].
[06:18:58] [Server thread/WARN]: [RoyaleEconomy] "RoyaleEconomy v1.4.3" has registered a listener for world.bentobox.bentobox.api.events.team.TeamEvent$TeamLeaveEvent on method "public void me.qKing12.RoyaleEconomy.Hooks.BentoBox.islandLeaveEvent(world.bentobox.bentobox.api.events.team.TeamEvent$TeamLeaveEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [qKing12].
[06:18:58] [Server thread/WARN]: [RoyaleEconomy] "RoyaleEconomy v1.4.3" has registered a listener for world.bentobox.bentobox.api.events.team.TeamEvent$TeamJoinEvent on method "public void me.qKing12.RoyaleEconomy.Hooks.BentoBox.islandJoinEvent(world.bentobox.bentobox.api.events.team.TeamEvent$TeamJoinEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [qKing12].
[06:18:58] [Server thread/WARN]: [RoyaleEconomy] "RoyaleEconomy v1.4.3" has registered a listener for world.bentobox.bentobox.api.events.island.IslandEvent$IslandDeleteEvent on method "public void me.qKing12.RoyaleEconomy.Hooks.BentoBox.islandDeleteEvent(world.bentobox.bentobox.api.events.island.IslandEvent$IslandDeleteEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [qKing12].
[06:18:58] [Server thread/WARN]: [RoyaleEconomy] "RoyaleEconomy v1.4.3" has registered a listener for world.bentobox.bentobox.api.events.island.IslandEvent$IslandCreateEvent on method "public void me.qKing12.RoyaleEconomy.Hooks.BentoBox.islandCreateEvent(world.bentobox.bentobox.api.events.island.IslandEvent$IslandCreateEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [qKing12].
[06:18:58] [Server thread/WARN]: [RoyaleEconomy] "RoyaleEconomy v1.4.3" has registered a listener for world.bentobox.bentobox.api.events.team.TeamEvent$TeamKickEvent on method "public void me.qKing12.RoyaleEconomy.Hooks.BentoBox.islandKickEvent(world.bentobox.bentobox.api.events.team.TeamEvent$TeamKickEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [qKing12].
[06:18:58] [Server thread/INFO]: [RoyaleEconomy] Hooked into BentoBox
[06:18:58] [Server thread/INFO]: [RoyaleEconomy] Vault detected, economy register attempted.
[06:18:58] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[06:18:58] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.20.1 which is not a depend, softdepend or loadbefore of this plugin.
[06:18:58] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[06:18:58] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[06:18:58] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[06:18:58] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[06:18:58] [Server thread/INFO]: [RoyaleEconomy] Vault detected, economy register attempted.
[06:18:58] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.2
[06:18:58] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v1.17-223;37998ec
[06:18:59] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[06:18:59] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[06:18:59] [Server thread/WARN]: Failed to load biomes via adapter (not present). Will load via bukkit
[06:19:00] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.FAWE_Spigot_v1_16_R3 as the Bukkit adapter
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] ************************************************************
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] * WARNING - YOU ARE RUNNING AN OUTDATED VERSION OF JAVA.
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] * MINECRAFT WILL STOP BEING COMPATIBLE WITH THIS VERSION OF
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] * JAVA WHEN MINECRAFT 1.17 IS RELEASED.
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] *
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] * Please update the version of Java you use to run this server
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] * to at least Java 16. Minecraft 1.17 requires a minimum Java version of 16.
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] *
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] * Current Java version: 11.0.13+8
[06:19:01] [Server thread/INFO]: [com.fastasyncworldedit.serverlib.util.JavaVersionCheck] ************************************************************
[06:19:02] [Server thread/INFO]: [ItemJoin] Enabling ItemJoin v6.1.0-RELEASE-b1031
[06:19:02] [Server thread/INFO]: [BentoBox] Enabling BentoBox v1.16.2
[06:19:02] [Server thread/INFO]: [BentoBox] Loading Settings from config.yml...
[06:19:05] [Server thread/INFO]: [BentoBox] Hooking with Vault...
[06:19:05] [Server thread/INFO]: [BentoBox] Loading addons...
[06:19:05] [Server thread/INFO]: [BentoBox] Loaded 5 addons.
[06:19:05] [Server thread/INFO]: [RoyaleEconomy] Hooked into BentoBox
[06:19:05] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.4.1
[06:19:06] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[06:19:06] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[06:19:06] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[06:19:06] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[06:19:06] [Server thread/INFO]: Preparing level "server"
[06:19:06] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[06:19:07] [Server thread/INFO]: Preparing spawn area: 0%
[06:19:07] [Server thread/INFO]: Preparing spawn area: 0%
[06:19:07] [Server thread/INFO]: Preparing spawn area: 0%
[06:19:08] [Server thread/INFO]: Preparing spawn area: 31%
[06:19:08] [Server thread/INFO]: Time elapsed: 1717 ms
[06:19:08] [Server thread/INFO]: [DisablePortalBreak] Enabling DisablePortalBreak v1.0-SNAPSHOT
[06:19:08] [Server thread/INFO]: [Friends] Enabling Friends v1.5.12-SNAPSHOT (SPIGOT)*
[06:19:08] [Server thread/INFO]: Checking if a new language is available ...
[06:19:09] [Server thread/INFO]: [FancyEnchantments] Enabling FancyEnchantments v1.0.0*
[06:19:09] [Server thread/ERROR]: Error occurred while enabling FancyEnchantments v1.0.0 (Is it up to date?)
java.lang.NoClassDefFoundError: net/minecraft/server/v1_8_R3/World
    at me.gadse.fancyenchantments.managers.EnchantmentManager.<init>(EnchantmentManager.java:47) ~[?:?]
    at me.gadse.fancyenchantments.FancyEnchantments.onEnable(FancyEnchantments.java:33) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:500) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:518) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:432) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:599) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1074) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:291) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: java.lang.ClassNotFoundException: net.minecraft.server.v1_8_R3.World
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:155) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:114) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?]
    ... 12 more
[06:19:09] [Server thread/INFO]: [FancyEnchantments] Disabling FancyEnchantments v1.0.0
[06:19:09] [Server thread/ERROR]: Error occurred while disabling FancyEnchantments v1.0.0 (Is it up to date?)
java.lang.NullPointerException: null
    at me.gadse.fancyenchantments.FancyEnchantments.onDisable(FancyEnchantments.java:65) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:265) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:405) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:533) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:374) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:500) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:518) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:432) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:599) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1074) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:291) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.Thread.run(Thread.java:829) [?:?]
[06:19:09] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.10
[06:19:09] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v5.0.3 which is not a depend, softdepend or loadbefore of this plugin.
[06:19:09] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[06:19:09] [Server thread/WARN]: [RoyaleEconomy] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.10.10 which is not a depend, softdepend or loadbefore of this plugin.
[06:19:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: royaleeconomy
[06:19:09] [Server thread/INFO]: [ItemRarityGlow] Enabling ItemRarityGlow v1.0.0
[06:19:09] [Server thread/INFO]: [EnderDragon] Enabling EnderDragon v2.5.4
[06:19:09] [Server thread/INFO]: [EnderDragon] Enabling plugin...
[06:19:09] [Server thread/INFO]: [EnderDragon] Author: Xanadu13
[06:19:09] [Server thread/INFO]: [EnderDragon] Found version: v1_16_R3
[06:19:09] [Server thread/INFO]: [EnderDragon] Hooking to PlaceholderAPI...
[06:19:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ed
[06:19:09] [Server thread/INFO]: [EnderDragon] Language: English
[06:19:09] [Server thread/INFO]: [EnderDragon] Checking update...
[06:19:09] [Server thread/INFO]: [EnderDragon] File English.yml is out of date,please update it.
[06:19:09] [Server thread/INFO]: [EnderDragon] File config.yml is out of date,please update it.
[06:19:09] [Server thread/INFO]: [EnderDragon] File data.yml is out of date,please update it.
[06:19:09] [Server thread/INFO]: [EnderDragon] You can use /ed update to update the config!
[06:19:09] [Server thread/INFO]: [ItemLoreDamage] Enabling ItemLoreDamage v1.0.0
[06:19:09] [Server thread/INFO]: [wDrops] Enabling wDrops v0.2
[06:19:09] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.2
[06:19:09] [Server thread/INFO]: [BookReport] Enabling BookReport v1.0.0
[06:19:09] [Server thread/INFO]: [EffectPlaceholders] Enabling EffectPlaceholders v1.0.0*
[06:19:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: effects
[06:19:09] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.0.3
[06:19:09] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.16.4-1.16.5 (754)
[06:19:09] [Server thread/WARN]: [ViaVersion] You are running an outdated Java version, please update it to at least Java 17 (your version is 11.0.13).
[06:19:09] [Server thread/WARN]: [ViaVersion] ViaVersion no longer officially supports this version of Java, only offering unsupported compatibility builds.
[06:19:09] [Server thread/WARN]: [ViaVersion] See https://github.com/ViaVersion/ViaVersion/releases/tag/5.0.0 for more information.
[06:19:10] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.1
[06:19:10] [Server thread/INFO]: [NBTAPI] Adding listeners...
[06:19:10] [Server thread/INFO]: [NBTAPI] Gson:
[06:19:10] [Server thread/INFO]: [NBTAPI] Checking bindings...
[06:19:10] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[06:19:10] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[06:19:10] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[06:19:10] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[06:19:10] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.0.3
[06:19:10] [Server thread/INFO]: [JukeBox] Enabling JukeBox v1.20.6
[06:19:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jukebox
[06:19:10] [Server thread/INFO]: [JukeBox] Placeholders registered
[06:19:10] [Server thread/INFO]: [JukeBox] This JukeBox version requires NoteBlockAPI version 1.5.0 or more. Please ensure you have the right version before using JukeBox (you are using NBAPI ver. 1.6.2)
[06:19:10] [Server thread/INFO]: [JukeBox] Loaded language file en.yml
[06:19:11] [Server thread/INFO]: [JukeBox] 1 songs loadeds. Sorting by name... 
[06:19:11] [Server thread/INFO]: [JukeBox] Songs sorted ! 1 songs. Number of pages : 1
[06:19:11] [Server thread/INFO]: [NpcIntroductions] Enabling NpcIntroductions v1.0.0
[06:19:11] [Server thread/WARN]: [NpcIntroductions] Could not save data.yml to plugins/NpcIntroductions/data.yml because data.yml already exists.
[06:19:11] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.11
[06:19:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_16_R3! Trying to find NMS support
[06:19:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[06:19:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[06:19:11] [Server thread/INFO]: [DamageIndicators] Enabling DamageIndicators v1.0.0-1.16.5*
[06:19:11] [Server thread/INFO]: [ILibrary] Enabling ILibrary v3.12.0
[06:19:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: v1_16_R3! Trying to find NMS support
[06:19:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[06:19:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'ILibrary' to create a bStats instance!
[06:19:12] [Server thread/WARN]: [NBTAPI] #########################################- NBTAPI -#########################################
[06:19:12] [Server thread/WARN]: [NBTAPI] The NBT-API inside ILibrary is the plugin version, not the API!
[06:19:12] [Server thread/WARN]: [NBTAPI] The plugin itself should never be shaded! Remove the `-plugin` from the dependency and fix your shading setup.
[06:19:12] [Server thread/WARN]: [NBTAPI] For more info check: https://github.com/tr7zw/Item-NBT-API/wiki/Using-Maven#option-2-shading-the-nbt-api-into-your-plugin
[06:19:12] [Server thread/WARN]: [NBTAPI] #########################################- NBTAPI -#########################################
[06:19:12] [Server thread/INFO]: [ILibrary] Init version specific ICraftingManager for MC1_16_R3
[06:19:12] [Server thread/INFO]: [ILibrary] Using: de.ancash.minecraft.crafting.ContainerWorkbench_1_14_1_16
[06:19:12] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.4-T20240629215752
[06:19:12] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[06:19:12] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[06:19:12] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[06:19:13] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[06:19:13] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[06:19:13] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[06:19:13] [Server thread/INFO]: [Minepacks] Loading item translations ...
[06:19:13] [Server thread/INFO]: [Minepacks] Finished loading item translations for 829 items.
[06:19:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: minepacks
[06:19:13] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[06:19:13] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[06:19:13] [Server thread/INFO]: [HubThat] Enabling HubThat v10.1.184
[06:19:13] [Server thread/WARN]: [HubThat] HubThat: Checking if config exists...
[06:19:13] [Server thread/WARN]: [HubThat] Loading config...
[06:19:13] [Server thread/INFO]: [HubThat] All files are working correctly.
[06:19:13] [Server thread/INFO]: [HubThat] Plugin HubThat Successfully Loaded!
[06:19:13] [Server thread/INFO]: [InteractiveBooks] Enabling InteractiveBooks v1.5.6
[06:19:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[06:19:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[06:19:13] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[06:19:13] [Server thread/INFO]: [InteractiveBooks] [ACF] Enabled Asynchronous Tab Completion Support!
[06:19:14] [Server thread/INFO]: [NBTNexus] Enabling NBTNexus v1.1.4
[06:19:14] [Server thread/INFO]: [NBTNexus] Checking plugins/NBTNexus/config.yml for completeness (comparing to config.yml)
[06:19:14] [Server thread/INFO]: [NBTNexus] Experimental editing of items in packets is disabled
[06:19:14] [Server thread/INFO]: [DeathTeleport] Enabling DeathTeleport v1.0*
[06:19:14] [Server thread/INFO]: Cargado death teleport village
[06:19:14] [Server thread/WARN]: [DeathTeleport] Loaded class com.sk89q.worldguard.bukkit.WorldGuardPlugin from WorldGuard v7.0.5+3827266 which is not a depend, softdepend or loadbefore of this plugin.
[06:19:14] [Server thread/INFO]: [CustomPlaceholders] Enabling CustomPlaceholders v1.0
[06:19:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: customplaceholders
[06:19:14] [Server thread/INFO]: [FancyCrafting] Enabling FancyCrafting v1.0.1*
[06:19:14] [Server thread/ERROR]: Error occurred while enabling FancyCrafting v1.0.1 (Is it up to date?)
java.lang.NoClassDefFoundError: net/minecraft/server/v1_8_R3/IInventory
    at me.gadse.fancycrafting.FancyCrafting.reload(FancyCrafting.java:64) ~[?:?]
    at me.gadse.fancycrafting.FancyCrafting.onEnable(FancyCrafting.java:52) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:263) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:370) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:500) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugin(CraftServer.java:518) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.craftbukkit.v1_16_R3.CraftServer.enablePlugins(CraftServer.java:432) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.loadWorld(MinecraftServer.java:599) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.DedicatedServer.init(DedicatedServer.java:298) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1074) ~[patched_1.16.5.jar:git-Paper-794]
    at net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:291) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.Thread.run(Thread.java:829) [?:?]
Caused by: java.lang.ClassNotFoundException: net.minecraft.server.v1_8_R3.IInventory
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:155) ~[patched_1.16.5.jar:git-Paper-794]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:114) ~[patched_1.16.5.jar:git-Paper-794]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?]
    ... 12 more
[06:19:14] [Server thread/INFO]: [FancyCrafting] Disabling FancyCrafting v1.0.1
[06:19:14] [Server thread/INFO]: [BetterProfiles] Enabling BetterProfiles v1.4-BETA
[06:19:14] [Server thread/INFO]: [BetterProfiles] Hex colors are available!
[06:19:14] [Server thread/INFO]:   ___      _   _           ___          __ _ _         
[06:19:14] [Server thread/INFO]:  | _ ) ___| |_| |_ ___ _ _| _ \_ _ ___ / _(_) |___ ___ 
[06:19:14] [Server thread/INFO]:  | _ \/ -_)  _|  _/ -_) '_|  _/ '_/ _ \  _| | / -_|_-< 
[06:19:14] [Server thread/INFO]:  |___/\___|\__|\__\___|_| |_| |_| \___/_| |_|_\___/__/ 
[06:19:14] [Server thread/INFO]: 
[06:19:14] [Server thread/INFO]:    Running plugin BetterProfiles v1.4-BETA
[06:19:14] [Server thread/INFO]:    Server running Paper version git-Paper-794 (MC: 1.16.5)
[06:19:14] [Server thread/INFO]:    (Implementing API version git-Paper-794 (MC: 1.16.5))
[06:19:14] [Server thread/INFO]:    (Developed by  AlonsoAliaga - Thanks for using my plugin ❤)
[06:19:14] [Server thread/INFO]:    (If you loved the plugin consider leaving a review and mentioning your server IP in it!
[06:19:14] [Server thread/INFO]: 
[06:19:14] [Server thread/INFO]: 
[06:19:14] [Server thread/INFO]: ===================================================================================
[06:19:14] [Server thread/INFO]: [BetterProfiles] You are using a Spigot fork (PAPER). Plugin might have errors
[06:19:14] [Server thread/INFO]: [BetterProfiles] and not work properly. Consider using SPIGOT!
[06:19:14] [Server thread/INFO]: ===================================================================================
[06:19:14] [Server thread/INFO]: 
[06:19:14] [Server thread/INFO]: [BetterProfiles] Configuration auto-update is not enabled!
[06:19:14] [Server thread/INFO]: [BetterProfiles] BungeeCord action bar available. Hooking..
[06:19:14] [Server thread/INFO]: [BetterProfiles] ProtocolLib found! Hooking..
[06:19:14] [Server thread/INFO]: [SQLite] Attempting to create 'betterprofiles' table..
[06:19:14] [Server thread/INFO]: [SQLite] Connecting to database 'database-betterprofiles.db'!
[06:19:14] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC
[06:19:14] [Server thread/INFO]: [SQLite] Successfully connected to database!
[06:19:14] [Server thread/INFO]: [SQLite] Table 'betterprofiles' has been created if didn't exist.
[06:19:14] [Server thread/INFO]: [BetterProfiles] Enabled profile on command.
[06:19:14] [Server thread/INFO]: [BetterProfiles] Enabling real time update profile..
[06:19:14] [Server thread/INFO]: [BetterProfiles] PlayerSwapHandItemsEvent class found. Enabling..
[06:19:14] [Server thread/INFO]: [BetterProfiles] Real time profile update is enabled.
[06:19:14] [Server thread/INFO]: [BetterProfiles] Enabled profile on right click.
[06:19:14] [Server thread/INFO]: [BetterProfiles] Loaded 6 items!
[06:19:14] [Server thread/INFO]: [DeluxeBazaar] Enabling DeluxeBazaar v6.6
[06:19:14] [Server thread/INFO]: [STDOUT] dragonode.in - mugcraft
[06:19:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[06:19:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[06:19:14] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[06:19:14] [Server thread/INFO]: [DeluxeBazaar] (INFO) Your server is running on v1_16_R3.
[06:19:14] [Server thread/INFO]: [DeluxeBazaar] (INFO) Database successfully loaded! Took 49ms to complete!
[06:19:14] [Server thread/INFO]: [DeluxeBazaar] (INFO) Plugin is enabled! Plugin Version: v6.6
[06:19:14] [Server thread/INFO]: [Chatty] Enabling Chatty v2.18
[06:19:14] [Server thread/INFO]: [Chatty] Vault has successful hooked.
[06:19:14] [Server thread/INFO]: [Chatty] PlaceholderAPI has successful hooked.
[06:19:14] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
[06:19:15] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[06:19:15] [Server thread/INFO]: [Essentials] No kits found to migrate.
[06:19:15] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[06:19:15] [Server thread/INFO]: [Essentials] Using locale en
[06:19:15] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[06:19:16] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[06:19:16] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[06:19:16] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[06:19:16] [Server thread/INFO]: [ItemLore] Enabling ItemLore v1.0.0
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.3-Release
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Hooked into PlaceholderAPI!
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Registered command: sbmenu for menu: skyblock-menu
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Registered command: visit for menu: visit
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Registered command: data for menu: datamanager
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Registered command: punish for menu: punish
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Registered command: punish-mute for menu: punish-mute
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Registered command: punish-mute-confirm for menu: punish-mute-confirm
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Registered command: punish-ban for menu: punish-ban
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Registered command: punish-ban-confirm for menu: punish-ban-confirm
[06:19:16] [Server thread/WARN]: [DeluxeMenus] Material for item: SlayeerLeaderboar in menu: maddox is not a valid material name / id!
[06:19:16] [Server thread/WARN]: [DeluxeMenus] Skipping item: SlayeerLeaderboar
[06:19:16] [Server thread/INFO]: [DeluxeMenus] 21 GUI menus loaded!
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault for economy requirement!
[06:19:16] [Server thread/INFO]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[06:19:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus
[06:19:16] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.5+3827266
[06:19:16] [Server thread/ERROR]: No TreeType mapping for TreeGenerator.TreeType.AZALEA
[06:19:16] [Server thread/WARN]: Your FAWE version is newer than git-Paper-794 (MC: 1.16.5) and contains features of future minecraft versions which do not exist in git-Paper-794 (MC: 1.16.5), hence the tree type AZALEA is not available.
[06:19:16] [Server thread/INFO]: [WorldGuard] (server) TNT ignition is PERMITTED.
[06:19:16] [Server thread/INFO]: [WorldGuard] (server) Lighters are PERMITTED.
[06:19:16] [Server thread/INFO]: [WorldGuard] (server) Lava fire is PERMITTED.
[06:19:16] [Server thread/INFO]: [WorldGuard] (server) Fire spread is UNRESTRICTED.
[06:19:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'server'
[06:19:16] [Server thread/INFO]: [WorldGuard] Loading region data...
[06:19:16] [Server thread/INFO]: [SimpleScore] Enabling SimpleScore v3.6.3-beta.1
[06:19:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: simplescore
[06:19:16] [Server thread/INFO]: [Skript] Enabling Skript v2.9.3
[06:19:18] [ForkJoinPool.commonPool-worker-19/INFO]: [Skript] You're currently running the latest stable version of Skript.
[06:19:23] [Server thread/INFO]: [Skript] Loaded 127092 aliases in 5807ms
[06:19:24] [Server thread/WARN]: [Skript] Loaded class net.kyori.adventure.sound.Sound$Builder from SCore v3.9.35 which is not a depend, softdepend or loadbefore of this plugin.
[06:19:24] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[06:19:24] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.10
[06:19:25] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[06:19:25] [Server thread/INFO]: [skQuery] Beginning to process a total of 117 from SkQuery
[06:19:25] [Server thread/INFO]: [skQuery] Out of 117 classes, 117 classes were loaded from SkQuery
[06:19:25] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.29-SNAPSHOT (build 2548)
[06:19:25] [Server thread/INFO]: [UG-RegionBlocks] Enabling UG-RegionBlocks v1.0-Beta
[06:19:25] [Server thread/INFO]: [RegionPlaceholders] Enabling RegionPlaceholders v1.0.0
[06:19:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: regionplaceholders
[06:19:25] [Server thread/INFO]: [AuctionMaster] Enabling AuctionMaster v3.1
[06:19:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionmaster
[06:19:25] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Auctions Database SQL.
[06:19:25] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Auctions Player List SQL.
[06:19:25] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Preview Data SQL.
[06:19:25] [Server thread/INFO]: [AuctionMasterItemDisplay] Enabling AuctionMasterItemDisplay v2.1
[06:19:25] [Server thread/INFO]: [SCore] Enabling SCore v3.9.35
[06:19:26] [Server thread/INFO]: ================ SCore ================
[06:19:26] [Server thread/INFO]: SCore Version of the server git-Paper-794 (MC: 1.16.5) !
[06:19:26] [Server thread/INFO]: SCore ExecutableItems hooked !  (5.9.35)
[06:19:26] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.10.10)
[06:19:26] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.5+3827266)
[06:19:26] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)
[06:19:26] [Server thread/INFO]: SCore BentoBox hooked !  (1.16.2)
[06:19:26] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.0-b846)
[06:19:26] [Server thread/INFO]: SCore ProtocolLib hooked !
[06:19:26] [Server thread/INFO]: SCore NBTAPI hooked !  (2.11.1)
[06:19:26] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.11)
[06:19:26] [Server thread/INFO]: SCore Locale setup: EN
[06:19:26] [Server thread/INFO]: SCore Language of the editor setup on EN
[06:19:26] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[06:19:26] [Server thread/INFO]: SCore onnection to the db...
[06:19:26] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[06:19:26] [Server thread/INFO]: SCore Creating table Commands if not exists...
[06:19:26] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[06:19:26] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[06:19:26] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[06:19:26] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[06:19:26] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[06:19:26] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[06:19:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore
[06:19:26] [Server thread/INFO]: ================ SCore ================
[06:19:26] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v5.9.35
[06:19:26] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[06:19:26] [Server thread/INFO]: ExecutableItems PlaceholderAPI hooked !
[06:19:26] [Server thread/INFO]: ExecutableItems NBTAPI hooked !
[06:19:28] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[06:19:28] [Server thread/INFO]: [HandyOrbs] Enabling HandyOrbs v2.1.3
[06:19:28] [Server thread/INFO]: [HandyOrbs] Loading NBT API Util...
[06:19:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[06:19:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[06:19:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[06:19:28] [Server thread/INFO]: [HandyOrbs] Gson:
[06:19:28] [Server thread/INFO]: [CombatLogX] Enabling CombatLogX v10.3.8.3
[06:19:28] [Thread-19/WARN]: [NBTAPI] [NBTAPI] The NBT-API at 'package me.qKing12.HandyOrbs.NBT' seems to be outdated!
[06:19:28] [Thread-19/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.6.0' Newest Version: 2.13.2'
[06:19:28] [Thread-19/WARN]: [NBTAPI] [NBTAPI] Please update the nbt-api or the plugin that contains the api!
[06:19:28] [Server thread/INFO]: [CombatLogX] Registered command '/combatlogx'.
[06:19:28] [Server thread/INFO]: [CombatLogX] Registered command '/combat-timer'.
[06:19:28] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Cheat Prevention v15.3'...
[06:19:28] [Server thread/INFO]: [CombatLogX] Enabling expansion 'Mob Tagger v15.2'...
[06:19:28] [Server thread/INFO]: [CombatLogX] Successfully enabled 2 expansions.
[06:19:28] [Server thread/INFO]: [CombatLogX] CombatLogX is now enabled.
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Enabling DragonEggDrop v1.9.2
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Loading loot tables...
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Done! Successfully loaded 6 loot tables
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Loading particle shape definitions...
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Done! Successfully loaded 3 shape definitions
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Loading dragon templates...
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Done! Successfully loaded 12 dragon templates
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Reading temporary data from previous server session...
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Registering event listeners
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Registering command executors and tab completion
[06:19:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dragoneggdrop
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Hooked into PlaceholderAPI - Expansion registered
[06:19:28] [Server thread/INFO]: [DragonEggDrop] Successfully enabled metrics. Thanks for keeping these enabled!
[06:19:28] [Server thread/INFO]: [AdvancedTabOverlay] Enabling AdvancedTabOverlay v1.2.3
[06:19:29] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.0-b846
[06:19:29] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.0-b846" 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--].
[06:19:29] [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.
[06:19:29] [Server thread/INFO]: Preparing start region for dimension minecraft:islands
[06:19:29] [Server thread/INFO]: Preparing spawn area: 0%
[06:19:30] [Server thread/INFO]: Preparing spawn area: 9%
[06:19:30] [Server thread/INFO]: Time elapsed: 673 ms
[06:19:30] [Server thread/INFO]: [WorldGuard] (islands) TNT ignition is PERMITTED.
[06:19:30] [Server thread/INFO]: [WorldGuard] (islands) Lighters are PERMITTED.
[06:19:30] [Server thread/INFO]: [WorldGuard] (islands) Lava fire is PERMITTED.
[06:19:30] [Server thread/INFO]: [WorldGuard] (islands) Fire spread is UNRESTRICTED.
[06:19:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'islands'
[06:19:30] [Server thread/INFO]: [Multiverse-Core] 2 - World(s) loaded.
[06:19:30] [Server thread/INFO]: [Multiverse-Core] Version 4.3.0-b846 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[06:19:30] [Server thread/INFO]: [DragonSlayer] Enabling DragonSlayer v0.12.5_Jeppa
[06:19:30] [Server thread/INFO]: [DragonSlayer] Checking for updates...
[06:19:30] [Server thread/INFO]: [DragonSlayer] A new update is available: version 0.14.1
[06:19:30] [Server thread/INFO]: [DragonSlayer] Events 1.9+ enabled!
[06:19:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dragonslayer
[06:19:30] [Server thread/INFO]: [DragonSlayer] ProtocolLib found...
[06:19:30] [Server thread/INFO]: [DragonSlayer] ...starting Metrics...
[06:19:30] [Server thread/INFO]: [DragonSlayer] Vault dependency found, rewards will be enabled!
[06:19:30] [Server thread/INFO]: [DragonSlayer] PlaceholderAPI found, will be used!
[06:19:30] [Server thread/INFO]: [DragonSlayer] Essentials found, will be used!
[06:19:30] [Server thread/INFO]: [Codex] Enabling Codex v1.16.2
[06:19:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: codex
[06:19:30] [Server thread/INFO]: [Codex] Has been enabled! Version: 1.16.2
[06:19:30] [Server thread/INFO]: [Codex] Thanks for using my plugin!  ~Ajneb97
[06:19:31] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
[06:19:31] [Server thread/INFO]: [Multiverse-Portals] 0 - Portals(s) loaded
[06:19:31] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[06:19:31] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
[06:19:31] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[06:19:32] [ForkJoinPool.commonPool-worker-17/WARN]: [PlaceholderAPI] Loaded class net.ess3.api.IEssentials from Essentials v2.20.1 which is not a depend, softdepend or loadbefore of this plugin.
[06:19:32] [Server thread/INFO]: Running delayed init tasks
[06:19:32] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.5+3827266 which is not a depend, softdepend or loadbefore of this plugin.
[06:19:32] [Craft Scheduler Thread - 8/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[06:19:32] [Craft Scheduler Thread - 6/INFO]: [ItemJoin] Hooked into { Multiverse-Core, WorldGuard, PlaceholderAPI, ProtocolLib, Citizens, Vault }
[06:19:32] [Craft Scheduler Thread - 22/INFO]: [ItemJoin] Checking for updates...
[06:19:32] [Craft Scheduler Thread - 14/INFO]: [Essentials] Fetching version information...
[06:19:32] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[06:19:32] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[06:19:32] [Craft Scheduler Thread - 12/INFO]: [DecentHolograms] Loading holograms... 
[06:19:32] [Craft Scheduler Thread - 19/INFO]: [Vault] Checking for Updates ... 
[06:19:32] [Craft Scheduler Thread - 12/INFO]: [DecentHolograms] Loaded 1 holograms!
[06:19:32] [Craft Scheduler Thread - 22/INFO]: [ItemJoin] You are up to date!
[06:19:32] [Craft Scheduler Thread - 19/INFO]: [Vault] No new version available
[06:19:32] [Craft Scheduler Thread - 7/INFO]: [EnderDragon] You are using the latest version (v2.5.4)...
[06:19:33] [Server thread/INFO]: [ItemJoin] 2/2 Custom item(s) loaded!
[06:19:33] [Server thread/INFO]: [BentoBox] Hooking with PlaceholderAPI...
[06:19:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bentobox
[06:19:33] [Server thread/INFO]: [BentoBox] Enabling game mode addons...
[06:19:33] [Server thread/INFO]: [BentoBox] Enabling BSkyBlock (1.14.4)...
[06:19:33] [Server thread/INFO]: [BentoBox] Enabling other addons...
[06:19:33] [Server thread/INFO]: [BentoBox] Enabling IslandHOLO (1.16.2)...
[06:19:33] [Server thread/ERROR]: [BentoBox] [IslandHOLO] HolographicDisplays Plugin not found! - IslandHOLO disabled!
[06:19:33] [Server thread/INFO]: [BentoBox] IslandHOLO is disabled.
[06:19:33] [Server thread/INFO]: [BentoBox] Enabling IslandNPC (1.16.2)...
[06:19:33] [Server thread/INFO]: [BentoBox] Enabling Visit (1.3.0)...
[06:19:33] [Server thread/INFO]: [BentoBox] Enabling Biomes (1.14.0)...
[06:19:33] [Server thread/INFO]: [BentoBox] Loading biomes...
[06:19:33] [Server thread/WARN]: [BentoBox] [Biomes] Level add-on not found so level requirements will be ignored!
[06:19:33] [ForkJoinPool.commonPool-worker-23/INFO]: [DragonEggDrop] Your version of DragonEggDrop (1.9.2) is up to date!
[06:19:33] [Server thread/INFO]: [BentoBox] Addons successfully enabled.
[06:19:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bskyblock
[06:19:33] [Server thread/ERROR]: [BentoBox] *****************CRITIAL ERROR!******************
[06:19:33] [Server thread/ERROR]: [BentoBox] Island distance mismatch!
World 'islands' distance 400 != island range 4000!
Island ID in database is BSkyBlock0832dd76-712f-4911-9fd1-7ec57827908e.
Island distance in config.yml cannot be changed mid-game! Fix config.yml or clean database.
[06:19:33] [Server thread/ERROR]: [BentoBox] Could not load islands! Disabling BentoBox...
[06:19:33] [Server thread/ERROR]: [BentoBox] *************************************************
[06:19:33] [Server thread/INFO]: [BentoBox] Disabling addons...
[06:19:33] [Server thread/INFO]: [BentoBox] Disabling BSkyBlock...
[06:19:33] [Server thread/INFO]: [BentoBox] Disabling IslandNPC...
[06:19:33] [Server thread/INFO]: [BentoBox] Disabling Visit...
[06:19:33] [Server thread/INFO]: [BentoBox] Disabling Biomes...
[06:19:33] [Server thread/INFO]: [BentoBox] Addons successfully disabled.
[06:19:33] [Server thread/INFO]: [BentoBox] Removing coops from islands...
[06:19:33] [Server thread/INFO]: [BentoBox] Saving islands - this has to be done sync so it may take a while with a lot of islands...
[06:19:33] [Server thread/INFO]: [BentoBox] Islands saved.
[06:19:33] [Server thread/INFO]: [BentoBox] Closing database.
[06:19:33] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[06:19:33] [Server thread/INFO]: [Skript] Loading variables...
[06:19:33] [Server thread/INFO]: [Skript] Loaded 20 variables in 0.0 seconds
[06:19:33] [Server thread/INFO]: [Skript] Line 3: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 8 spaces
[06:19:33] [Server thread/INFO]:     Line: victim is a player
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 4: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 8 spaces
[06:19:33] [Server thread/INFO]:     Line: if victim is in "islands":
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 5: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 12 spaces
[06:19:33] [Server thread/INFO]:     Line: if victim has permission "booster.cookie":
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 6: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 16 spaces
[06:19:33] [Server thread/INFO]:     Line: make the victim execute command "/is"
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 7: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 16 spaces
[06:19:33] [Server thread/INFO]:     Line: wait 1 ticks
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 8: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 16 spaces
[06:19:33] [Server thread/INFO]:     Line: send " &c☠ &7You either died or got killed!" to victim
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 9: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 16 spaces
[06:19:33] [Server thread/INFO]:     Line: send "&cYou died!" to victim
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 10: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 16 spaces
[06:19:33] [Server thread/INFO]:     Line: stop
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 11: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 12 spaces
[06:19:33] [Server thread/INFO]:     Line: else:
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 12: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 16 spaces
[06:19:33] [Server thread/INFO]:     Line: make the victim execute command "/is"
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 13: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 3 tabs
[06:19:33] [Server thread/INFO]:     Line: set victim's balance to victim's balance / 2
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 14: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 3 tabs
[06:19:33] [Server thread/INFO]:     Line: wait 1 ticks
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 15: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 3 tabs
[06:19:33] [Server thread/INFO]:     Line: send " &c☠ &7You either died or got killed!" to victim
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 16: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 3 tabs
[06:19:33] [Server thread/INFO]:     Line: send "&cYou died and lost %victim's balance% &ccoins!" to victim
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 17: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     indentation error: expected 2 tabs, but found 3 tabs
[06:19:33] [Server thread/INFO]:     Line: stop
[06:19:33] [Server thread/INFO]:  
[06:19:33] [Server thread/INFO]: [Skript] Line 2: (PurseLoss.sk)
[06:19:33] [Server thread/INFO]:     Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section.
[06:19:33] [Server thread/INFO]:     Line: if the attacker is a entity:
[06:19:33] [Server thread/INFO]:  
[06:19:35] [Server thread/INFO]: [Skript] Line 3: (Lift.sk)
[06:19:35] [Server thread/INFO]:     "gold-mine" is neither an entity, a chunk nor a world
[06:19:35] [Server thread/INFO]:     Line: if player is in "gold-mine", "diamond-reserve", "lapis-quarry", "obsidian-sanctuary", "pigmans-den" or "slimehill":
[06:19:35] [Server thread/INFO]:  
[06:19:35] [Server thread/INFO]: [Skript] Line 6: (Lift.sk)
[06:19:35] [Server thread/INFO]:     'else' has to be placed just after another 'if' or 'else if' section
[06:19:35] [Server thread/INFO]:     Line: else:
[06:19:35] [Server thread/INFO]:  
[06:19:35] [Server thread/INFO]: [Skript] Line 27: (PurseLoss.sk)
[06:19:35] [Server thread/INFO]:     money of the attacked entity can't be set to 'victim's balance / 2' because the latter is neither a money nor a number
[06:19:35] [Server thread/INFO]:     Line: set victim's balance to victim's balance / 2
[06:19:35] [Server thread/INFO]:  
[06:19:35] [Server thread/INFO]: [Skript] Line 66: (Special.sk)
[06:19:35] [Server thread/INFO]:     Can't compare an entity with 'in "spiders-den"'
[06:19:35] [Server thread/INFO]:     Line: victim is in "spiders-den"
[06:19:35] [Server thread/INFO]:  
[06:19:36] [Server thread/INFO]: [Skript] Line 185: (Special.sk)
[06:19:36] [Server thread/INFO]:     Can't compare a block with 'in "spiders-den"'
[06:19:36] [Server thread/INFO]:     Line: if event-block is in "spiders-den":
[06:19:36] [Server thread/INFO]:  
[06:19:36] [Server thread/INFO]: [Skript] Line 189: (Special.sk)
[06:19:36] [Server thread/INFO]:     'else' has to be placed just after another 'if' or 'else if' section
[06:19:36] [Server thread/INFO]:     Line: else:
[06:19:36] [Server thread/INFO]:  
[06:19:36] [Server thread/INFO]: [Skript] Line 199: (Special.sk)
[06:19:36] [Server thread/INFO]:     "forest" is neither an entity, a chunk nor a world
[06:19:36] [Server thread/INFO]:     Line: if event-block is in "forest" or "forest-island":
[06:19:36] [Server thread/INFO]:  
[06:19:36] [Server thread/INFO]: [Skript] Line 203: (Special.sk)
[06:19:36] [Server thread/INFO]:     'else' has to be placed just after another 'if' or 'else if' section
[06:19:36] [Server thread/INFO]:     Line: else:
[06:19:36] [Server thread/INFO]:  
[06:19:36] [Server thread/INFO]: [Skript] Line 212: (Special.sk)
[06:19:36] [Server thread/INFO]:     "forest" is neither an entity, a chunk nor a world
[06:19:36] [Server thread/INFO]:     Line: if event-block is in "forest" or "forest-island":
[06:19:36] [Server thread/INFO]:  
[06:19:36] [Server thread/INFO]: [Skript] Line 239: (Special.sk)
[06:19:36] [Server thread/INFO]:     'else' has to be placed just after another 'if' or 'else if' section
[06:19:36] [Server thread/INFO]:     Line: else:
[06:19:36] [Server thread/INFO]:  
[06:19:37] [Server thread/INFO]: [Skript] Loaded 8 scripts with a total of 35 structures in 3.47 seconds
[06:19:37] [Server thread/INFO]: [Skript] Finished loading.
[06:19:37] [Server thread/INFO]: [EnderDragon] File default.yml is out of date,please update it.
[06:19:37] [Server thread/INFO]: [EnderDragon] File special.yml is out of date,please update it.
[06:19:37] [Server thread/INFO]: [EnderDragon] File old.yml is out of date,please update it.
[06:19:37] [Server thread/INFO]: [EnderDragon] File wise.yml is out of date,please update it.
[06:19:37] [Server thread/INFO]: [EnderDragon] File unstable.yml is out of date,please update it.
[06:19:37] [Server thread/INFO]: [EnderDragon] Reading file view.yml
[06:19:39] [Server thread/INFO]: [Citizens] Loaded 92 NPCs.
[06:19:39] [Server thread/INFO]: [BentoBox] Added world islands (NORMAL)
[06:19:39] [Server thread/WARN]: [ILibrary] *************************************************
[06:19:39] [Server thread/WARN]: [ILibrary] * There is a new version of ILibrary available!
[06:19:39] [Server thread/WARN]: [ILibrary] *  
[06:19:39] [Server thread/WARN]: [ILibrary] * Your version:   v3.12.0
[06:19:39] [Server thread/WARN]: [ILibrary] * Latest version: v3.12.1
[06:19:39] [Server thread/WARN]: [ILibrary] *  
[06:19:39] [Server thread/WARN]: [ILibrary] * Download:
[06:19:39] [Server thread/WARN]: [ILibrary] *   https://www.spigotmc.org/resources/89796
[06:19:39] [Server thread/WARN]: [ILibrary] *************************************************
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerlist
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server
[06:19:39] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.sk89q.worldguard.WorldGuard from WorldGuard v7.0.5+3827266 which is not a depend, softdepend or loadbefore of this plugin.
[06:19:39] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.sk89q.worldedit.world.World from FastAsyncWorldEdit v1.17-223;37998ec which is not a depend, softdepend or loadbefore of this plugin.
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: worldguard
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: math
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mph
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: checkitem
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: progress
[06:19:39] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend, softdepend or loadbefore of this plugin.
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: formatter
[06:19:39] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.131 which is not a depend, softdepend or loadbefore of this plugin.
[06:19:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms
[06:19:39] [Server thread/INFO]: 12 placeholder hooks successfully registered!
[06:19:39] [Server thread/INFO]: Done (70.254s)! For help, type "help"
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] ************************************************************
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * WARNING - YOU ARE RUNNING AN OUTDATED VERSION OF JAVA.
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * PAPER WILL STOP BEING COMPATIBLE WITH THIS VERSION OF
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * JAVA WHEN MINECRAFT 1.17 IS RELEASED.
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] *
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * Please update the version of Java you use to run Paper
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * to at least Java 16. When Paper for Minecraft 1.17 is
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * released support for versions of Java before 16 will
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * be dropped.
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] *
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * Current Java version: 11.0.13
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] *
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] * Check this forum post for more information: 
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] *   https://papermc.io/java16
[06:19:39] [Server thread/WARN]: [io.papermc.paper.util.PaperJvmChecker] ************************************************************
[06:19:39] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7410ms or 148 ticks behind
[06:19:39] [Server thread/INFO]: Timings Reset
[06:19:39] [Craft Scheduler Thread - 7/INFO]: [BentoBox] Loaded Blueprint Bundle 'default' for BSkyBlock.
[06:19:40] [Craft Scheduler Thread - 7/INFO]: [BentoBox] Loaded blueprint 'island' for BSkyBlock
[06:19:40] [Server thread/INFO]: [EnderDragon] 0 auto_respawn task(s) started to run...
[06:19:42] [Server thread/INFO]: [Essentials] Created a User for pat (90408c39-003c-2e73-8125-0657cdccafe2) for non Bukkit type: net.citizensnpcs.nms.v1_16_R3.entity.EntityHumanNPC$PlayerNPC
[06:19:43] [Server thread/WARN]: [AdvancedTabOverlay] There have been 16 warnings while loading plugins/AdvancedTabOverlay/tabLists/default.yml
WARNING: Error in placeholder ${viewer souls_collected}:
Unknown placeholder
 in 'reader', line 31, column 16:
        condition: ${viewer souls_collected} >= 1
                   ^
 in use of placeholder ${souls}
 in 'reader', line 103, column 14:
        - {text: "${souls}", icon: "colors/dark_g ... 
                 ^
WARNING: Error in placeholder ${viewer souls_collected}:
Unknown placeholder
 in 'reader', line 36, column 16:
        condition: ${viewer souls_collected} >= 1
                   ^
 in use of placeholder ${souls_collected}
 in 'reader', line 104, column 14:
        - {text: "${souls_collected}", icon: "col ... 
                 ^
WARNING: Error in placeholder ${viewer souls_collected}:
Unknown placeholder
 in 'reader', line 37, column 11:
        true: "&f Found: &e${viewer souls_coll ... 
              ^
 in use of placeholder ${souls_collected}
 in 'reader', line 104, column 14:
        - {text: "${souls_collected}", icon: "col ... 
                 ^
WARNING: Error in placeholder ${viewer souls_total}:
Unknown placeholder
 in 'reader', line 37, column 11:
        true: "&f Found: &e${viewer souls_coll ... 
              ^
 in use of placeholder ${souls_collected}
 in 'reader', line 104, column 14:
        - {text: "${souls_collected}", icon: "col ... 
                 ^
WARNING: Error in placeholder ${viewer skills_health_total}:
Unknown placeholder
 in 'reader', line 116, column 14:
        - {text: " &fHealth &c❤${viewer skills_he ... 
                 ^
WARNING: Error in placeholder ${viewer skills_defense_total}:
Unknown placeholder
 in 'reader', line 117, column 14:
        - {text: " &fDefense &a❇${viewer skills_d ... 
                 ^
WARNING: Error in placeholder ${viewer skills_strength_total}:
Unknown placeholder
 in 'reader', line 118, column 14:
        - {text: " &fStrength &c❁${viewer skills_ ... 
                 ^
WARNING: Error in placeholder ${viewer skills_speed_total}:
Unknown placeholder
 in 'reader', line 119, column 14:
        - {text: " &fSpeed &f✦${viewer skills_spe ... 
                 ^
WARNING: Error in placeholder ${viewer skills_crit_chance_total}:
Unknown placeholder
 in 'reader', line 120, column 14:
        - {text: " &fCrit Chance &9☣${viewer skil ... 
                 ^
WARNING: Error in placeholder ${viewer skills_crit_damage_total}:
Unknown placeholder
 in 'reader', line 121, column 14:
        - {text: " &fCrit Damage &9☠${viewer skil ... 
                 ^
WARNING: Error in placeholder ${viewer skills_intelligence_total}:
Unknown placeholder
 in 'reader', line 122, column 14:
        - {text: " &fIntelligence &b✎${viewer ski ... 
                 ^
WARNING: Error in placeholder ${viewer skills_sea_creature_chance_total}:
Unknown placeholder
 in 'reader', line 123, column 14:
        - {text: " &fSea Creature &3α${viewer ski ... 
                 ^
WARNING: Error in placeholder ${viewer skills_pet_luck_total}:
Unknown placeholder
 in 'reader', line 124, column 14:
        - {text: " &fPet Luck &d♠${viewer skills_ ... 
                 ^
WARNING: Error in placeholder ${viewer skills_ore_chance_total}:
Unknown placeholder
 in 'reader', line 125, column 14:
        - {text: " &fMin. Fortune &6☘${view
                 ^
WARNING: Error in placeholder ${viewer skills_crop_chance_total}:
Unknown placeholder
 in 'reader', line 126, column 14:
        - {text: " &fFar. Fortune &6☘${viewer ski ... 
                 ^
WARNING: Error in placeholder ${viewer skills_log_chance_total}:
Unknown placeholder
 in 'reader', line 127, column 14:
        - {text: " &fFor. Fortune &6☘${viewer ski ... 
                 ^

[06:19:43] [Server thread/INFO]: [ProtocolLib] The updater found an update: 5.2.0 (Running 4.7.0). Download at https://www.spigotmc.org/resources/protocollib.1997/
[06:19:44] [Thread-58/WARN]: java.util.ConcurrentModificationException
[06:19:44] [Thread-58/WARN]:     at java.base/java.util.LinkedHashMap$LinkedHashIterator.nextNode(LinkedHashMap.java:719)
[06:19:44] [Thread-58/WARN]:     at java.base/java.util.LinkedHashMap$LinkedEntryIterator.next(LinkedHashMap.java:751)
[06:19:44] [Thread-58/WARN]:     at java.base/java.util.LinkedHashMap$LinkedEntryIterator.next(LinkedHashMap.java:749)
[06:19:44] [Thread-58/WARN]:     at org.bukkit.configuration.MemorySection.mapChildrenValues(MemorySection.java:880)
[06:19:44] [Thread-58/WARN]:     at org.bukkit.configuration.MemorySection.getValues(MemorySection.java:107)
[06:19:44] [Thread-58/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:44] [Thread-58/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:44] [Thread-58/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:44] [Thread-58/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.represent(BaseRepresenter.java:65)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:275)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:44] [Thread-58/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:44] [Thread-58/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:44] [Thread-58/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:44] [Thread-58/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:44] [Thread-58/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:45] [Thread-68/WARN]: java.lang.NullPointerException: Nodes must be provided.
[06:19:45] [Thread-68/WARN]:     at org.yaml.snakeyaml.nodes.NodeTuple.<init>(NodeTuple.java:28)
[06:19:45] [Thread-68/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:164)
[06:19:45] [Thread-68/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:45] [Thread-68/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:45] [Thread-68/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.represent(BaseRepresenter.java:65)
[06:19:45] [Thread-68/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:275)
[06:19:45] [Thread-68/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:45] [Thread-68/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:45] [Thread-68/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:45] [Thread-68/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:45] [Thread-68/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:45] [Thread-68/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:48] [Thread-117/WARN]: java.util.ConcurrentModificationException
[06:19:48] [Thread-117/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:48] [Thread-117/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:48] [Thread-117/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:48] [Thread-117/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:48] [Thread-117/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:48] [Thread-117/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:48] [Thread-117/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:48] [Thread-117/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:48] [Thread-117/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:48] [Thread-117/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:48] [Thread-117/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:48] [Thread-117/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:48] [Thread-124/WARN]: java.util.ConcurrentModificationException
[06:19:48] [Thread-124/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:48] [Thread-124/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:48] [Thread-124/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:48] [Thread-124/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:48] [Thread-124/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:48] [Thread-124/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:48] [Thread-124/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:48] [Thread-124/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:48] [Thread-124/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:48] [Thread-124/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:48] [Thread-124/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:48] [Thread-124/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:49] [Thread-147/WARN]: java.util.ConcurrentModificationException
[06:19:49] [Thread-147/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:49] [Thread-147/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:49] [Thread-147/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:49] [Thread-147/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:49] [Thread-147/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:49] [Thread-147/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:49] [Thread-147/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:49] [Thread-147/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:49] [Thread-147/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:49] [Thread-147/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:49] [Thread-147/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:49] [Thread-147/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:50] [Thread-172/WARN]: java.util.ConcurrentModificationException
[06:19:50] [Thread-172/WARN]:     at java.base/java.util.LinkedHashMap$LinkedHashIterator.nextNode(LinkedHashMap.java:719)
[06:19:50] [Thread-172/WARN]:     at java.base/java.util.LinkedHashMap$LinkedEntryIterator.next(LinkedHashMap.java:751)
[06:19:50] [Thread-172/WARN]:     at java.base/java.util.LinkedHashMap$LinkedEntryIterator.next(LinkedHashMap.java:749)
[06:19:50] [Thread-172/WARN]:     at org.bukkit.configuration.MemorySection.mapChildrenValues(MemorySection.java:880)
[06:19:50] [Thread-172/WARN]:     at org.bukkit.configuration.MemorySection.getValues(MemorySection.java:107)
[06:19:50] [Thread-172/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:50] [Thread-172/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:50] [Thread-172/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:50] [Thread-172/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.represent(BaseRepresenter.java:65)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:275)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:50] [Thread-172/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:50] [Thread-172/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:50] [Thread-172/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:50] [Thread-172/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:50] [Thread-172/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:50] [Thread-178/WARN]: java.util.ConcurrentModificationException
[06:19:50] [Thread-178/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:50] [Thread-178/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:50] [Thread-178/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:50] [Thread-178/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:50] [Thread-178/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:50] [Thread-178/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:50] [Thread-178/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:50] [Thread-178/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:50] [Thread-178/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:50] [Thread-178/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:50] [Thread-178/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:50] [Thread-178/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:50] [Thread-192/WARN]: java.util.ConcurrentModificationException
[06:19:50] [Thread-192/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:50] [Thread-192/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:50] [Thread-192/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:50] [Thread-192/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:50] [Thread-192/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:50] [Thread-192/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:50] [Thread-192/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:50] [Thread-192/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:50] [Thread-192/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:50] [Thread-192/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:50] [Thread-192/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:50] [Thread-192/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:50] [Thread-202/WARN]: java.util.ConcurrentModificationException
[06:19:50] [Thread-202/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:50] [Thread-202/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:50] [Thread-202/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:50] [Thread-202/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:50] [Thread-202/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:50] [Thread-202/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:50] [Thread-202/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:50] [Thread-202/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:50] [Thread-202/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:50] [Thread-202/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:50] [Thread-202/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:50] [Thread-202/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:50] [Thread-205/WARN]: java.util.ConcurrentModificationException
[06:19:50] [Thread-205/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:50] [Thread-205/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:50] [Thread-205/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:50] [Thread-205/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:50] [Thread-205/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:50] [Thread-205/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:50] [Thread-205/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:50] [Thread-205/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:50] [Thread-205/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:50] [Thread-205/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:50] [Thread-205/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:50] [Thread-205/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:51] [Thread-210/WARN]: java.util.ConcurrentModificationException
[06:19:51] [Thread-210/WARN]:     at java.base/java.util.LinkedHashMap$LinkedHashIterator.nextNode(LinkedHashMap.java:719)
[06:19:51] [Thread-210/WARN]:     at java.base/java.util.LinkedHashMap$LinkedEntryIterator.next(LinkedHashMap.java:751)
[06:19:51] [Thread-210/WARN]:     at java.base/java.util.LinkedHashMap$LinkedEntryIterator.next(LinkedHashMap.java:749)
[06:19:51] [Thread-210/WARN]:     at org.bukkit.configuration.MemorySection.mapChildrenValues(MemorySection.java:880)
[06:19:51] [Thread-210/WARN]:     at org.bukkit.configuration.MemorySection.getValues(MemorySection.java:107)
[06:19:51] [Thread-210/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:51] [Thread-210/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:51] [Thread-210/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:51] [Thread-210/WARN]:     at org.bukkit.configuration.file.YamlRepresenter$RepresentConfigurationSection.representData(YamlRepresenter.java:27)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representMapping(BaseRepresenter.java:157)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.SafeRepresenter$RepresentMap.representData(SafeRepresenter.java:321)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.representData(BaseRepresenter.java:95)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.representer.BaseRepresenter.represent(BaseRepresenter.java:65)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:275)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:51] [Thread-210/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:51] [Thread-210/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:51] [Thread-210/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:51] [Thread-210/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:51] [Thread-210/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:51] [Thread-227/WARN]: java.util.ConcurrentModificationException
[06:19:51] [Thread-227/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:51] [Thread-227/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:51] [Thread-227/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:51] [Thread-227/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:51] [Thread-227/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:51] [Thread-227/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:51] [Thread-227/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:51] [Thread-227/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:51] [Thread-227/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:51] [Thread-227/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:51] [Thread-227/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:51] [Thread-227/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:51] [Thread-237/WARN]: java.util.ConcurrentModificationException
[06:19:51] [Thread-237/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:51] [Thread-237/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:51] [Thread-237/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:51] [Thread-237/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:51] [Thread-237/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:51] [Thread-237/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:51] [Thread-237/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:51] [Thread-237/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:51] [Thread-237/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:51] [Thread-237/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:51] [Thread-237/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:51] [Thread-237/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:51] [Thread-239/WARN]: java.util.ConcurrentModificationException
[06:19:51] [Thread-239/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:51] [Thread-239/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:51] [Thread-239/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:51] [Thread-239/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:51] [Thread-239/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:51] [Thread-239/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:51] [Thread-239/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:51] [Thread-239/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:51] [Thread-239/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:51] [Thread-239/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:51] [Thread-239/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:51] [Thread-239/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:52] [Thread-272/WARN]: java.util.ConcurrentModificationException
[06:19:52] [Thread-272/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:52] [Thread-272/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:52] [Thread-272/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:52] [Thread-272/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:52] [Thread-272/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:52] [Thread-272/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:52] [Thread-272/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:52] [Thread-272/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:52] [Thread-272/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:52] [Thread-272/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:52] [Thread-272/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:52] [Thread-272/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:52] [Thread-276/WARN]: java.util.ConcurrentModificationException
[06:19:52] [Thread-276/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:52] [Thread-276/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:52] [Thread-276/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:52] [Thread-276/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:52] [Thread-276/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:52] [Thread-276/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:52] [Thread-276/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:52] [Thread-276/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:52] [Thread-276/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:52] [Thread-276/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:52] [Thread-276/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:52] [Thread-276/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:52] [Thread-287/WARN]: java.util.ConcurrentModificationException
[06:19:52] [Thread-287/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:52] [Thread-287/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:52] [Thread-287/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:52] [Thread-287/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:52] [Thread-287/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:52] [Thread-287/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:52] [Thread-287/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:52] [Thread-287/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:52] [Thread-287/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:52] [Thread-287/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:52] [Thread-287/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:52] [Thread-287/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:52] [Thread-290/WARN]: java.util.ConcurrentModificationException
[06:19:52] [Thread-290/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:52] [Thread-290/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:52] [Thread-290/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:19:52] [Thread-290/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:19:52] [Thread-290/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:19:52] [Thread-290/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:52] [Thread-290/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:52] [Thread-290/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:52] [Thread-290/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:52] [Thread-290/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:52] [Thread-290/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:52] [Thread-290/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:19:53] [Thread-302/WARN]: java.util.ConcurrentModificationException
[06:19:53] [Thread-302/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:19:53] [Thread-302/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:19:53] [Thread-302/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serializeNode(Serializer.java:194)
[06:19:53] [Thread-302/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serializeNode(Serializer.java:198)
[06:19:53] [Thread-302/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:114)
[06:19:53] [Thread-302/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:19:53] [Thread-302/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:19:53] [Thread-302/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:19:53] [Thread-302/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:19:53] [Thread-302/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:19:53] [Thread-302/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:19:53] [Thread-302/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:24:40] [Thread-6036/WARN]: java.util.ConcurrentModificationException
[06:24:40] [Thread-6036/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:24:40] [Thread-6036/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:24:40] [Thread-6036/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:24:40] [Thread-6036/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:24:40] [Thread-6036/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:24:40] [Thread-6036/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:24:40] [Thread-6036/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:24:40] [Thread-6036/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:24:40] [Thread-6036/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:24:40] [Thread-6036/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:24:40] [Thread-6036/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:24:40] [Thread-6036/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)
[06:24:40] [Thread-6038/WARN]: java.util.ConcurrentModificationException
[06:24:40] [Thread-6038/WARN]:     at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1043)
[06:24:40] [Thread-6038/WARN]:     at java.base/java.util.ArrayList$Itr.next(ArrayList.java:997)
[06:24:40] [Thread-6038/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:143)
[06:24:40] [Thread-6038/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.anchorNode(Serializer.java:147)
[06:24:40] [Thread-6038/WARN]:     at org.yaml.snakeyaml.serializer.Serializer.serialize(Serializer.java:110)
[06:24:40] [Thread-6038/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:276)
[06:24:40] [Thread-6038/WARN]:     at org.yaml.snakeyaml.Yaml.dumpAll(Yaml.java:243)
[06:24:40] [Thread-6038/WARN]:     at org.yaml.snakeyaml.Yaml.dump(Yaml.java:220)
[06:24:40] [Thread-6038/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.saveToString(YamlConfiguration.java:41)
[06:24:40] [Thread-6038/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:65)
[06:24:40] [Thread-6038/WARN]:     at net.citizensnpcs.api.util.YamlStorage.save(YamlStorage.java:103)
[06:24:40] [Thread-6038/WARN]:     at net.citizensnpcs.api.npc.SimpleNPCDataStore$1.run(SimpleNPCDataStore.java:73)