Paste #126771: Unnamed Server Log Paste

Date: 2024/09/24 15:09:24 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[00:06:18] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[00:06:21] [ServerMain/INFO]: Loaded 7 recipes
[00:06:22] [Server thread/INFO]: Starting minecraft server version 1.19.4
[00:06:22] [Server thread/INFO]: Loading properties
[00:06:22] [Server thread/INFO]: This server is running CraftBukkit version 3763-Spigot-7d7b241-5a5e43e (MC: 1.19.4) (Implementing API version 1.19.4-R0.1-SNAPSHOT)
[00:06:22] [Server thread/INFO]: Debug logging is disabled
[00:06:22] [Server thread/INFO]: Server Ping Player Sample Count: 12
[00:06:22] [Server thread/INFO]: Using 4 threads for Netty based IO
[00:06:22] [Server thread/INFO]: Default game type: ADVENTURE
[00:06:22] [Server thread/INFO]: Generating keypair
[00:06:23] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25333
[00:06:23] [Server thread/INFO]: Using epoll channel type
[00:06:23] [Server thread/ERROR]: Ambiguous plugin name `ScreenEffects' for files `plugins/ScreenEffects_1.0.15-r3.jar' and `plugins/ScreenEffects_1.0.15.jar' in `plugins'
[00:06:24] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[00:06:28] [Server thread/WARN]: Legacy plugin ParticlePlayer v1.0 does not specify an api-version.
[00:06:28] [Server thread/WARN]: Legacy plugin CommandSpy v2.0 does not specify an api-version.
[00:06:28] [Server thread/WARN]: Legacy plugin Invsee v1.0.0 does not specify an api-version.
[00:06:28] [Server thread/WARN]: Legacy plugin Hub v1.3-RELASE does not specify an api-version.
[00:06:28] [Server thread/WARN]: Legacy plugin LuxPlus v1.2 does not specify an api-version.
[00:06:28] [Server thread/INFO]: [BigDoors] Loading 1 libraries... please wait
[00:06:28] [Server thread/INFO]: [BigDoors] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/net/bytebuddy/byte-buddy/1.14.17/byte-buddy-1.14.17.jar
[00:06:28] [Server thread/WARN]: Legacy plugin Animatronics v2.7 does not specify an api-version.
[00:06:29] [Server thread/INFO]: [Denizen] Loading 2 libraries... please wait
[00:06:29] [Server thread/INFO]: [Denizen] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[00:06:29] [Server thread/INFO]: [Denizen] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[00:06:29] [Server thread/INFO]: [Denizen] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[00:06:29] [Server thread/INFO]: [Denizen] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[00:06:29] [Server thread/INFO]: [Denizen] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[00:06:29] [Server thread/INFO]: [Denizen] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[00:06:29] [Server thread/INFO]: [Denizen] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[00:06:29] [Server thread/INFO]: [Denizen] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/json/json/20220320/json-20220320.jar
[00:06:29] [Server thread/INFO]: [Denizen] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[00:06:29] [Server thread/INFO]: [ItemsAdder] Loading 1 libraries... please wait
[00:06:29] [Server thread/INFO]: [ItemsAdder] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[00:06:29] [Server thread/INFO]: [ItemsAdder] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[00:06:29] [Server thread/INFO]: [ItemsAdder] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[00:06:29] [Server thread/INFO]: [ItemsAdder] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[00:06:29] [Server thread/INFO]: [ItemsAdder] Loaded library /var/lib/pufferpanel/servers/9d5ec952/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[00:06:29] [Server thread/INFO]: [MapReflectionAPI] Loading MapReflectionAPI v1.6.3
[00:06:29] [Server thread/INFO]: [ParticlePlayer] Loading ParticlePlayer v1.0
[00:06:29] [Server thread/INFO]: [Minecraft-Video-Player] Loading Minecraft-Video-Player v1.1
[00:06:29] [Server thread/INFO]: [CommandSpy] Loading CommandSpy v2.0
[00:06:29] [Server thread/INFO]: [EssentialsSelectors] Loading EssentialsSelectors v1.7.2
[00:06:29] [Server thread/INFO]: [s3backup] Loading s3backup v1.1.6
[00:06:29] [Server thread/INFO]: [RealTimePlugin] Loading RealTimePlugin v3.9
[00:06:29] [Server thread/INFO]: [Invsee] Loading Invsee v1.0.0
[00:06:29] [Server thread/INFO]: [BlueMap] Loading BlueMap v3.20
[00:06:29] [Server thread/INFO]: [ArmorStandEditor] Loading ArmorStandEditor v1.16-24
[00:06:29] [Server thread/INFO]: [Hub] Loading Hub v1.3-RELASE
[00:06:29] [Server thread/INFO]: [spark] Loading spark v1.10.71
[00:06:29] [Server thread/INFO]: [ServersNPC] Loading ServersNPC v4.8
[00:06:29] [Server thread/INFO]: [LoneLibs] Loading LoneLibs v1.0.59
[00:06:29] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.3.0-SNAPSHOT-731
[00:06:29] [Server thread/INFO]: [LuxPlus] Loading LuxPlus v1.2
[00:06:29] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[00:06:29] [Server thread/INFO]: [BKCommonLib] Loading BKCommonLib v1.20.4-v2
[00:06:42] [Server thread/INFO]: [SkinsRestorer] Loading SkinsRestorer v15.0.7
[00:06:42] [Server thread/INFO]: [PowerRanks] Loading PowerRanks v1.9.9R4
[00:06:42] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.15+6463-5ca4dff
[00:06:43] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@14f924b1]
[00:06:43] [Server thread/INFO]: [Essentials] Loading Essentials v2.21.0-dev+9-e3e52db
[00:06:43] [Server thread/INFO]: [MotionCapture] Loading MotionCapture v2.3.4
[00:06:43] [Server thread/INFO]: [ccRides] Loading ccRides v1.7.9
[00:06:43] [Server thread/INFO]: [CommandPanels] Loading CommandPanels v3.19.2.1
[00:06:43] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[00:06:43] [Server thread/INFO]: [Train_Carts] Loading Train_Carts v1.20.4-v1
[00:06:43] [Server thread/INFO]: [Train_Carts] 55 detector rail regions loaded covering 4358 blocks
[00:06:44] [Server thread/INFO]: [WESV] Loading WorldEditSelectionVisualizer v2.1.3
[00:06:44] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.5+3827266
[00:06:44] [Server thread/INFO]: [Images] Loading Images v2.3.2
[00:06:44] [Server thread/INFO]: [BigDoors] Loading BigDoors vAlpha 0.1.8.54
[00:06:44] [Server thread/INFO]: [EasyArmorStands] Loading EasyArmorStands v2.2.1
[00:06:44] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.3
[00:06:44] [Server thread/INFO]: [Jumpscares] Loading Jumpscares v1.17.1
[00:06:44] [Server thread/INFO]: [Skript] Loading Skript v2.7.0-beta1
[00:06:44] [Server thread/INFO]: [ThemePark] Loading ThemePark v3.1.2
[00:06:44] [Server thread/INFO]: [TCCoasters] Loading TCCoasters v1.20.4-v1
[00:06:44] [Server thread/INFO]: [ThemeParkConnector] Loading ThemeParkConnector v3.1.2
[00:06:44] [Server thread/INFO]: [Animatronics] Loading Animatronics v2.7
[00:06:44] [Server thread/INFO]: [ActionFoto] Loading ActionFoto v2.13.1
[00:06:44] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.35-SNAPSHOT (build 3568)
[00:06:44] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.28.0
[00:06:44] [Server thread/INFO]: [EffectMaster] Loading EffectMaster v1.2.2
[00:06:44] [Server thread/INFO]: [MTVehicles] Loading MTVehicles v2.5.3
[00:06:44] [Server thread/INFO]: [OpenAudioMc] Loading OpenAudioMc v6.10.0
[00:06:44] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v3.7.1
[00:06:44] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[00:06:44] [Server thread/INFO]: [skript-gui] Loading skript-gui v1.3
[00:06:44] [Server thread/INFO]: [ThemeParkPlus] Loading ThemeParkPlus v3.2.2
[00:06:44] [Server thread/INFO]: [Denizen] Loading Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[00:06:44] [Server thread/INFO]: [ItemsAdder] Loading ItemsAdder v3.6.4-release-3
[00:06:44] [Server thread/WARN]: java.io.FileNotFoundException: plugins/ItemsAdder/config.yml (Permiso denegado)
[00:06:44] [Server thread/WARN]:     at java.base/java.io.FileOutputStream.open0(Native Method)
[00:06:44] [Server thread/WARN]:     at java.base/java.io.FileOutputStream.open(FileOutputStream.java:295)
[00:06:44] [Server thread/WARN]:     at java.base/java.io.FileOutputStream.<init>(FileOutputStream.java:236)
[00:06:44] [Server thread/WARN]:     at java.base/java.io.FileOutputStream.<init>(FileOutputStream.java:185)
[00:06:44] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.save(FileConfiguration.java:67)
[00:06:44] [Server thread/WARN]:     at ia.m.rr.bw(SourceFile:170)
[00:06:44] [Server thread/WARN]:     at ia.m.R.c(SourceFile:618)
[00:06:44] [Server thread/WARN]:     at dev.lone.itemsadder.Main.bP(SourceFile:585)
[00:06:44] [Server thread/WARN]:     at dev.lone.itemsadder.Main.onLoad(SourceFile:180)
[00:06:44] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.loadPlugins(CraftServer.java:435)
[00:06:44] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:219)
[00:06:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975)
[00:06:44] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[00:06:44] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:06:44] [Server thread/INFO]: [ItemsAdder] Using custom language file 'plugins/ItemsAdder/config.yml'
[00:06:44] [Server thread/INFO]: [ScreenEffects] Loading ScreenEffects v1.0.15-r3
[00:06:44] [Server thread/INFO]: [CosmeticsCore] Loading CosmeticsCore v1.2.3b
[00:06:44] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.59
[00:06:44] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-731
[00:06:44] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[00:06:44] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.21.0-dev+9-e3e52db which is not a depend or softdepend of this plugin.
[00:06:44] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[00:06:44] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[00:06:44] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[00:06:44] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.20.4-v2
[00:06:44] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Spigot (3763-Spigot-7d7b241-5a5e43e) : v1_19_R3 (Minecraft 1.19.4)
[00:06:44] [Server thread/WARN]: [ProtocolLib] Loaded class com.bergerkiller.mountiplex.reflection.util.fast.InvalidArgumentCountException from BKCommonLib v1.20.4-v2 which is not a depend or softdepend of this plugin.
[00:06:44] [Server thread/INFO]: Now using the ProtocolLib library to provide Packet Listener and Monitor support
[00:06:46] [Server thread/INFO]: [BKCommonLib] Now a plugin, a new server implementation tomorrow???
[00:06:46] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.20.4-v2 (build: 1667) enabled! (1.398s)
[00:06:46] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.7
[00:06:46] [Server thread/INFO]: [SkinsRestorer] -------------------------/Warning\-------------------------
[00:06:46] [Server thread/INFO]: [SkinsRestorer] This plugin is running in PROXY mode!
[00:06:46] [Server thread/INFO]: [SkinsRestorer] You have to do all configuration at config file
[00:06:46] [Server thread/INFO]: [SkinsRestorer] inside your BungeeCord/Velocity server.
[00:06:46] [Server thread/INFO]: [SkinsRestorer] (<proxy>/plugins/SkinsRestorer/)
[00:06:46] [Server thread/INFO]: [SkinsRestorer] -------------------------\Warning/-------------------------
[00:06:46] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.19.4.
[00:06:46] [Server thread/INFO]: [PowerRanks] Enabling PowerRanks v1.9.9R4
[00:06:46] [Server thread/INFO]: [PowerRanks] 
[00:06:46] [Server thread/INFO]: [PowerRanks] === ----------- LOADING DATA ----------- ===
[00:06:46] [Server thread/INFO]: [PowerRanks] Loading config
[00:06:46] [Server thread/INFO]: [PowerRanks] Loading player data
[00:06:46] [Server thread/INFO]: [PowerRanks] Loading rank data
[00:06:47] [Server thread/INFO]: [PowerRanks] 
[00:06:47] [Server thread/INFO]: [PowerRanks] === ------- LOADING PLUGIN HOOKS ------- ===
[00:06:47] [Server thread/INFO]: [PowerRanks] Checking for plugins to hook in to:
[00:06:47] [Server thread/INFO]: [PowerRanks] Vault found!
[00:06:47] [Server thread/INFO]: [PowerRanks] Enabling Vault Economy integration.
[00:06:47] [Server thread/INFO]: [PowerRanks] Enabling Vault Permission integration.
[00:06:47] [Server thread/INFO]: [PowerRanks] 
[00:06:47] [Server thread/INFO]: [PowerRanks] === ---------- LOADING ADDONS ---------- ===
[00:06:47] [Server thread/INFO]: [PowerRanks] Loaded 0 add-on(s)!
[00:06:47] [Server thread/INFO]: [PowerRanks] 
[00:06:47] [Server thread/INFO]: [PowerRanks]   ██████  ██████   PowerRanks v1.9.9R4
[00:06:47] [Server thread/INFO]: [PowerRanks]   ██   ██ ██   ██  Running on Spigot v7d7b241
[00:06:47] [Server thread/INFO]: [PowerRanks]   ██████  ██████   Startup time: 262ms
[00:06:47] [Server thread/INFO]: [PowerRanks]   ██      ██   ██
[00:06:47] [Server thread/INFO]: [PowerRanks]   ██      ██   ██
[00:06:47] [Server thread/INFO]: [PowerRanks] 
[00:06:47] [Server thread/INFO]: [PowerRanks] If you'd like to donate, please visit https://ko-fi.com/svenar or https://patreon.com/svenar
[00:06:47] [Server thread/INFO]: [PowerRanks] Checking for updates...
[00:06:47] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.15+6463-5ca4dff
[00:06:47] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[00:06:47] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[00:06:47] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R3.PaperweightAdapter as the Bukkit adapter
[00:06:48] [Server thread/INFO]: [WorldEdit] ====================================================
[00:06:48] [Server thread/INFO]: [WorldEdit]  WorldEdit works better if you use Paper 
[00:06:48] [Server thread/INFO]: [WorldEdit]  as your server software. 
[00:06:48] [Server thread/INFO]: [WorldEdit]   
[00:06:48] [Server thread/INFO]: [WorldEdit]  Paper offers significant performance improvements,
[00:06:48] [Server thread/INFO]: [WorldEdit]  bug fixes, security enhancements and optional
[00:06:48] [Server thread/INFO]: [WorldEdit]  features for server owners to enhance their server.
[00:06:48] [Server thread/INFO]: [WorldEdit]   
[00:06:48] [Server thread/INFO]: [WorldEdit]  Paper includes Timings v2, which is significantly
[00:06:48] [Server thread/INFO]: [WorldEdit]  better at diagnosing lag problems over v1.
[00:06:48] [Server thread/INFO]: [WorldEdit]   
[00:06:48] [Server thread/INFO]: [WorldEdit]  All of your plugins should still work, and the
[00:06:48] [Server thread/INFO]: [WorldEdit]  Paper community will gladly help you fix any issues.
[00:06:48] [Server thread/INFO]: [WorldEdit]   
[00:06:48] [Server thread/INFO]: [WorldEdit]  Join the Paper Community @ https://papermc.io
[00:06:48] [Server thread/INFO]: [WorldEdit] ====================================================
[00:06:48] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from WorldEdit (>= v7.0.0)
[00:06:48] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[00:06:48] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[00:06:48] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[00:06:48] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[00:06:48] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[00:06:48] [Server thread/INFO]: Preparing level "world"
[00:06:48] [Server thread/INFO]: -------- World Settings For [world] --------
[00:06:48] [Server thread/INFO]: Mob Spawn Range: 6
[00:06:48] [Server thread/INFO]: Cactus Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Cane Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Melon Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Sapling Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Carrot Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Potato Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Wheat Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Vine Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Kelp Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[00:06:48] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[00:06:48] [Server thread/INFO]: Entity Tracking Range: Pl 128 / An 128 / Mo 128 / Mi 128 / Di 128 / Other 128
[00:06:48] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[00:06:48] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[00:06:48] [Server thread/INFO]: Max TNT Explosions: 100
[00:06:48] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[00:06:48] [Server thread/INFO]: Experience Merge Radius: 3.0
[00:06:48] [Server thread/INFO]: Item Despawn Rate: 6000
[00:06:48] [Server thread/INFO]: Item Merge Radius: 2.5
[00:06:48] [Server thread/INFO]: View Distance: 19
[00:06:48] [Server thread/INFO]: Simulation Distance: 10
[00:06:48] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[00:06:48] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[00:06:48] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[00:06:48] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[00:06:49] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[00:06:49] [Server thread/INFO]: Mob Spawn Range: 6
[00:06:49] [Server thread/INFO]: Cactus Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Cane Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Melon Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Sapling Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Carrot Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Potato Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Wheat Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Vine Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Kelp Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[00:06:49] [Server thread/INFO]: Entity Tracking Range: Pl 128 / An 128 / Mo 128 / Mi 128 / Di 128 / Other 128
[00:06:49] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[00:06:49] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[00:06:49] [Server thread/INFO]: Max TNT Explosions: 100
[00:06:49] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[00:06:49] [Server thread/INFO]: Experience Merge Radius: 3.0
[00:06:49] [Server thread/INFO]: Item Despawn Rate: 6000
[00:06:49] [Server thread/INFO]: Item Merge Radius: 2.5
[00:06:49] [Server thread/INFO]: View Distance: 19
[00:06:49] [Server thread/INFO]: Simulation Distance: 10
[00:06:49] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[00:06:49] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[00:06:49] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[00:06:49] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[00:06:49] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[00:06:49] [Server thread/INFO]: Mob Spawn Range: 6
[00:06:49] [Server thread/INFO]: Cactus Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Cane Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Melon Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Sapling Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Carrot Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Potato Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Wheat Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Vine Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Kelp Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[00:06:49] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[00:06:49] [Server thread/INFO]: Entity Tracking Range: Pl 128 / An 128 / Mo 128 / Mi 128 / Di 128 / Other 128
[00:06:49] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[00:06:49] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[00:06:49] [Server thread/INFO]: Max TNT Explosions: 100
[00:06:49] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[00:06:49] [Server thread/INFO]: Experience Merge Radius: 3.0
[00:06:49] [Server thread/INFO]: Item Despawn Rate: 6000
[00:06:49] [Server thread/INFO]: Item Merge Radius: 2.5
[00:06:49] [Server thread/INFO]: View Distance: 19
[00:06:49] [Server thread/INFO]: Simulation Distance: 10
[00:06:49] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[00:06:49] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[00:06:49] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[00:06:49] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[00:06:49] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[00:06:53] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[00:06:53] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[00:06:53] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[00:06:53] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[00:06:53] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[00:06:53] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[00:06:53] [Worker-Main-5/INFO]: Preparing spawn area: 0%
[00:06:53] [Worker-Main-3/INFO]: Preparing spawn area: 0%
[00:06:53] [Worker-Main-5/INFO]: Preparing spawn area: 20%
[00:06:55] [Worker-Main-1/INFO]: Preparing spawn area: 100%
[00:06:55] [Worker-Main-1/INFO]: Preparing spawn area: 100%
[00:06:55] [Worker-Main-4/INFO]: Preparing spawn area: 100%
[00:06:55] [Worker-Main-4/INFO]: Preparing spawn area: 100%
[00:06:56] [Worker-Main-2/INFO]: Preparing spawn area: 100%
[00:06:56] [Worker-Main-3/INFO]: Preparing spawn area: 100%
[00:06:57] [Worker-Main-2/INFO]: Preparing spawn area: 100%
[00:06:57] [Worker-Main-3/INFO]: Preparing spawn area: 100%
[00:06:57] [Server thread/INFO]: Time elapsed: 8081 ms
[00:06:58] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[00:07:00] [Worker-Main-5/INFO]: Preparing spawn area: 0%
[00:07:00] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[00:07:00] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[00:07:00] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[00:07:00] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[00:07:00] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[00:07:01] [Worker-Main-4/INFO]: Preparing spawn area: 16%
[00:07:01] [Worker-Main-2/INFO]: Preparing spawn area: 84%
[00:07:01] [Server thread/INFO]: Time elapsed: 3644 ms
[00:07:01] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[00:07:03] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[00:07:03] [Worker-Main-2/INFO]: Preparing spawn area: 0%
[00:07:03] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[00:07:03] [Worker-Main-1/INFO]: Preparing spawn area: 0%
[00:07:03] [Worker-Main-4/INFO]: Preparing spawn area: 0%
[00:07:04] [Worker-Main-5/INFO]: Preparing spawn area: 45%
[00:07:04] [Server thread/INFO]: Time elapsed: 2862 ms
[00:07:04] [Server thread/INFO]: [MapReflectionAPI] Enabling MapReflectionAPI v1.6.3
[00:07:04] [Server thread/INFO]: [MapReflectionAPI] ----------------
[00:07:04] [Server thread/INFO]: [MapReflectionAPI] MapReflectionAPI v1.6.3
[00:07:04] [Server thread/INFO]: [MapReflectionAPI] Made by © Copyright SBDevelopment 2023
[00:07:04] [Server thread/INFO]: [MapReflectionAPI] Loading Java AWT runtime library support...
[00:07:05] [Server thread/INFO]: [MapReflectionAPI] Loading the configuration...
[00:07:05] [Server thread/INFO]: [MapReflectionAPI] Loading the commands...
[00:07:05] [Server thread/INFO]: [MapReflectionAPI] Loading the map manager...
[00:07:05] [Server thread/INFO]: [MapReflectionAPI] Vanilla Maps are allowed. Discovering occupied Map IDs...
[00:07:05] [Server thread/INFO]: [MapReflectionAPI] Found 3891 occupied Map IDs, these will not be used.
[00:07:05] [Server thread/INFO]: [MapReflectionAPI] Registering the listeners...
[00:07:05] [Server thread/INFO]: [MapReflectionAPI] Loading metrics...
[00:07:05] [Server thread/INFO]: [MapReflectionAPI] MapReflectionAPI is enabled!
[00:07:05] [Server thread/INFO]: [MapReflectionAPI] ----------------
[00:07:05] [Server thread/INFO]: [ParticlePlayer] Enabling ParticlePlayer v1.0
[00:07:05] [Server thread/INFO]: [Minecraft-Video-Player] Enabling Minecraft-Video-Player v1.1
[00:07:08] [Server thread/INFO]: [CommandSpy] Enabling CommandSpy v2.0
[00:07:08] [Server thread/INFO]: [EssentialsSelectors] Enabling EssentialsSelectors v1.7.2
[00:07:08] [Server thread/INFO]: [s3backup] Enabling s3backup v1.1.6
[00:07:09] [Server thread/WARN]: [s3backup] Loaded class kotlin.KotlinVersion from ActionFoto v2.13.1 which is not a depend or softdepend of this plugin.
[00:07:09] [Server thread/INFO]: [s3backup] Starting backup scheduler
[00:07:09] [Server thread/INFO]: [RealTimePlugin] Enabling RealTimePlugin v3.9
[00:07:09] [Server thread/INFO]: [Invsee] Enabling Invsee v1.0.0
[00:07:09] [Server thread/INFO]: [BlueMap] Enabling BlueMap v3.20
[00:07:09] [Server thread/INFO]: [BlueMap] Saving all worlds once, to make sure the level.dat is present...
[00:07:09] [Server thread/WARN]: A manual (plugin-induced) save has been detected while server is configured to auto-save. This may affect performance.
[00:07:13] [Server thread/INFO]: [ArmorStandEditor] Enabling ArmorStandEditor v1.16-24
[00:07:13] [Server thread/INFO]: [Hub] Enabling Hub v1.3-RELASE
[00:07:13] [Server thread/INFO]: [spark] Enabling spark v1.10.71
[00:07:13] [Server thread/INFO]: [spark] Using Bukkit scheduler for tick monitoring
[00:07:13] [Server thread/INFO]: [spark] Starting background profiler...
[00:07:14] [Server thread/INFO]: [ServersNPC] Enabling ServersNPC v4.8
[00:07:14] [Server thread/INFO]: [LuxPlus] Enabling LuxPlus v1.2
[00:07:14] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+9-e3e52db
[00:07:14] [Server thread/INFO]: You are running a server with limited API functionality. EssentialsX will still work, but certain features may be disabled.
[00:07:14] [Server thread/WARN]: Version mismatch! Please update EssentialsSelectors to the same version.
[00:07:14] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[00:07:14] [Server thread/INFO]: No kits found to migrate.
[00:07:14] [Server thread/INFO]: Loaded 39094 items from items.json.
[00:07:14] [Server thread/INFO]: Using locale es_ES
[00:07:15] [Server thread/INFO]: ServerListPingEvent: Spigot iterator API
[00:07:15] [Server thread/INFO]: Starting Metrics. Opt-out using the global bStats config.
[00:07:15] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[00:07:15] [Server thread/INFO]: Using superperms-based permissions.
[00:07:15] [Server thread/INFO]: [MotionCapture] Enabling MotionCapture v2.3.4
[00:07:15] [Server thread/INFO]: [NBTAPI] Found Minecraft: v1_19_R3! Trying to find NMS support
[00:07:15] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_19_R3' loaded!
[00:07:15] [Server thread/INFO]: [NBTAPI] Using the plugin 'LoneLibs' to create a bStats instance!
[00:07:16] [Server thread/INFO]: [Motion Capture]: Motion Capture has succesfully started
[00:07:16] [Server thread/INFO]: [ccRides] Enabling ccRides v1.7.9
[00:07:16] [Server thread/INFO]: [ccRides] Main Configs Loaded
[00:07:16] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.19.2.1
[00:07:16] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.2.1 Plugin Loading...
[00:07:16] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.19.2.1 Plugin Loaded!
[00:07:16] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[00:07:16] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[00:07:16] [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.
[00:07:16] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[00:07:16] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[00:07:16] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[00:07:16] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[00:07:16] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[00:07:16] [Server thread/WARN]: [Multiverse-Core] Exception while loading value for environment
[00:07:16] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: beach44
[00:07:16] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[00:07:16] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: beach32
[00:07:16] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[00:07:16] [Server thread/INFO]: -------- World Settings For [beach] --------
[00:07:16] [Server thread/INFO]: Mob Spawn Range: 6
[00:07:16] [Server thread/INFO]: Cactus Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Cane Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Melon Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Sapling Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Carrot Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Potato Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Wheat Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Vine Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Kelp Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[00:07:16] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
[00:07:16] [Server thread/INFO]: Entity Tracking Range: Pl 128 / An 128 / Mo 128 / Mi 128 / Di 128 / Other 128
[00:07:16] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[00:07:16] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[00:07:16] [Server thread/INFO]: Max TNT Explosions: 100
[00:07:16] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[00:07:16] [Server thread/INFO]: Experience Merge Radius: 3.0
[00:07:16] [Server thread/INFO]: Item Despawn Rate: 6000
[00:07:16] [Server thread/INFO]: Item Merge Radius: 2.5
[00:07:16] [Server thread/INFO]: View Distance: 19
[00:07:16] [Server thread/INFO]: Simulation Distance: 10
[00:07:16] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[00:07:16] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[00:07:16] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[00:07:16] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[00:07:16] [Server thread/INFO]: Preparing start region for dimension minecraft:beach
[00:07:16] [Server thread/INFO]: Time elapsed: 12 ms
[00:07:16] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "org.bukkit.World$Environment.ordinal()" because the return value of "org.bukkit.WorldCreator.environment()" is null
[00:07:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.createWorld(CraftServer.java:1072)
[00:07:16] [Server thread/WARN]:     at org.bukkit.Bukkit.createWorld(Bukkit.java:693)
[00:07:16] [Server thread/WARN]:     at org.bukkit.WorldCreator.createWorld(WorldCreator.java:405)
[00:07:16] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:486)
[00:07:16] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:467)
[00:07:16] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:442)
[00:07:16] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.loadWorlds(WorldManager.java:770)
[00:07:16] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.MultiverseCore.onEnable(MultiverseCore.java:313)
[00:07:16] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[00:07:16] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[00:07:16] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[00:07:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541)
[00:07:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455)
[00:07:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[00:07:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[00:07:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[00:07:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975)
[00:07:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[00:07:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:07:16] [Server thread/ERROR]: [Multiverse-Core] The world 'beach2' could NOT be loaded because it contains errors and is probably corrupt!
[00:07:16] [Server thread/ERROR]: [Multiverse-Core] Try using Minecraft Region Fixer to repair your world! 'beach2'
[00:07:16] [Server thread/ERROR]: [Multiverse-Core] https://github.com/Fenixin/Minecraft-Region-Fixer
[00:07:17] [Server thread/WARN]: java.lang.RuntimeException: java.nio.file.AccessDeniedException: ./WarnerBrosWorld/session.lock
[00:07:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.createWorld(CraftServer.java:1090)
[00:07:17] [Server thread/WARN]:     at org.bukkit.Bukkit.createWorld(Bukkit.java:693)
[00:07:17] [Server thread/WARN]:     at org.bukkit.WorldCreator.createWorld(WorldCreator.java:405)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:486)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:467)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:442)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.loadWorlds(WorldManager.java:770)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.MultiverseCore.onEnable(MultiverseCore.java:313)
[00:07:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[00:07:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[00:07:17] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[00:07:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541)
[00:07:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[00:07:17] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:07:17] [Server thread/WARN]: Caused by: java.nio.file.AccessDeniedException: ./WarnerBrosWorld/session.lock
[00:07:17] [Server thread/WARN]:     at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:90)
[00:07:17] [Server thread/WARN]:     at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:106)
[00:07:17] [Server thread/WARN]:     at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111)
[00:07:17] [Server thread/WARN]:     at java.base/sun.nio.fs.UnixFileSystemProvider.newFileChannel(UnixFileSystemProvider.java:181)
[00:07:17] [Server thread/WARN]:     at java.base/java.nio.channels.FileChannel.open(FileChannel.java:304)
[00:07:17] [Server thread/WARN]:     at java.base/java.nio.channels.FileChannel.open(FileChannel.java:363)
[00:07:17] [Server thread/WARN]:     at net.minecraft.util.SessionLock.a(SourceFile:34)
[00:07:17] [Server thread/WARN]:     at net.minecraft.world.level.storage.Convertable$ConversionSession.<init>(Convertable.java:418)
[00:07:17] [Server thread/WARN]:     at net.minecraft.world.level.storage.Convertable.createAccess(Convertable.java:343)
[00:07:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.createWorld(CraftServer.java:1088)
[00:07:17] [Server thread/WARN]:     ... 18 more
[00:07:17] [Server thread/ERROR]: [Multiverse-Core] The world 'WarnerBrosWorld' could NOT be loaded because it contains errors and is probably corrupt!
[00:07:17] [Server thread/ERROR]: [Multiverse-Core] Try using Minecraft Region Fixer to repair your world! 'WarnerBrosWorld'
[00:07:17] [Server thread/ERROR]: [Multiverse-Core] https://github.com/Fenixin/Minecraft-Region-Fixer
[00:07:17] [Server thread/WARN]: java.lang.RuntimeException: java.nio.file.AccessDeniedException: ./wbw/session.lock
[00:07:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.createWorld(CraftServer.java:1090)
[00:07:17] [Server thread/WARN]:     at org.bukkit.Bukkit.createWorld(Bukkit.java:693)
[00:07:17] [Server thread/WARN]:     at org.bukkit.WorldCreator.createWorld(WorldCreator.java:405)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:486)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:467)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.doLoad(WorldManager.java:442)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.utils.WorldManager.loadWorlds(WorldManager.java:770)
[00:07:17] [Server thread/WARN]:     at com.onarandombox.MultiverseCore.MultiverseCore.onEnable(MultiverseCore.java:313)
[00:07:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[00:07:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[00:07:17] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[00:07:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541)
[00:07:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975)
[00:07:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[00:07:17] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:07:17] [Server thread/WARN]: Caused by: java.nio.file.AccessDeniedException: ./wbw/session.lock
[00:07:17] [Server thread/WARN]:     at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:90)
[00:07:17] [Server thread/WARN]:     at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:106)
[00:07:17] [Server thread/WARN]:     at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111)
[00:07:17] [Server thread/WARN]:     at java.base/sun.nio.fs.UnixFileSystemProvider.newFileChannel(UnixFileSystemProvider.java:181)
[00:07:17] [Server thread/WARN]:     at java.base/java.nio.channels.FileChannel.open(FileChannel.java:304)
[00:07:17] [Server thread/WARN]:     at java.base/java.nio.channels.FileChannel.open(FileChannel.java:363)
[00:07:17] [Server thread/WARN]:     at net.minecraft.util.SessionLock.a(SourceFile:34)
[00:07:17] [Server thread/WARN]:     at net.minecraft.world.level.storage.Convertable$ConversionSession.<init>(Convertable.java:418)
[00:07:17] [Server thread/WARN]:     at net.minecraft.world.level.storage.Convertable.createAccess(Convertable.java:343)
[00:07:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.createWorld(CraftServer.java:1088)
[00:07:17] [Server thread/WARN]:     ... 18 more
[00:07:17] [Server thread/ERROR]: [Multiverse-Core] The world 'wbw' could NOT be loaded because it contains errors and is probably corrupt!
[00:07:17] [Server thread/ERROR]: [Multiverse-Core] Try using Minecraft Region Fixer to repair your world! 'wbw'
[00:07:17] [Server thread/ERROR]: [Multiverse-Core] https://github.com/Fenixin/Minecraft-Region-Fixer
[00:07:17] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[00:07:17] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[00:07:17] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[00:07:17] [Server thread/INFO]: [Train_Carts] Enabling Train_Carts v1.20.4-v1
[00:07:22] [Server thread/INFO]: [Train_Carts] [Resource Pack Models] Loading resource pack item model lists
[00:07:24] [Server thread/INFO]: [Train_Carts] 37 Trains have been loaded in 2 worlds. (96 Minecarts)
[00:07:27] [Server thread/INFO]: [Train_Carts] Restoring trains and loading nearby chunks...
[00:07:42] [Server thread/INFO]: [Train_Carts] Train_Carts version 1.20.4-v1 (build: 1518) enabled! (25.548s)
[00:07:42] [Server thread/INFO]: [Train_Carts] Support for Economy plugin 'Essentials' enabled
[00:07:42] [Server thread/INFO]: [WESV] Enabling WorldEditSelectionVisualizer v2.1.3
[00:07:42] [Server thread/INFO]: [WESV] Using WorldEdit 7 api
[00:07:42] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.5+3827266
[00:07:43] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[00:07:43] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[00:07:43] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[00:07:43] [Server thread/INFO]: [WorldGuard] (beach) TNT ignition is PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (beach) Lighters are PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (beach) Lava fire is PERMITTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] (beach) Fire spread is UNRESTRICTED.
[00:07:43] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'beach'
[00:07:43] [Server thread/INFO]: [WorldGuard] Loading region data...
[00:07:43] [Server thread/INFO]: [Images] Enabling Images v2.3.2
[00:07:43] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[00:07:43] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.54
[00:07:43] [Server thread/INFO]: [BigDoors] Power Block Types:
[00:07:43] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[00:07:43] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[00:07:43] [Server thread/INFO]: [BigDoors]  - BEDROCK
[00:07:43] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[00:07:43] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[00:07:43] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[00:07:43] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[00:07:43] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[00:07:43] [Server thread/INFO]: [BigDoors]  - LAVA
[00:07:43] [Server thread/INFO]: [BigDoors]  - WATER
[00:07:43] [Server thread/INFO]: [BigDoors]  - SNOW
[00:07:43] [Server thread/INFO]: [BigDoors]  - FERN
[00:07:43] [Server thread/INFO]: [BigDoors]  - GRASS
[00:07:43] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[00:07:43] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[00:07:43] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[00:07:43] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[00:07:43] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[00:07:43] [Server thread/INFO]: [EasyArmorStands] Enabling EasyArmorStands v2.2.1
[00:07:44] [Server thread/WARN]: [EasyArmorStands] Failed to register Brigadier mappings
[00:07:44] [Server thread/INFO]: [EasyArmorStands] Enabling WorldGuard integration
[00:07:44] [Server thread/INFO]: [EasyArmorStands] Enabling TrainCarts integration
[00:07:44] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[00:07:45] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[00:07:45] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[00:07:45] [Server thread/INFO]: --------------------
[00:07:45] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[00:07:45] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[00:07:45] [Server thread/INFO]: --------------------
[00:07:45] [Server thread/INFO]: [Jumpscares] Enabling Jumpscares v1.17.1
[00:07:45] [Server thread/INFO]: [Jumpscares] WorldGuard support enabled! Use the screamers flag to block all the screamers in a region.
[00:07:45] [Server thread/INFO]: [Skript] Enabling Skript v2.7.0-beta1
[00:07:46] [ForkJoinPool.commonPool-worker-3/INFO]: [Skript] A new version of Skript is available: 2.9.2 (you're currently running 2.7.0-beta1)
[00:07:46] [ForkJoinPool.commonPool-worker-3/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.9.2/Skript-2.9.2.jar>https://github.com/SkriptLang/Skript/releases/download/2.9.2/Skript-2.9.2.jar
[00:07:54] [Server thread/INFO]: [Skript] Loaded 150694 aliases in 9220ms
[00:07:54] [Server thread/INFO]: [Skript] Missing lang enum constant for 'inventory types.JUKEBOX'
[00:07:54] [Server thread/INFO]: [Skript] Missing lang enum constant for 'inventory types.SMITHING_NEW'
[00:07:54] [Server thread/INFO]: [Skript] Missing lang enum constant for 'inventory types.JUKEBOX'
[00:07:54] [Server thread/INFO]: [Skript] Missing lang enum constant for 'inventory types.SMITHING_NEW'
[00:07:54] [Server thread/INFO]: [Skript] Missing lang enum constant for 'biomes.CHERRY_GROVE'
[00:07:54] [Server thread/INFO]: [Skript] Missing lang enum constant for 'biomes.CHERRY_GROVE'
[00:07:55] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[00:07:55] [Server thread/INFO]: [ThemePark] Enabling ThemePark v3.1.2
[00:07:55] [Server thread/INFO]: ThemePark - Starting...
[00:07:55] [Server thread/INFO]: ThemePark - Added connection org.sqlite.jdbc4.JDBC4Connection@22f6be6d
[00:07:55] [Server thread/INFO]: ThemePark - Start completed.
[00:07:55] [Server thread/INFO]: SQLite database running on version: 3.41.2
[00:07:55] [Server thread/INFO]: ThemePark - Starting...
[00:07:55] [Server thread/INFO]: ThemePark - Added connection com.mysql.cj.jdbc.ConnectionImpl@4ddbcad8
[00:07:55] [Server thread/INFO]: ThemePark - Start completed.
[00:07:55] [Server thread/INFO]: Query: CREATE TABLE IF NOT EXISTS regions(id VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id))
[00:07:55] [Server thread/INFO]: Map: null
[00:07:55] [Server thread/WARN]: java.sql.SQLSyntaxErrorException: Specified key was too long; max key length is 767 bytes
[00:07:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
[00:07:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[00:07:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
[00:07:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
[00:07:55] [Server thread/WARN]:     at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
[00:07:55] [Server thread/WARN]:     at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.execute(Database.java:38)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.database.DatabaseService.execute(DatabaseService.java:46)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.load.objects.DatabaseLoader.loadTables(DatabaseLoader.java:51)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.load.objects.DatabaseLoader.load(DatabaseLoader.java:39)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.load.DataLoadService.init(DataLoadService.java:32)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.ThemeParkAPI.enable(ThemeParkAPI.java:39)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.ThemePark.onEnable(ThemePark.java:24)
[00:07:55] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[00:07:55] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[00:07:55] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[00:07:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541)
[00:07:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[00:07:55] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:07:55] [Server thread/INFO]: Query: CREATE TABLE IF NOT EXISTS attractions(id VARCHAR(255) NOT NULL, region_id VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, cover VARCHAR(255) NOT NULL, status_id INT(11), PRIMARY KEY(id))
[00:07:55] [Server thread/INFO]: Map: null
[00:07:55] [Server thread/WARN]: java.sql.SQLSyntaxErrorException: Specified key was too long; max key length is 767 bytes
[00:07:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
[00:07:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[00:07:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
[00:07:55] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
[00:07:55] [Server thread/WARN]:     at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
[00:07:55] [Server thread/WARN]:     at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.execute(Database.java:38)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.database.DatabaseService.execute(DatabaseService.java:46)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.load.objects.DatabaseLoader.loadTables(DatabaseLoader.java:56)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.load.objects.DatabaseLoader.load(DatabaseLoader.java:39)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.load.DataLoadService.init(DataLoadService.java:32)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.api.ThemeParkAPI.enable(ThemeParkAPI.java:39)
[00:07:55] [Server thread/WARN]:     at nl.iobyte.themepark.ThemePark.onEnable(ThemePark.java:24)
[00:07:55] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[00:07:55] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[00:07:55] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[00:07:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541)
[00:07:55] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975)
[00:07:55] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[00:07:55] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:07:56] [Server thread/INFO]: [TCCoasters] Enabling TCCoasters v1.20.4-v1
[00:07:58] [Server thread/INFO]: [TCCoasters] TCCoasters version 1.20.4-v1 (build: 333) enabled! (2.266s)
[00:07:58] [Server thread/INFO]: [ThemeParkConnector] Enabling ThemeParkConnector v3.1.2
[00:07:58] [Server thread/INFO]: Query: CREATE TABLE IF NOT EXISTS ridecounts(uuid VARCHAR(255) NOT NULL, attraction_id VARCHAR(255) NOT NULL, year SMALLINT(2), month SMALLINT(2), week SMALLINT(2), day SMALLINT(2), count SMALLINT(2), UNIQUE(uuid, attraction_id, year, day))
[00:07:58] [Server thread/INFO]: Map: null
[00:07:58] [Server thread/WARN]: java.sql.SQLSyntaxErrorException: Specified key was too long; max key length is 767 bytes
[00:07:58] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
[00:07:58] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[00:07:58] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
[00:07:58] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
[00:07:58] [Server thread/WARN]:     at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
[00:07:58] [Server thread/WARN]:     at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.execute(Database.java:38)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themepark.api.database.DatabaseService.execute(DatabaseService.java:46)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themeparkconnector.api.load.objects.DatabaseLoader.load(DatabaseLoader.java:15)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themeparkconnector.api.load.DataLoadService.init(DataLoadService.java:30)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themeparkconnector.api.ThemeParkConnectorAPI.enable(ThemeParkConnectorAPI.java:44)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themeparkconnector.ThemeParkConnector.onEnable(ThemeParkConnector.java:29)
[00:07:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[00:07:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[00:07:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[00:07:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541)
[00:07:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[00:07:58] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:07:58] [Server thread/INFO]: Query: CREATE TABLE IF NOT EXISTS actionfotos (id BIGINT(20) NOT NULL AUTO_INCREMENT, uuid VARCHAR(256) NOT NULL, ride VARCHAR(256) NOT NULL, base64 LONGBLOB NOT NULL, date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP(), UNIQUE(uuid, ride), PRIMARY KEY(id))
[00:07:58] [Server thread/INFO]: Map: null
[00:07:58] [Server thread/WARN]: java.sql.SQLSyntaxErrorException: Specified key was too long; max key length is 767 bytes
[00:07:58] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
[00:07:58] [Server thread/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[00:07:58] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
[00:07:58] [Server thread/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
[00:07:58] [Server thread/WARN]:     at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
[00:07:58] [Server thread/WARN]:     at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.execute(Database.java:38)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themepark.api.database.DatabaseService.execute(DatabaseService.java:46)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themeparkconnector.api.load.objects.DatabaseLoader.load(DatabaseLoader.java:22)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themeparkconnector.api.load.DataLoadService.init(DataLoadService.java:30)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themeparkconnector.api.ThemeParkConnectorAPI.enable(ThemeParkConnectorAPI.java:44)
[00:07:58] [Server thread/WARN]:     at nl.iobyte.themeparkconnector.ThemeParkConnector.onEnable(ThemeParkConnector.java:29)
[00:07:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[00:07:58] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[00:07:58] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[00:07:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541)
[00:07:58] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975)
[00:07:58] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[00:07:58] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:07:58] [Server thread/INFO]: [Animatronics] Enabling Animatronics v2.7
[00:07:58] [Server thread/WARN]: [ProtocolLib] Error filtering reports: java.lang.IllegalArgumentException: Cannot find report name for Plugin %s tried to register listener for unknown packet %s [direction: from %s]
[00:07:58] [Server thread/WARN]: [ProtocolLib] [OutboundPacketListenerSet] Plugin Animatronics tried to register listener for unknown packet SPAWN_ENTITY_LIVING[PLAY, SERVER, 244, classNames: [net.minecraft.network.protocol.game.PacketPlayOutSpawnEntityLiving, net.minecraft.network.protocol.game.ClientboundSpawnEntityLivingPacket, PacketPlayOutSpawnEntityLiving, ClientboundSpawnEntityLivingPacket, SpawnEntityLiving, net.minecraft.network.play.server.SPacketSpawnMob] (unregistered)] [direction: from SERVER]
[00:07:58] [Server thread/WARN]: [ProtocolLib] Error filtering reports: java.lang.IllegalArgumentException: Cannot find report name for Plugin %s tried to register listener for unknown packet %s [direction: from %s]
[00:07:58] [Server thread/WARN]: [ProtocolLib] [OutboundPacketListenerSet] Plugin Animatronics tried to register listener for unknown packet SPAWN_ENTITY_PAINTING[PLAY, SERVER, 243, classNames: [net.minecraft.network.protocol.game.PacketPlayOutSpawnEntityPainting, net.minecraft.network.protocol.game.ClientboundSpawnEntityPaintingPacket, PacketPlayOutSpawnEntityPainting, ClientboundSpawnEntityPaintingPacket, SpawnEntityPainting, net.minecraft.network.play.server.SPacketSpawnPainting] (unregistered)] [direction: from SERVER]
[00:07:58] [Server thread/WARN]: [ProtocolLib] Error filtering reports: java.lang.IllegalArgumentException: Cannot find report name for Plugin %s tried to register listener for unknown packet %s [direction: from %s]
[00:07:58] [Server thread/WARN]: [ProtocolLib] [OutboundPacketListenerSet] Plugin Animatronics tried to register listener for unknown packet BED[PLAY, SERVER, 251, classNames: [net.minecraft.network.protocol.game.PacketPlayOutBed, net.minecraft.network.protocol.game.ClientboundBedPacket, PacketPlayOutBed, ClientboundBedPacket, Bed, net.minecraft.network.play.server.SPacketUseBed] (unregistered)] [direction: from SERVER]
[00:07:58] [Server thread/INFO]: [Animatronics] Supported version, continuing.
[00:07:58] [Server thread/INFO]: [Animatronics] Config.yml found, loading!
[00:07:59] [Server thread/INFO]: [ActionFoto] Enabling ActionFoto v2.13.1
[00:07:59] [Server thread/INFO]: [ActionFoto] -------------------------------
[00:07:59] [Server thread/INFO]: [ActionFoto] ActionFoto v2.13.1
[00:07:59] [Server thread/INFO]: [ActionFoto] Made by SBDeveloper
[00:07:59] [Server thread/INFO]: [ActionFoto]  
[00:07:59] [Server thread/INFO]: [ActionFoto] This copy is bought by MiroteGamerYT (21222).
[00:07:59] [Server thread/INFO]: [ActionFoto] Validating your purchase...
[00:07:59] [Thread-19/INFO]: [Animatronics] There is a new version available! You are running: 2.7 , latest: 2.7.8 .
[00:07:59] [Server thread/INFO]: [ActionFoto] Your purchase is valid. Thanks for your purchase!
[00:07:59] [Server thread/INFO]: [ActionFoto] Loading Files...
[00:07:59] [Server thread/INFO]: [ActionFoto] Loading Reflection support for v1_19_R3...
[00:07:59] [Server thread/INFO]: [ActionFoto] Loading caches...
[00:07:59] [Server thread/INFO]: [ActionFoto] Loading commands and events...
[00:07:59] [Server thread/INFO]: [ActionFoto] Loading TrainCarts signs...
[00:07:59] [Server thread/INFO]: [ActionFoto] Loading ThemeParkPanel hook...
[00:07:59] [Server thread/INFO]: [ActionFoto] Connected to ThemeParkPanel! Photos will be sended to your panel.
[00:07:59] [Server thread/INFO]: [ActionFoto] Loading metrics. Can be disabled in the global bStats config.
[00:07:59] [Server thread/INFO]: [ActionFoto] Plugin enabled!
[00:07:59] [Server thread/INFO]: [ActionFoto] -------------------------------
[00:07:59] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3568)
[00:07:59] [Server thread/INFO]: [Citizens] Loading external libraries
[00:08:00] [Server thread/INFO]: [Citizens] Detected system language [[es]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[00:08:00] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[00:08:00] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[00:08:00] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.28.0
[00:08:00] [Server thread/INFO]: [EffectMaster] Enabling EffectMaster v1.2.2
[00:08:00] [Server thread/INFO]: [EffectMaster] Detected server version 3763-Spigot-7d7b241-5a5e43e (MC: 1.19.4). Going with short version 19
[00:08:00] [Server thread/INFO]: [EffectMaster] Train Carts found.
[00:08:00] [Server thread/INFO]: [EffectMaster] Animatronics found.
[00:08:00] [Server thread/INFO]: [EffectMaster] ProtocolLib found.
[00:08:00] [Server thread/INFO]: [MTVehicles] Enabling MTVehicles v2.5.3
[00:08:00] [Server thread/INFO]: [MTVehicles] Plugin has been loaded!
[00:08:00] [Server thread/INFO]: [MTVehicles] --------------------------
[00:08:00] [Server thread/INFO]: [MTVehicles] Welcome by MTVehicles v2.5.3!
[00:08:00] [Server thread/INFO]: [MTVehicles] Thanks for using our plugin.
[00:08:00] [Server thread/INFO]: [MTVehicles] --------------------------
[00:08:00] [Server thread/INFO]: [MTVehicles] ---------------------------------------
[00:08:00] [Server thread/INFO]: [MTVehicles] A new version of MTVehicles is available!
[00:08:00] [Server thread/INFO]: [MTVehicles] We have already released v2.5.4 but you are still using v2.5.3!
[00:08:00] [Server thread/INFO]: [MTVehicles] Use /mtv update to update! (Don't forget to reload the plugin!)
[00:08:00] [Server thread/INFO]: [MTVehicles] For more information visit https://mtvehicles.eu!
[00:08:00] [Server thread/INFO]: [MTVehicles] ---------------------------------------
[00:08:00] [Server thread/INFO]: [OpenAudioMc] Enabling OpenAudioMc v6.10.0
[00:08:00] [Server thread/INFO]: [OpenAudioMc] [info] Starting OpenAudioMc, build 1401 by Mats
[00:08:00] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
[00:08:00] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
[00:08:00] [Server thread/INFO]: [OpenAudioMc] [info] Using the main config file..
[00:08:00] [Server thread/INFO]: [OpenAudioMc] [info] Starting configuration module
[00:08:00] [Server thread/INFO]: [OpenAudioMc] [info] Detected md_5 chat support, using default user adapter
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Skipped 42/42 migrations.
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] ModuleLoaderService: Loading modules from /var/lib/pufferpanel/servers/9d5ec952/plugins/OpenAudioMc/modules
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Using networking class com.craftmend.openaudiomc.spigot.modules.proxy.service.ProxyNetworkingService
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Initializing connection service...
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Starting authentication module
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Creating account...
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Skipping account setup since this isn't a master server, moving on with fake api keys.
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Adding spigot tables
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Alias
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (alias<->Alias.java)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for ClientDataStore
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (client_data_store<->ClientDataStore.java)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MojangProfile
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (mojang_profile<->MojangProfile.java)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for RegionProperties
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (region_properties<->RegionProperties.java)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Speaker
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (speaker<->Speaker.java)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for StoredWorldChunk
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (stored_world_chunk<->StoredWorldChunk.java)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for TimedRegionProperties
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (timed_region_properties<->TimedRegionProperties.java)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for MediaRule
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (media_rule<->MediaRule.java)
[00:08:01] [pool-53-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (42aad8401b73c52bb4edd11d9a73aa8a6e1619c1)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Initializing account details
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Loading aliases...
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 5 aliases
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Detected version type: MODERN
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Enabling the 1.13 speaker system
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Starting redstone speaker tick task with interval 5 ticks
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for Playlist
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlists<->Playlist.java)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Registering storage table for PlaylistEntry
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] DatabaseService: Registering class <-> table (playlist_entries<->PlaylistEntry.java)
[00:08:01] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Purged 2 stale media chunks from database.
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 9 media chunks from file.
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Enabling voicechat channel filter
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Loading static voice channels..
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: survival
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: off-topic
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Created static channel: staff-chat
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Loaded 3 static voice channels
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Plugin Essentials is already enabled, running handler
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Plugin WorldGuard is already enabled, running handler
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Turns out you have WorldGuard installed! enabling regions and the region tasks..
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Enabling the newer 1.13 regions
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Scanning 1042 regions for duplicates (out of 1042 total regions)
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] No duplicate regions found, skipping cleanup...
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Plugin Train_Carts is already enabled, running handler
[00:08:01] [Server thread/INFO]: [OpenAudioMc] [info] Starting and loading took 92308MS
[00:08:01] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v3.7.1
[00:08:01] [Server thread/WARN]: [ArmorStandTools] Support for v1_19_R3 not found, trying v1_16_R3. Please check for possible updates to the plugin.
[00:08:01] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[00:08:01] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[00:08:01] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[00:08:01] [Server thread/INFO]: [skript-gui] Enabling skript-gui v1.3
[00:08:01] [Server thread/INFO]: [Skript] Missing version in default.lang
[00:08:01] [Server thread/INFO]: [Skript] Missing lang enum constant for 'biomes.CHERRY_GROVE'
[00:08:01] [Server thread/INFO]: [Skript] Missing lang enum constant for 'inventory types.JUKEBOX'
[00:08:01] [Server thread/INFO]: [Skript] Missing lang enum constant for 'inventory types.SMITHING_NEW'
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] Enabling ThemeParkPlus v3.2.2
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] -------------------------------
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] ThemeParkPlus v3.2.2
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] Made by SBDeveloper
[00:08:01] [Server thread/INFO]: [ThemeParkPlus]  
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] Loading Files...
[00:08:01] [Server thread/INFO]: ThemeParkPlus - Starting...
[00:08:01] [Server thread/INFO]: ThemeParkPlus - Added connection org.sqlite.jdbc4.JDBC4Connection@7327fc3d
[00:08:01] [Server thread/INFO]: ThemeParkPlus - Start completed.
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] This copy is bought by AstralicaStudio (28332).
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] Validating your purchase...
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] Your purchase is valid. Thanks for your purchase!
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] Loading commands...
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] Loading listeners...
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] Enabling ThemePark hook...
[00:08:01] [Server thread/INFO]: [ThemeParkPlus] Loading Discord webhook...
[00:08:02] [Server thread/INFO]: [ThemeParkPlus] Loading GUI helper...
[00:08:02] [Server thread/INFO]: [ThemeParkPlus] Loading data...
[00:08:02] [Server thread/INFO]: [ThemeParkPlus] Loading metrics (can be disabled in the config of bStats)...
[00:08:02] [Server thread/INFO]: [ThemeParkPlus] Plugin enabled!
[00:08:02] [Server thread/INFO]: [ThemeParkPlus] -------------------------------
[00:08:02] [Server thread/INFO]: [Denizen] Enabling Denizen v1.3.0-SNAPSHOT (build 1804-REL)
[00:08:02] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1378), impl for Spigot v1.3.0-SNAPSHOT (build 1804-REL) 
[00:08:02] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[00:08:02] [Server thread/INFO]: +> [Denizen] Running on java version: 19.0.1 
[00:08:02] [Server thread/WARN]: [Denizen] Running unreliable future Java version. modern Minecraft versions are built for Java 17. Other Java versions are not guaranteed to function properly.
[00:08:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enviar la consola al canal asignado TC:consola-warner(1280113226792697930)
[00:08:02] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[00:08:02] [Server thread/INFO]: +> [Denizen]  Denizen  scriptable minecraft 
[00:08:02] [Server thread/INFO]: +> [Denizen]  
[00:08:02] [Server thread/INFO]: +> [Denizen] by: The DenizenScript team 
[00:08:02] [Server thread/INFO]: +> [Denizen] Chat with us at: https://discord.gg/Q6pZGSR 
[00:08:02] [Server thread/INFO]: +> [Denizen] Or learn more at: https://denizenscript.com 
[00:08:02] [Server thread/INFO]: +> [Denizen] version: 1.3.0-SNAPSHOT (build 1804-REL) 
[00:08:02] [Server thread/INFO]: +> [Denizen] +-------------------------+ 
[00:08:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Activando complementos de Essentials
[00:08:03] [Server thread/ERROR]: Error occurred while enabling Denizen v1.3.0-SNAPSHOT (build 1804-REL) (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/trait/Toggleable
    at java.lang.ClassLoader.defineClass1(Native Method) ~[?:?]
    at java.lang.ClassLoader.defineClass(ClassLoader.java:1013) ~[?:?]
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:193) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:588) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:104) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:99) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    at com.denizenscript.denizen.npc.TraitRegistry.registerMainTraits(TraitRegistry.java:16) ~[?:?]
    at com.denizenscript.denizen.Denizen.onEnable(Denizen.java:310) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at java.lang.Thread.run(Thread.java:1589) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.trait.Toggleable
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:147) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:99) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    ... 21 more
[00:08:03] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.4-release-3
[00:08:04] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.4-release-3
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.59
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     CraftBukkit 3763-Spigot-7d7b241-5a5e43e (MC: 1.19.4)
                                               
[00:08:04] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[00:08:04] [Server thread/INFO]: [ItemsAdder] Registered Skript API
[00:08:04] [Server thread/ERROR]: [ItemsAdder] Error while hooking into Denizen
[00:08:04] [Server thread/WARN]: java.lang.NullPointerException: Cannot invoke "java.lang.Class.getSimpleName()" because "clazz" is null
[00:08:04] [Server thread/WARN]:     at com.denizenscript.denizencore.utilities.debugging.DebugInternals.lambda$getClassNameOpti$0(DebugInternals.java:428)
[00:08:04] [Server thread/WARN]:     at java.base/java.util.Map.computeIfAbsent(Map.java:1052)
[00:08:04] [Server thread/WARN]:     at com.denizenscript.denizencore.utilities.debugging.DebugInternals.getClassNameOpti(DebugInternals.java:428)
[00:08:04] [Server thread/WARN]:     at com.denizenscript.denizencore.utilities.codegen.TagNamer.nameTagInterface(TagNamer.java:23)
[00:08:04] [Server thread/WARN]:     at com.denizenscript.denizencore.tags.ObjectTagProcessor.registerTagInternal(ObjectTagProcessor.java:130)
[00:08:04] [Server thread/WARN]:     at com.denizenscript.denizencore.tags.ObjectTagProcessor.registerTag(ObjectTagProcessor.java:126)
[00:08:04] [Server thread/WARN]:     at dev.lone.itemsadder.Core.OtherPlugins.Denizen.DenizenHook.hook(SourceFile:22)
[00:08:04] [Server thread/WARN]:     at dev.lone.itemsadder.Main.onEnable(SourceFile:399)
[00:08:04] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266)
[00:08:04] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342)
[00:08:04] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480)
[00:08:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541)
[00:08:04] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455)
[00:08:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589)
[00:08:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414)
[00:08:04] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250)
[00:08:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975)
[00:08:04] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304)
[00:08:04] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:08:04] [Server thread/INFO]: [ScreenEffects] Enabling ScreenEffects v1.0.15-r3
[00:08:04] [Server thread/INFO]: [ScreenEffects]     Extracting default effects from .jar
[00:08:04] [Server thread/INFO]: [ScreenEffects]       DONE extracting default effects from .jar
[00:08:04] [Server thread/INFO]: [CosmeticsCore] Enabling CosmeticsCore v1.2.3b
[00:08:05] [Server thread/ERROR]: Error occurred while enabling CosmeticsCore v1.2.3b (Is it up to date?)
java.lang.NoSuchMethodError: 'void dev.lone.LoneLibs.nbt.nbtapi.NBTItem.saveMetaChanges()'
    at dev.lone.cosmeticscore.main.aH.a(SourceFile:26) ~[?:?]
    at dev.lone.cosmeticscore.main.as.a(SourceFile:46) ~[?:?]
    at dev.lone.cosmeticscore.main.aq.a(SourceFile:48) ~[?:?]
    at dev.lone.cosmeticscore.b.b(SourceFile:110) ~[?:?]
    at dev.lone.cosmeticscore.Main.onEnable(SourceFile:59) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:342) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:480) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugin(CraftServer.java:541) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at org.bukkit.craftbukkit.v1_19_R3.CraftServer.enablePlugins(CraftServer.java:455) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:589) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:414) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:250) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:975) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at java.lang.Thread.run(Thread.java:1589) ~[?:?]
[00:08:05] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[00:08:05] [Server thread/INFO]: Done (76.958s)! For help, type "help"
[00:08:05] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading...
[00:08:05] [Server thread/INFO]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[00:08:05] [Craft Scheduler Thread - 0/INFO]: Obteniendo información de versión...
[00:08:05] [Server thread/INFO]: [BigDoors] Checking for updates...
[00:08:05] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[00:08:05] [Craft Scheduler Thread - 2/WARN]: [WESV] A new version is available ! Last version is 2.1.7 and you are on 2.1.3
[00:08:05] [Craft Scheduler Thread - 2/WARN]: [WESV] You can download it on: https://www.spigotmc.org/resources/worldeditselectionvisualizer.17311/
[00:08:05] [Server thread/INFO]: [Skript] Loading variables...
[00:08:05] [Server thread/INFO]: [Skript] Loaded 5 variables in 0.0 seconds
[00:08:05] [Craft Scheduler Thread - 5/INFO]: [CommandPanels] Could not access github.
[00:08:05] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading resources...
[00:08:05] [ForkJoinPool.commonPool-worker-3/INFO]: [BigDoors] No new updates available.
[00:08:05] [Server thread/INFO]: [Skript] Line 17: (RainbowArmor.sk)
[00:08:05] [Server thread/INFO]:     Can't understand this condition/effect: set "&a&lR&b&lA&c&lI&d&lN&e&lB&f&lO&a&lW &b&lA&c&lR&d&lM&e&lO&f&lR > &6Rainbow-Armor aktiviert!"
[00:08:05] [Server thread/INFO]:     Line: set "&a&lR&b&lA&c&lI&d&lN&e&lB&f&lO&a&lW &b&lA&c&lR&d&lM&e&lO&f&lR > &6Rainbow-Armor aktiviert!"
[00:08:05] [Server thread/INFO]:  
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer] ----------------------------------------------
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer]     +==================+
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer]     |------------------|
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer]     |    Proxy Mode    |
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer]     +==================+
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer] ----------------------------------------------
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer]     Version: 15.0.7
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer]     Commit: 301d078
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer]     A new version (15.4.3) is available! Downloading update...
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer] ----------------------------------------------
[00:08:05] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer] [GitHubUpdate] Downloading update...
[00:08:06] [Server thread/INFO]: [Skript] Line 4: (map.sk)
[00:08:06] [Server thread/INFO]:     Can't understand this condition/effect: open chest with 1 row named "&bMapa" to player
[00:08:06] [Server thread/INFO]:     Line: open chest with 1 row named "&bMapa" to player
[00:08:06] [Server thread/INFO]:  
[00:08:06] [Server thread/INFO]: [Skript] Line 6: (map.sk)
[00:08:06] [Server thread/INFO]:     Can't understand this condition/effect: close last opened chest
[00:08:06] [Server thread/INFO]:     Line: close last opened chest
[00:08:06] [Server thread/INFO]:  
[00:08:06] [Server thread/INFO]: [Skript] Line 9: (map.sk)
[00:08:06] [Server thread/INFO]:     Can't compare an inventory with an item type
[00:08:06] [Server thread/INFO]:     Line: if player's open inventory is a chest named "&bMapa":
[00:08:06] [Server thread/INFO]:  
[00:08:06] [Server thread/INFO]: [Skript] Loaded 11 scripts with a total of 16 structures in 0.83 seconds
[00:08:06] [Server thread/INFO]: [Skript] Finished loading.
[00:08:06] [Craft Scheduler Thread - 5/INFO]: Query: INSERT IGNORE INTO states(id, name, color) VALUES (?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?),(?,?,?)
[00:08:06] [Craft Scheduler Thread - 5/INFO]: Map: {1=0, 2=Global, 3=#3498db, 4=1, 5=Under Contruction, 6=#95a5a6, 7=2, 8=Open, 9=#4cd137, 10=3, 11=Closed, 12=#e84118, 13=4, 14=Under Maintenance, 15=#f39c12, 16=5, 17=Malfunction, 18=#8e44ad}
[00:08:06] [Craft Scheduler Thread - 5/WARN]: java.sql.SQLSyntaxErrorException: Unknown column 'name' in 'field list'
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.execute(Database.java:38)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.lambda$executeAsync$0(Database.java:18)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:82)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[00:08:06] [Craft Scheduler Thread - 5/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:08:06] [Craft Scheduler Thread - 2/INFO]: Query: INSERT IGNORE INTO attractions(id, region_id, name, cover, status_id) VALUES (?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?),(?,?,?,?,?)
[00:08:06] [Craft Scheduler Thread - 2/INFO]: Map: {1=11, 2=2, 3=Batman:_Gotham_City_Escape, 4=https://via.placeholder.com/500x500, 5=2, 6=12, 7=3, 8=Cataratas_Salvajes, 9=https://via.placeholder.com/500x500, 10=2, 11=13, 12=3, 13=Rio_Bravo, 14=https://via.placeholder.com/500x500, 15=3, 16=14, 17=3, 18=Coaster_Express, 19=https://via.placeholder.com/500x500, 20=1, 21=15, 22=3, 23=Carros_de_la_Mina, 24=https://via.placeholder.com/500x500, 25=1, 26=16, 27=4, 28=Coches_Locos_de_Pato_Lucas, 29=https://via.placeholder.com/500x500, 30=1, 31=17, 32=4, 33=Correcaminos_Bip_Bip!, 34=https://via.placeholder.com/500x500, 35=4, 36=18, 37=4, 38=Rapidos_ACME, 39=https://via.placeholder.com/500x500, 40=1, 41=19, 42=4, 43=Comboy_de_Camiones, 44=https://via.placeholder.com/500x500, 45=2, 46=1, 47=1, 48=CineTour, 49=https://via.placeholder.com/500x500, 50=2, 51=2, 52=1, 53=StuntFall, 54=https://via.placeholder.com/500x500, 55=1, 56=3, 57=1, 58=Oso_Yogui, 59=https://via.placeholder.com/500x500, 60=1, 61=4, 62=1, 63=HotelEmbrujado, 64=https://via.placeholder.com/500x500, 65=1, 66=5, 67=2, 68=Superman:_La_atraccion_de_acero, 69=https://via.placeholder.com/500x500, 70=2, 71=6, 72=2, 73=Lex_Luthor_Invertatron, 74=https://via.placeholder.com/500x500, 75=1, 76=7, 77=2, 78=Shadows_Of_Arkham, 79=https://via.placeholder.com/500x500, 80=2, 81=8, 82=2, 83=Sillas_Voladoras_de_Mr.Freeze, 84=https://via.placeholder.com/500x500, 85=2, 86=9, 87=2, 88=La_Venganza_del_Enigma, 89=https://via.placeholder.com/500x500, 90=2, 91=20, 92=4, 93=Tom_y_Jerry:_Picnic_en_el_Parque, 94=https://via.placeholder.com/500x500, 95=2, 96=10, 97=2, 98=Coches_Locos_del_Joker, 99=https://via.placeholder.com/500x500, 100=2, 101=21, 102=4, 103=Scooby_Doo!_Tazas_de_Té, 104=https://via.placeholder.com/500x500, 105=2}
[00:08:06] [Craft Scheduler Thread - 2/WARN]: java.sql.SQLSyntaxErrorException: Unknown column 'region_id' in 'field list'
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.execute(Database.java:38)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.lambda$executeAsync$0(Database.java:18)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:82)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[00:08:06] [Craft Scheduler Thread - 2/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:08:06] [Craft Scheduler Thread - 4/INFO]: Query: INSERT IGNORE INTO regions(id, name) VALUES (?,?),(?,?),(?,?),(?,?)
[00:08:06] [Craft Scheduler Thread - 4/INFO]: Map: {1=1, 2=MovieWorld, 3=2, 4=DC_Superheroes_World, 5=3, 6=Old_West_Territory, 7=4, 8=Cartoon_Village}
[00:08:06] [Craft Scheduler Thread - 4/WARN]: java.sql.SQLSyntaxErrorException: Unknown column 'name' in 'field list'
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:354)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at com.zaxxer.hikari.pool.ProxyPreparedStatement.execute(ProxyPreparedStatement.java:44)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.execute(HikariProxyPreparedStatement.java)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.execute(Database.java:38)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at nl.iobyte.themepark.api.database.objects.Database.lambda$executeAsync$0(Database.java:18)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:82)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[00:08:06] [Craft Scheduler Thread - 4/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:08:06] [Craft Scheduler Thread - 6/WARN]: java.io.IOException: Server returned HTTP response code: 403 for URL: https://api.spigotmc.org/legacy/update.php?resource=48648
[00:08:06] [Craft Scheduler Thread - 6/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1993)
[00:08:06] [Craft Scheduler Thread - 6/WARN]:     at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1585)
[00:08:06] [Craft Scheduler Thread - 6/WARN]:     at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224)
[00:08:06] [Craft Scheduler Thread - 6/WARN]:     at nl.iobyte.themepark.utils.UpdateManager.lambda$check$2(UpdateManager.java:110)
[00:08:06] [Craft Scheduler Thread - 6/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftTask.run(CraftTask.java:82)
[00:08:06] [Craft Scheduler Thread - 6/WARN]:     at org.bukkit.craftbukkit.v1_19_R3.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:54)
[00:08:06] [Craft Scheduler Thread - 6/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
[00:08:06] [Craft Scheduler Thread - 6/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
[00:08:06] [Craft Scheduler Thread - 6/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1589)
[00:08:06] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[00:08:06] [Craft Scheduler Thread - 2/INFO]: [EffectMaster] There is a new update available. You are running 1.2.2, the new version is 1.4.5
[00:08:06] [Craft Scheduler Thread - 2/INFO]: [EffectMaster] Please download the new version here: 
[00:08:06] [Craft Scheduler Thread - 2/INFO]: [EffectMaster] https://www.spigotmc.org/resources/effectmaster-create-beautiful-shows-in-your-server.107260/
[00:08:06] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder]  
[00:08:06] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] UPDATE available: https://www.spigotmc.org/resources/73355/
[00:08:06] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Current version: 3.6.4-release-3 | Online version: 4.0.2-beta-release-11
[00:08:06] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder]  
[00:08:06] [Craft Scheduler Thread - 4/INFO]: [ItemsAdder] [License] Spigot product licensed to: Sermega (362953)
[00:08:06] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[00:08:06] [Server thread/WARN]: [ItemsAdder] Detected legacy ItemsAdder pack (pre 3.3.0).
[00:08:06] [Server thread/WARN]: [ItemsAdder] Trying to load files, unexpected results might occur.
[00:08:06] [Server thread/WARN]: [ItemsAdder] It's adviced to follow the new guidelines: https://a.devs.beer/ia-new-guidelines-330
[00:08:06] [Thread-32/INFO]: --------------------
[00:08:06] [Thread-32/INFO]: [CoreProtect] Version 22.4 is now available.
[00:08:06] [Thread-32/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[00:08:06] [Thread-32/INFO]: --------------------
[00:08:06] [Craft Scheduler Thread - 1/WARN]: [SkinsRestorer] [GitHubUpdate] MD5 header not found, cannot verify integrity
[00:08:06] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer] [GitHubUpdate] Downloaded update in 867ms
[00:08:06] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer] [GitHubUpdate] Update saved as SkinsRestorer.jar
[00:08:06] [Craft Scheduler Thread - 1/INFO]: [SkinsRestorer] [GitHubUpdate] The update will be loaded on the next server restart
[00:08:06] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading textures...
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Baking resources...
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/ERROR]: [ItemsAdder] Invalid character in folders/name of file: GCElogo
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:07] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Resources loaded.
[00:08:07] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading world '42cd531c-f904-4a22-8708-f68f2938311f' (/var/lib/pufferpanel/servers/9d5ec952/world)...
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Initializing Storage: 'file' (Type: FILE)
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading map 'world'...
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading world 'ea327115-2f5e-4df5-8fea-b534ff11a47e' (/var/lib/pufferpanel/servers/9d5ec952/world_the_end/DIM1)...
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading map 'world_the_end'...
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading world '173a35cf-603e-4769-a7be-c240fafe31db' (/var/lib/pufferpanel/servers/9d5ec952/world_nether/DIM-1)...
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading map 'world_nether'...
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading world '4e7c00b3-8669-4d61-894e-d2798e3fb054' (/var/lib/pufferpanel/servers/9d5ec952/beach)...
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loading map 'beach'...
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] WebServer bound to: /89.140.72.75:25666
[00:08:08] [Thread-35/INFO]: [BlueMap] WebServer started.
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Server thread/WARN]: Unable to create attribute: Cannot invoke "net.minecraft.nbt.NBTBase.c()" because "var0" is null
[00:08:08] [Craft Scheduler Thread - 3/INFO]: [BlueMap] Loaded!
[00:08:09] [Server thread/WARN]: [Train_Carts] Cart [f3d3ddd6-4c50-4df0-b937-01613c5847d1] of train 'train32' at chunk [77, 41] was not found in Chunk Entities, yet was found in World at [1202, 27, 715]
[00:08:09] [Server thread/WARN]: [Train_Carts] 7 carts of group 'train33' are missing near chunk [49, 91]! (externally edited?)
[00:08:09] [Server thread/WARN]: [Train_Carts] 1 carts of group 'train31' are missing near chunk [75, 45]! (externally edited?)
[00:08:09] [Server thread/WARN]: [Train_Carts] 1 carts of group 'train18' are missing near chunk [75, 45]! (externally edited?)
[00:08:09] [Server thread/WARN]: [Train_Carts] Cart [aba09fe6-e00f-4eb6-b88a-2602598d4f60] of train 'train19' at chunk [78, 43] was not found in Chunk Entities, yet was found in World at [1202, 27, 709]
[00:08:09] [Server thread/WARN]: [Train_Carts] 7 carts of group 'train11' are missing near chunk [51, 91]! (externally edited?)
[00:08:09] [Server thread/WARN]: [Train_Carts] Cart [4dcbd189-98c0-4e5e-ba9d-10a21f612fc0] of train 'train14' at chunk [76, 46] was not found in Chunk Entities, yet was found in World at [1291, 27, 651]
[00:08:10] [Server thread/WARN]: [Train_Carts] Cart [3e541a49-7b9e-4bb5-9da0-ea2a9f878ee1] of train 'train12' at chunk [58, 120] was not found in Chunk Entities, yet was found in World at [1138, 38, 1494]
[00:08:10] [Server thread/WARN]: [Train_Carts] Cart [37b4192b-b187-4b5b-bde8-6427d8daaf7f] of train 'train12' at chunk [57, 120] was not found in Chunk Entities, yet was found in World at [1137, 38, 1496]
[00:08:10] [Server thread/WARN]: [Train_Carts] Cart [3f8e8d66-256a-4d68-8502-fc2d6d06671f] of train 'train12' at chunk [57, 120] was not found in Chunk Entities, yet was found in World at [1136, 38, 1498]
[00:08:10] [Server thread/WARN]: [Train_Carts] Cart [b9ce1a76-5406-44af-ad44-df5e513c06b3] of train 'train12' at chunk [57, 120] was not found in Chunk Entities, yet was found in World at [1134, 38, 1500]
[00:08:10] [Server thread/WARN]: [Train_Carts] Cart [7d717365-2d6e-46aa-a78b-8c123a40807f] of train 'train12' at chunk [57, 120] was not found in Chunk Entities, yet was found in World at [1133, 38, 1503]
[00:08:10] [Server thread/WARN]: [Train_Carts] Cart [9894ff55-8b0a-4da3-b939-b98c621187da] of train 'train12' at chunk [57, 121] was not found in Chunk Entities, yet was found in World at [1132, 38, 1505]
[00:08:10] [Server thread/WARN]: [Train_Carts] Cart [83eec4a3-4643-4aad-922d-8f6608592a74] of train 'train12' at chunk [57, 121] was not found in Chunk Entities, yet was found in World at [1131, 38, 1508]
[00:08:10] [Server thread/WARN]: [Train_Carts] Cart [1e22b41a-a840-4e97-b0b0-27a6448dcba5] of train 'train12' at chunk [57, 121] was not found in Chunk Entities, yet was found in World at [1130, 38, 1510]
[00:08:10] [Server thread/WARN]: [Train_Carts] 8 carts of group 'train16' are missing near chunk [70, 94]! (externally edited?)
[00:08:10] [Server thread/INFO]: [ccRides] "SillasMF" ride config loaded.
[00:08:15] [Server thread/INFO]: [ccRides] "tazasd" ride config loaded.
[00:08:15] [Server thread/INFO]: [ccRides] "Marvin" ride config loaded.
[00:08:15] [Server thread/INFO]: [ccRides] "droptower" ride config loaded.
[00:08:15] [Server thread/INFO]: [ccRides] Started droptower Ride!
[00:08:15] [Server thread/INFO]: [ccRides] Started tazasd Ride!
[00:08:15] [Server thread/INFO]: [ccRides] Started SillasMF Ride!
[00:08:15] [Server thread/INFO]: [ccRides] Started Marvin Ride!
[00:08:15] [Server thread/INFO]: [ccRides] Sign Config Loaded.
[00:08:16] [Server thread/INFO]: [Citizens] Cargando a 0 NPCs.
[00:08:16] [Craft Scheduler Thread - 3/INFO]: [Vault] Checking for Updates ... 
[00:08:16] [Server thread/WARN]: [MapReflectionAPI] There is a new version available! Current: 1.6.3 New: 1.6.4
[00:08:16] [Server thread/INFO]: [MapReflectionAPI] Trying to download the update. This could take some time...
[00:08:16] [Server thread/INFO]: [ThemePark] Unable to check for updates
[00:08:16] [Server thread/WARN]: [ActionFoto] There is a new version available! Current: 2.13.1 New: 2.13.2
[00:08:16] [Server thread/INFO]: [ActionFoto] Trying to download the update. This could take some time...
[00:08:16] [Server thread/WARN]: [ThemeParkPlus] There is a new version available! Current: 3.2.2 New: 3.2.5
[00:08:16] [Craft Scheduler Thread - 3/INFO]: [Vault] No new version available
[00:08:16] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[00:08:16] [Craft Scheduler Thread - 0/WARN]: ¡Estás a 106 compilación(es) de desactualización de EssentialsX!
[00:08:16] [Craft Scheduler Thread - 0/WARN]: Descárgala aquí: https://essentialsx.net/downloads.html
[00:08:16] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11200ms or 224 ticks behind
[00:08:16] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Loaded 503 items
[00:08:16] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[00:08:16] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 29/750 REAL_NOTE block IDs
[00:08:16] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[00:08:16] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[00:08:16] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[00:08:16] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] Used 637/6608 font_images
[00:08:17] [Server thread/INFO]: [MapReflectionAPI] Update downloaded! If you restart your server, it will be loaded. Filename: plugins/update/MapReflectionAPI-1.6.3.jar
[00:08:17] [Server thread/ERROR]: Could not pass event EntitiesUnloadEvent to Denizen v1.3.0-SNAPSHOT (build 1804-REL)
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesUnloadEvent(CraftEventFactory.java:1770) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.storeChunkSections(PersistentEntitySectionManager.java:240) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.d(PersistentEntitySectionManager.java:262) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$20(PersistentEntitySectionManager.java:281) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at it.unimi.dsi.fastutil.longs.LongCollection.removeIf(LongCollection.java:274) ~[fastutil-8.5.9.jar:?]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.f(PersistentEntitySectionManager.java:280) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.a(PersistentEntitySectionManager.java:303) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.level.WorldServer.a(WorldServer.java:438) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:388) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1200) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1017) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at java.lang.Thread.run(Thread.java:1589) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot assign field "entity" because "com.denizenscript.denizen.events.entity.EntityDespawnScriptEvent.instance" is null
    at com.denizenscript.denizen.scripts.containers.core.EntityScriptHelper.onChunkUnload(EntityScriptHelper.java:46) ~[?:?]
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    ... 17 more
[00:08:17] [Server thread/ERROR]: Could not pass event EntitiesUnloadEvent to Denizen v1.3.0-SNAPSHOT (build 1804-REL)
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesUnloadEvent(CraftEventFactory.java:1770) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.storeChunkSections(PersistentEntitySectionManager.java:240) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.d(PersistentEntitySectionManager.java:262) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$20(PersistentEntitySectionManager.java:281) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at it.unimi.dsi.fastutil.longs.LongCollection.removeIf(LongCollection.java:274) ~[fastutil-8.5.9.jar:?]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.f(PersistentEntitySectionManager.java:280) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.a(PersistentEntitySectionManager.java:303) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.level.WorldServer.a(WorldServer.java:438) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:388) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1200) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1017) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at java.lang.Thread.run(Thread.java:1589) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot assign field "entity" because "com.denizenscript.denizen.events.entity.EntityDespawnScriptEvent.instance" is null
    at com.denizenscript.denizen.scripts.containers.core.EntityScriptHelper.onChunkUnload(EntityScriptHelper.java:46) ~[?:?]
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    ... 17 more
[00:08:17] [Server thread/ERROR]: Could not pass event EntitiesUnloadEvent to Denizen v1.3.0-SNAPSHOT (build 1804-REL)
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesUnloadEvent(CraftEventFactory.java:1770) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.storeChunkSections(PersistentEntitySectionManager.java:240) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.d(PersistentEntitySectionManager.java:262) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$20(PersistentEntitySectionManager.java:281) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at it.unimi.dsi.fastutil.longs.LongCollection.removeIf(LongCollection.java:274) ~[fastutil-8.5.9.jar:?]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.f(PersistentEntitySectionManager.java:280) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.a(PersistentEntitySectionManager.java:303) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.level.WorldServer.a(WorldServer.java:438) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:388) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1200) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1017) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at java.lang.Thread.run(Thread.java:1589) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot assign field "entity" because "com.denizenscript.denizen.events.entity.EntityDespawnScriptEvent.instance" is null
    at com.denizenscript.denizen.scripts.containers.core.EntityScriptHelper.onChunkUnload(EntityScriptHelper.java:46) ~[?:?]
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    ... 17 more
[00:08:17] [Server thread/ERROR]: Could not pass event EntitiesUnloadEvent to Denizen v1.3.0-SNAPSHOT (build 1804-REL)
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesUnloadEvent(CraftEventFactory.java:1770) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.storeChunkSections(PersistentEntitySectionManager.java:240) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.d(PersistentEntitySectionManager.java:262) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$20(PersistentEntitySectionManager.java:281) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at it.unimi.dsi.fastutil.longs.LongCollection.removeIf(LongCollection.java:274) ~[fastutil-8.5.9.jar:?]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.f(PersistentEntitySectionManager.java:280) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.a(PersistentEntitySectionManager.java:303) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.level.WorldServer.a(WorldServer.java:438) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:388) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1200) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1017) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at java.lang.Thread.run(Thread.java:1589) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot assign field "entity" because "com.denizenscript.denizen.events.entity.EntityDespawnScriptEvent.instance" is null
    at com.denizenscript.denizen.scripts.containers.core.EntityScriptHelper.onChunkUnload(EntityScriptHelper.java:46) ~[?:?]
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    ... 17 more
[00:08:17] [Server thread/ERROR]: Could not pass event EntitiesUnloadEvent to Denizen v1.3.0-SNAPSHOT (build 1804-REL)
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesUnloadEvent(CraftEventFactory.java:1770) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.storeChunkSections(PersistentEntitySectionManager.java:240) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.d(PersistentEntitySectionManager.java:262) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$20(PersistentEntitySectionManager.java:281) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at it.unimi.dsi.fastutil.longs.LongCollection.removeIf(LongCollection.java:274) ~[fastutil-8.5.9.jar:?]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.f(PersistentEntitySectionManager.java:280) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.a(PersistentEntitySectionManager.java:303) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.level.WorldServer.a(WorldServer.java:438) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:388) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1200) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1017) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at java.lang.Thread.run(Thread.java:1589) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot assign field "entity" because "com.denizenscript.denizen.events.entity.EntityDespawnScriptEvent.instance" is null
    at com.denizenscript.denizen.scripts.containers.core.EntityScriptHelper.onChunkUnload(EntityScriptHelper.java:46) ~[?:?]
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    ... 17 more
[00:08:17] [Server thread/ERROR]: Could not pass event EntitiesUnloadEvent to Denizen v1.3.0-SNAPSHOT (build 1804-REL)
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesUnloadEvent(CraftEventFactory.java:1770) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.storeChunkSections(PersistentEntitySectionManager.java:240) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.d(PersistentEntitySectionManager.java:262) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$20(PersistentEntitySectionManager.java:281) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at it.unimi.dsi.fastutil.longs.LongCollection.removeIf(LongCollection.java:274) ~[fastutil-8.5.9.jar:?]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.f(PersistentEntitySectionManager.java:280) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.a(PersistentEntitySectionManager.java:303) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.level.WorldServer.a(WorldServer.java:438) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:388) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1200) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1017) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at java.lang.Thread.run(Thread.java:1589) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot assign field "entity" because "com.denizenscript.denizen.events.entity.EntityDespawnScriptEvent.instance" is null
    at com.denizenscript.denizen.scripts.containers.core.EntityScriptHelper.onChunkUnload(EntityScriptHelper.java:46) ~[?:?]
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    ... 17 more
[00:08:17] [Server thread/ERROR]: Could not pass event EntitiesUnloadEvent to Denizen v1.3.0-SNAPSHOT (build 1804-REL)
org.bukkit.event.EventException: null
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:310) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:589) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:576) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R3.event.CraftEventFactory.callEntitiesUnloadEvent(CraftEventFactory.java:1770) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.storeChunkSections(PersistentEntitySectionManager.java:240) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.d(PersistentEntitySectionManager.java:262) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.lambda$20(PersistentEntitySectionManager.java:281) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at it.unimi.dsi.fastutil.longs.LongCollection.removeIf(LongCollection.java:274) ~[fastutil-8.5.9.jar:?]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.f(PersistentEntitySectionManager.java:280) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.world.level.entity.PersistentEntitySectionManager.a(PersistentEntitySectionManager.java:303) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.level.WorldServer.a(WorldServer.java:438) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:388) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1200) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1017) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at net.minecraft.server.MinecraftServer.lambda$0(MinecraftServer.java:304) ~[spigot-1.19.4-R0.1-SNAPSHOT.jar:3763-Spigot-7d7b241-5a5e43e]
    at java.lang.Thread.run(Thread.java:1589) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot assign field "entity" because "com.denizenscript.denizen.events.entity.EntityDespawnScriptEvent.instance" is null
    at com.denizenscript.denizen.scripts.containers.core.EntityScriptHelper.onChunkUnload(EntityScriptHelper.java:46) ~[?:?]
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:578) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:306) ~[spigot-api-1.19.4-R0.1-SNAPSHOT.jar:?]
    ... 17 more
[00:08:18] [Server thread/INFO]: [ActionFoto] Update downloaded! If you restart your server, it will be loaded. Filename: plugins/update/ActionFoto v2.13.1.jar
[00:08:18] [Craft Scheduler Thread - 7/INFO]: [Images] Loaded 50 images...
[00:08:21] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] [Init] Loaded 36 categories
[00:08:21] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] [Init] Loaded successfully.
[00:08:21] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] [Pack] Checking resourcepack url: https://www.dropbox.com/scl/fi/nv5vy0gm45t6o13jvzz0n/generated3.zip?rlkey=f03fn9qp1irh83a9ndcsj8mzz&st=fk12rpzyaw=1
[00:08:23] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] [Pack] ETag: 1725803959439048d
[00:08:28] [Craft Scheduler Thread - 8/INFO]: [ItemsAdder] [Pack] URL is valid (external). URL: https://www.dropbox.com/scl/fi/nv5vy0gm45t6o13jvzz0n/generated3.zip?rlkey=f03fn9qp1irh83a9ndcsj8mzz&st=fk12rpzyaw=1
[00:08:44] [Server thread/INFO]: [Not Secure] [Server] test
[00:08:54] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 8200ms or 164 ticks behind
[00:09:02] [Craft Scheduler Thread - 7/INFO]: [] TPS from last 5s, 10s, 1m, 5m, 15m:
[00:09:02] [Craft Scheduler Thread - 7/INFO]: []  *20.0, 10.99, 15.82, 19.0, 19.65
[00:09:02] [Craft Scheduler Thread - 7/INFO]: [] 
[00:09:02] [Craft Scheduler Thread - 7/INFO]: [] CPU usage from last 10s, 1m, 15m:
[00:09:02] [Craft Scheduler Thread - 7/INFO]: []  39%, 52%, 47%  (system)
[00:09:02] [Craft Scheduler Thread - 7/INFO]: []  41%, 53%, 48%  (process)