Paste #124561: Diff Report Between Paste #124560 and #124559

Date: 2024/07/12 22:55:11 UTC-07:00
Type: Diff Report

View Raw Paste Download This Paste Edit Of Paste 124560
Copy Link


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


-[07:51:30] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/Citizens-2.0.35-b3475 (1).jar'...
+# Citizens NPC Storage
-[07:51:31] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/Citizens-2.0.35-b3475 (1).jar' in 1329ms.
-[07:51:35] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
-[07:51:36] [ServerMain/INFO]: Loaded 1290 recipes
-[07:51:36] [ServerMain/INFO]: Loaded 1399 advancements
-[07:51:36] [Server thread/INFO]: Starting minecraft server version 1.21
-[07:51:36] [Server thread/INFO]: Loading properties
-[07:51:36] [Server thread/INFO]: This server is running Paper version 1.21-48-master@70b0e84 (2024-07-08T19:27:11Z) (Implementing API version 1.21-R0.1-SNAPSHOT)
-[07:51:37] [Server thread/INFO]: Server Ping Player Sample Count: 12
-[07:51:37] [Server thread/INFO]: Using 4 threads for Netty based IO
-[07:51:37] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
-    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
-    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
-[07:51:37] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
-[07:51:37] [Server thread/INFO]: Default game type: SURVIVAL
-[07:51:37] [Server thread/INFO]: Generating keypair
-[07:51:37] [Server thread/INFO]: Starting Minecraft server on :::34636
-[07:51:37] [Server thread/INFO]: Using epoll channel type
-[07:51:37] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
-[07:51:37] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
-[07:51:37] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'DailyRewards' for files 'plugins/.paper-remapped/DailyReward-2.0.1.jar' and 'plugins/.paper-remapped/DailyReward-2.0.1.jar' in 'plugins/.paper-remapped'
-[07:51:37] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'PlaceholderAPI' for files 'plugins/.paper-remapped/PlaceholderAPI.jar' and 'plugins/.paper-remapped/PlaceholderAPI.jar' in 'plugins/.paper-remapped'
-[07:51:37] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'sleep-most' for files 'plugins/.paper-remapped/sleep-most-5.4.0-0.jar' and 'plugins/.paper-remapped/sleep-most-5.4.0-0.jar' in 'plugins/.paper-remapped'
-[07:51:37] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'ToastedAFK' for files 'plugins/.paper-remapped/ToastedAFK-2.0.1.5.jar' and 'plugins/.paper-remapped/ToastedAFK-2.0.1.4 (1).jar' in 'plugins/.paper-remapped'
-[07:51:37] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Ambiguous plugin name 'EconomyShopGUI' for files 'plugins/.paper-remapped/EconomyShopGUI-6.7.6.jar' and 'plugins/.paper-remapped/EconomyShopGUI-6.7.5.jar' in 'plugins/.paper-remapped'
-[07:51:38] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
-[07:51:38] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
-[07:51:38] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
-[07:51:38] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
-[07:51:39] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
-[07:51:44] [Server thread/WARN]: Legacy plugin EssentialsChat vTeamCity does not specify an api-version.
-[07:51:44] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loading 1 libraries... please wait
-[07:51:44] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.1.0/HikariCP-5.1.0.jar
-[07:51:44] [Server thread/INFO]: [SpigotLibraryLoader] [RewardsLite] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
-[07:51:44] [Server thread/WARN]: Legacy plugin EssentialsSpawn vTeamCity does not specify an api-version.
-[07:51:45] [Server thread/WARN]: Legacy plugin EssentialsGeoIP vTeamCity does not specify an api-version.
-[07:51:45] [Server thread/WARN]: Legacy plugin TuSKe v1.8.2 does not specify an api-version.
-[07:51:45] [Server thread/INFO]: [AngelChest] Hooked into WorldGuard 7.0.11-beta1+a801a9d
-[07:51:46] [Server thread/WARN]: Legacy plugin Playtimes v1.6.2b does not specify an api-version.
-[07:51:46] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.0.1
-[07:51:46] [Server thread/INFO]: [ViaVersion] ViaVersion 5.0.1 is now loaded. Registering protocol transformers and injecting...
-[07:51:46] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
-[07:51:46] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
-[07:51:47] [Server thread/INFO]: [ViaBackwards] Loading translations...
-[07:51:47] [Server thread/INFO]: [ViaBackwards] Registering protocols...
-[07:51:48] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
-[07:51:48] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
-[07:51:48] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.4-beta-01+0452ca2
-[07:51:49] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@6f4ce2ee]
-[07:51:49] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
-[07:51:49] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.15.1
-[07:51:49] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
-[07:51:49] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
-[07:51:49] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.2.0-SNAPSHOT-679
-[07:51:49] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.0) has not yet been tested! Proceed with caution.
-[07:51:51] [Server thread/ERROR]: [ProtocolLib] Assuming package version: v1_21_R1
-[07:51:51] [Server thread/ERROR]:   [ProtocolLib] INTERNAL ERROR: Cannot load ProtocolLib.
-  If this problem hasn't already been reported, please open a ticket
-  at https://github.com/dmulloy2/ProtocolLib/issues with the following data:
-  Stack Trace:
-  java.lang.IllegalArgumentException: Unable to find a field that matches {modifiers=[required: 10000, banned: 1000], type={ type input instanceof interface java.util.Map }}
-      at ProtocolLib (5).jar//com.comphenix.protocol.reflect.FuzzyReflection.getField(FuzzyReflection.java:352)
-      at ProtocolLib (5).jar//com.comphenix.protocol.injector.packet.PacketRegistry.createNewRegister(PacketRegistry.java:183)
-      at ProtocolLib (5).jar//com.comphenix.protocol.injector.packet.PacketRegistry.initialize(PacketRegistry.java:334)
-      at ProtocolLib (5).jar//com.comphenix.protocol.injector.packet.PacketRegistry.getClientPacketTypes(PacketRegistry.java:369)
-      at ProtocolLib (5).jar//com.comphenix.protocol.injector.PacketFilterManager.<init>(PacketFilterManager.java:120)
-      at ProtocolLib (5).jar//com.comphenix.protocol.injector.PacketFilterBuilder.build(PacketFilterBuilder.java:121)
-      at ProtocolLib (5).jar//com.comphenix.protocol.ProtocolLib.onLoad(ProtocolLib.java:183)
-      at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59)
-      at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18)
-      at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39)
-      at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40)
-      at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:535)
-      at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290)
-      at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219)
-      at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
-      at java.base/java.lang.Thread.run(Thread.java:1583)
-  Dump:
-  Parameters: 
-    [NULL]
-  Sender:
-    com.comphenix.protocol.ProtocolLib@3513440a[
-      statistics=<null>
-      packetTask=<null>
-      tickCounter=0
-      configExpectedMod=-1
-      updater=com.comphenix.protocol.updater.SpigotUpdater@60d45505
-      redirectHandler=<null>
-      scheduler=com.comphenix.protocol.scheduler.DefaultScheduler@4f486e01
-      commandProtocol=<null>
-      commandPacket=<null>
-      commandFilter=<null>
-      packetLogging=<null>
-      skipDisable=false
-      isEnabled=false
-      loader=io.papermc.paper.plugin.manager.DummyBukkitPluginLoader@43772f54
-      server=CraftServer{serverName=Paper,serverVersion=1.21-48-70b0e84,minecraftVersion=1.21}
-      file=plugins/.paper-remapped/ProtocolLib (5).jar
-      description=org.bukkit.plugin.PluginDescriptionFile@71e60ce9
-      pluginMeta=org.bukkit.plugin.PluginDescriptionFile@71e60ce9
-      dataFolder=plugins/ProtocolLib
-      classLoader=PluginClassLoader{plugin=ProtocolLib v5.2.0-SNAPSHOT-679, pluginEnabled=false, url=plugins/.paper-remapped/ProtocolLib (5).jar}
-      naggable=true
-      newConfig=YamlConfiguration[path='', root='YamlConfiguration']
-      configFile=plugins/ProtocolLib/config.yml
-      logger=com.destroystokyo.paper.utils.PaperPluginLogger@fcc3d1c
-      lifecycleEventManager=io.papermc.paper.plugin.lifecycle.event.PaperLifecycleEventManager@61be8396
-      allowsLifecycleRegistration=true
-    ]
-  Version:
-    ProtocolLib v5.2.0-SNAPSHOT-679
-  Java Version:
-    21.0.3
-  Server:
-    1.21-48-70b0e84 (MC: 1.21)
 
-[07:51:51] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.0
-[07:51:51] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.0.5
-[07:51:51] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.2
-[07:51:51] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b109-49bd564)
-[07:51:52] [Server thread/INFO]: [floodgate] Took 1,026ms to boot Floodgate
-[07:51:52] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.1
-[07:51:52] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.4
-[07:51:52] [Server thread/INFO]: [NametagEdit] Loading server plugin NametagEdit v4.5.23
-[07:51:52] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.4.5
-[07:51:52] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3475)
-[07:51:52] [Server thread/INFO]: [CoinsEngine] Loading server plugin CoinsEngine v2.3.3
-[07:51:52] [Server thread/INFO]: [zMenu] Loading server plugin zMenu v1.0.3.2
-[07:51:52] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.4.0-SNAPSHOT
-[07:51:53] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
-[07:51:53] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
-[07:51:53] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat vTeamCity
-[07:51:53] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.8.7
-[07:51:53] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.19
-[07:51:53] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.0.1
-[07:51:53] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.9
-[07:51:53] [Server thread/INFO]: [RevampedLinks] Loading server plugin RevampedLinks v1.0-SNAPSHOT
-[07:51:53] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.8.9
-[07:51:53] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.resources.ResourceLocation.<init>(java.lang.String)
-[07:51:53] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor0(Class.java:3761)
-[07:51:53] [Server thread/WARN]:     at java.base/java.lang.Class.getConstructor(Class.java:2442)
-[07:51:53] [Server thread/WARN]:     at Vulcan-2.8.9.jar//io.github.repooper.packetevents.utils.nms.NMSUtils.Vulcan_O(NMSUtils.java:365)
-[07:51:53] [Server thread/WARN]:     at Vulcan-2.8.9.jar//io.github.repooper.packetevents.PacketEvents.Vulcan_M(PacketEvents.java:120)
-[07:51:53] [Server thread/WARN]:     at Vulcan-2.8.9.jar//me.frep.vulcan.spigot.VulcanPlugin.onLoad(VulcanPlugin.java:15)
-[07:51:53] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:59)
-[07:51:53] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.ServerPluginProviderStorage.processProvided(ServerPluginProviderStorage.java:18)
-[07:51:53] [Server thread/WARN]:     at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39)
-[07:51:53] [Server thread/WARN]:     at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40)
-[07:51:53] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:535)
-[07:51:53] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:290)
-[07:51:53] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219)
-[07:51:53] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
-[07:51:53] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
-[07:51:53] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
-[07:51:53] [Server thread/INFO]: [SimplePortals] Loading server plugin SimplePortals v1.7.6
-[07:51:53] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.7.9.0
-[07:51:53] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.2.2.0
-[07:51:53] [Server thread/INFO]: [GiftBox] Loading server plugin GiftBox v1.1.2
-[07:51:53] [Server thread/INFO]: [RewardsLite] Loading server plugin RewardsLite v3.1.8
-[07:51:53] [Server thread/INFO]: [StaffManager] Loading server plugin StaffManager v1.0-SNAPSHOT
-[07:51:53] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.10
-[07:51:53] [Server thread/INFO]: [EssentialsProtect] Loading server plugin EssentialsProtect v2.21.0-dev+102-fcf6e64
-[07:51:53] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn vTeamCity
-[07:51:53] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.7.6
-[07:51:53] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
-[07:51:53] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.3
-[07:51:53] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.17
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
-[07:51:53] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
-[07:51:54] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
-[07:51:54] [Server thread/INFO]: [PixelPrinter] Loading server plugin PixelPrinter v1.0.45
-[07:51:54] [Server thread/INFO]: [EssentialsGeoIP] Loading server plugin EssentialsGeoIP vTeamCity
-[07:51:54] [Server thread/INFO]: [OpenAudioMc] Loading server plugin OpenAudioMc v6.10.1
-[07:51:54] [Server thread/INFO]: [TuSKe] Loading server plugin TuSKe v1.8.2
-[07:51:54] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
-[07:51:54] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.22.0
-[07:51:54] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (578 ms).
-[07:51:54] [Server thread/INFO]: [Shopkeepers] Loading config.
-[07:51:54] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
-[07:51:54] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
-[07:51:54] [Server thread/INFO]: [Shopkeepers] Registering defaults.
-[07:51:54] [Server thread/INFO]: [CSL] Loading server plugin ChunkSpawnerLimiter v4.3.5
-[07:51:54] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
-[07:51:54] [Server thread/INFO]: [CustomDrops] Loading server plugin CustomDrops v1.4.3-BETA
-[07:51:54] [Server thread/INFO]: [AntiSeedCracker] Loading server plugin AntiSeedCracker v1.2.1
-[07:51:54] [Server thread/INFO]: [ToastedAFK] Loading server plugin ToastedAFK v2.0.1.5
-[07:51:54] [Server thread/INFO]: [AngelChest] Loading server plugin AngelChest v12.2.0
-[07:51:54] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
-[07:51:54] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.27.0
-[07:51:54] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.71
-[07:51:54] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.6
-[07:51:54] [Server thread/INFO]: [CommandCooldown] Loading server plugin CommandCooldown v2.4.4 beta
-[07:51:54] [Server thread/INFO]: [Quests] Loading server plugin Quests v5.0.5-b480
-[07:51:54] [Server thread/INFO]: [PluginManager] Loading server plugin PluginManager v2.8.1
-[07:51:54] [Server thread/INFO]: [FunctionalClans] Loading server plugin FunctionalClans v2.1.8
-[07:51:54] [Server thread/INFO]: [Playtimes] Loading server plugin Playtimes v1.6.2b
-[07:51:54] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
-[07:51:54] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.4.2
-[07:51:54] [Server thread/INFO]: [DailyRewards] Loading server plugin DailyRewards v2.0.1
-[07:51:54] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.4.0
-[07:51:54] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
-[07:51:54] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
-[07:51:54] [Server thread/INFO]: [SimpleScore] Loading server plugin SimpleScore v3.12.5
-[07:51:54] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.5.0
-[07:51:54] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.2.3.1
-[07:51:54] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
-[07:51:54] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
-[07:51:54] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
-[07:51:55] [Server thread/INFO]:         __    
-[07:51:55] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
-[07:51:55] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
-[07:51:55] [Server thread/INFO]: 
-[07:51:55] [Server thread/INFO]: [LuckPerms] Loading configuration...
-[07:51:56] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
-[07:51:57] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
-[07:51:58] [Server thread/INFO]: [LuckPerms] Performing initial data load...
-[07:51:58] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 3844ms)
-[07:51:58] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
-[07:51:58] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
-[07:51:59] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
-[07:51:59] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
-[07:51:59] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
-[07:51:59] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.4-beta-01+0452ca2
-[07:51:59] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
-[07:51:59] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
-[07:51:59] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
-[07:52:00] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.2.0-SNAPSHOT-679
-[07:52:00] [Server thread/ERROR]: ******************************************************
-[07:52:00] [Server thread/ERROR]: *** ProtocolLib does not support plugin reloaders! ***
-[07:52:00] [Server thread/ERROR]: *** Please use the built-in reload command!        ***
-[07:52:00] [Server thread/ERROR]: ******************************************************
-[07:52:00] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.2.0-SNAPSHOT-679
-[07:52:00] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.2
-[07:52:00] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
-[07:52:00] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
-[07:52:00] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
-[07:52:00] [Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
-[07:52:00] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
-[07:52:00] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
-[07:52:00] [Server thread/INFO]: [nightcore] Plugin loaded in 153 ms!
-[07:52:00] [Server thread/INFO]: [CoinsEngine] Enabling CoinsEngine v2.3.3
-[07:52:00] [Server thread/INFO]: [CoinsEngine] Powered by nightcore
-[07:52:00] [Server thread/INFO]: [CoinsEngine] Read database configuration...
-[07:52:00] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
-[07:52:00] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@569bded8
-[07:52:00] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
-[07:52:00] [Server thread/INFO]: [CoinsEngine] Currency registered: 'money'!
-[07:52:00] [Server thread/INFO]: [CoinsEngine] Currency registered: 'coins'!
-[07:52:00] [Server thread/INFO]: [CoinsEngine] Currency registered: 'gems'!
-[07:52:00] [Server thread/INFO]: [CoinsEngine] Registered 'money' as Vault Economy!
-[07:52:00] [Server thread/INFO]: [CoinsEngine] Detected plugin available for data migration: Vault
-[07:52:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: coinsengine [2.3.3]
-[07:52:00] [Server thread/INFO]: [CoinsEngine] Plugin loaded in 298 ms!
-[07:52:00] [Server thread/INFO]: Preparing level "spawn"
-[07:52:01] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
-[07:52:01] [Server thread/INFO]: Time elapsed: 1 ms
-[07:52:01] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
-[07:52:01] [Server thread/INFO]: Time elapsed: 438 ms
-[07:52:01] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.0.1
-[07:52:01] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21 (767)
-[07:52:01] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
-[07:52:02] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
-[07:52:02] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.15.1
-[07:52:02] [Server thread/INFO]: [LiteBans] Using system locale (en)
-[07:52:02] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
-[07:52:02] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
-[07:52:02] [Server thread/INFO]: [LiteBans] Connecting to database...
-[07:52:02] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
-[07:52:02] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
-[07:52:02] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (101.7 ms).
-[07:52:02] [Server thread/INFO]: [LiteBans] Database connection fully initialized (107.4 ms).
-[07:52:02] [Server thread/INFO]: [LiteBans] v2.15.1 enabled. Startup took 318 ms.
-[07:52:02] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
-[07:52:02] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
-[07:52:02] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
-[07:52:02] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
-[07:52:02] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
-[07:52:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
-[07:52:02] [Server thread/INFO]: [WorldGuard] (spawn_nether) TNT ignition is PERMITTED.
-[07:52:02] [Server thread/INFO]: [WorldGuard] (spawn_nether) Lighters are PERMITTED.
-[07:52:02] [Server thread/INFO]: [WorldGuard] (spawn_nether) Lava fire is PERMITTED.
-[07:52:02] [Server thread/INFO]: [WorldGuard] (spawn_nether) Fire spread is UNRESTRICTED.
-[07:52:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn_nether'
-[07:52:02] [Server thread/INFO]: [WorldGuard] Loading region data...
-[07:52:02] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
-[07:52:02] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" 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--].
-[07:52:02] [Server thread/INFO]: [Multiverse-Core] §aWe 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.
-[07:52:02] [Server thread/INFO]: Preparing start region for dimension minecraft:world
-[07:52:03] [Server thread/INFO]: Time elapsed: 294 ms
-[07:52:03] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
-[07:52:03] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
-[07:52:03] [Server thread/INFO]: Time elapsed: 115 ms
-[07:52:03] [Server thread/INFO]: [WorldGuard] (spawn_the_end) TNT ignition is PERMITTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] (spawn_the_end) Lighters are PERMITTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] (spawn_the_end) Lava fire is PERMITTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] (spawn_the_end) Fire spread is UNRESTRICTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn_the_end'
-[07:52:03] [Server thread/INFO]: Preparing start region for dimension minecraft:world_nether
-[07:52:03] [Server thread/INFO]: Time elapsed: 78 ms
-[07:52:03] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
-[07:52:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
-[07:52:03] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Spawn_the_end
-[07:52:03] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
-[07:52:03] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Spawn_nether
-[07:52:03] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
-[07:52:03] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Spawn
-[07:52:03] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
-[07:52:03] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
-[07:52:03] [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.
-[07:52:03] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
-[07:52:03] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.0
-[07:52:03] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.0.5
-[07:52:04] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.0 - paper  1.21-48-70b0e84 (MC: 1.21)
-[07:52:04] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
-[07:52:04] [Server thread/INFO]: CMI hooked.
-[07:52:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.0.5]
-[07:52:04] [Server thread/INFO]: PlaceholderAPI hooked.
-[07:52:04] [Server thread/INFO]: Updated (EN) language file. Took 53ms
-[07:52:04] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b109-49bd564)
-[07:52:05] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.1
-[07:52:05] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
-[07:52:05] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsChat to the same version.
-[07:52:05] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsProtect to the same version.
-[07:52:05] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsSpawn to the same version.
-[07:52:05] [Server thread/WARN]: [Essentials] Version mismatch! Please update EssentialsGeoIP to the same version.
-[07:52:05] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
-[07:52:05] [Server thread/INFO]: [Essentials] No kits found to migrate.
-[07:52:06] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
-[07:52:06] [Server thread/INFO]: [Essentials] Using locale en_US
-[07:52:06] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
-[07:52:06] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
-[07:52:06] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
-[07:52:06] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
-[07:52:06] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
-[07:52:06] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
-[07:52:06] [Server thread/INFO]: [GriefPrevention] 253 total claims loaded.
-[07:52:06] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
-[07:52:06] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
-[07:52:06] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
-[07:52:06] [Server thread/INFO]: [GriefPrevention] Boot finished.
-[07:52:06] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.23
-[07:52:06] [Server thread/ERROR]: Error occurred while enabling NametagEdit v4.5.23 (Is it up to date?)
-java.lang.ExceptionInInitializerError: null
-    at NametagEdit.jar/com.nametagedit.plugin.packets.PacketWrapper.<clinit>(PacketWrapper.java:28) ~[NametagEdit.jar:?]
-    at NametagEdit.jar/com.nametagedit.plugin.NametagEdit.testCompat(NametagEdit.java:103) ~[NametagEdit.jar:?]
-    at NametagEdit.jar/com.nametagedit.plugin.NametagEdit.onEnable(NametagEdit.java:39) ~[NametagEdit.jar:?]
-    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
-Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
-    at NametagEdit.jar/com.nametagedit.plugin.packets.PacketAccessor.<clinit>(PacketAccessor.java:15) ~[NametagEdit.jar:?]
-    ... 15 more
-[07:52:06] [Server thread/INFO]: [NametagEdit] Disabling NametagEdit v4.5.23
-[07:52:06] [Server thread/ERROR]: Error occurred while disabling NametagEdit v4.5.23
-java.lang.NullPointerException: Cannot invoke "com.nametagedit.plugin.NametagManager.reset()" because "this.manager" is null
-    at NametagEdit.jar/com.nametagedit.plugin.NametagEdit.onDisable(NametagEdit.java:86) ~[NametagEdit.jar:?]
-    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
-[07:52:06] [Server thread/INFO]: [CMI] Enabling CMI v9.7.4.5
-[07:52:06] [Server thread/INFO]: _______________________________________________________
-[07:52:06] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
-[07:52:06] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
-[07:52:06] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
-[07:52:06] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
-[07:52:06] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
-[07:52:06] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
-[07:52:06] [Server thread/INFO]: _______________________________________________________
-[07:52:06] [Server thread/INFO]: Integrating PaperSpigot async methods
-[07:52:06] [Server thread/INFO]: Vault found. (Loaded: true)
-[07:52:06] [Server thread/INFO]: Citizens found. (Loaded: false)
-[07:52:06] [Server thread/INFO]: 66 Enabled and 0 Disabled modules
-[07:52:06] [Server thread/INFO]: ProtocolLib was found but some issues accured while enabling it, check if you have correct ProtocolLib version for your server. Compatability will not be enabled.
-[07:52:06] [Server thread/INFO]: Permission plugin: LuckPerms5.4.131
-[07:52:07] [Server thread/INFO]: Initialized Cipher256 AES
-[07:52:07] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 52ms
-[07:52:07] [Server thread/INFO]: Loaded (1) custom text's into memory. Took 6ms
-[07:52:08] [Server thread/INFO]: 3.46.0 data base type detected
-[07:52:08] [Server thread/INFO]: Started SqLite data base. Took 73ms
-[07:52:08] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: CoinsEngine
-[07:52:08] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 1ms
-[07:52:08] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
-[07:52:08] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 0ms
-[07:52:08] [Server thread/INFO]: Loaded (147) custom mob heads into memory. Took 9ms
-[07:52:08] [Server thread/INFO]: Loaded (1) kits into memory. Took 0ms
-[07:52:08] [Server thread/INFO]: Loaded (7) ranks into memory. Took 18ms
-[07:52:08] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 1ms
-[07:52:08] [Server thread/INFO]: Loaded (313) player data into memory. Took 48ms
-[07:52:08] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 0ms
-[07:52:08] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
-[07:52:08] [Server thread/INFO]: Loaded (0) custom alias into memory. Took 1ms
-[07:52:09] [Server thread/INFO]: Registered events. Took 134ms
-[07:52:09] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 2ms
-[07:52:09] [Server thread/INFO]: Loaded (EN) language file into memory. Took 59ms
-[07:52:09] [Server thread/INFO]: Loaded (245) worth values into memory. Took 51ms
-[07:52:09] [Server thread/INFO]: Loaded (10) warps into memory. Took 3ms
-[07:52:09] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
-[07:52:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.7.4.5]
-[07:52:09] [Server thread/INFO]: PlaceholderAPI hooked.
-[07:52:09] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
-[07:52:09] [Server thread/INFO]: Starting world timer.
-[07:52:09] [Server thread/INFO]: Initializing world manager.
-[07:52:09] [Server thread/INFO]: Loaded (4) schedules into memory. Took 6ms
-[07:52:09] [Server thread/INFO]: Loaded GeoIP
-[07:52:09] [Server thread/INFO]: Loaded (3) holograms into memory. Took 29ms
-[07:52:09] [Server thread/INFO]: Loaded (0) skin cache entries into memory. Took 0ms
-[07:52:09] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 0ms
-[07:52:09] [Server thread/INFO]: Version 9.7.4.5 has been enabled
-[07:52:09] [Server thread/INFO]: _______________________________________________________
-[07:52:09] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3475)
-[07:52:09] [Server thread/INFO]: [Citizens] Loading external libraries
-[07:52:09] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
-[07:52:09] [Server thread/WARN]: org.bukkit.configuration.InvalidConfigurationException: while parsing a block mapping
-[07:52:09] [Server thread/WARN]:  in 'reader', line 738, column 7:
-[07:52:09] [Server thread/WARN]:           spawned: false
-[07:52:09] [Server thread/WARN]:           ^
-[07:52:09] [Server thread/WARN]: expected <block end>, but found '<block mapping start>'
-[07:52:09] [Server thread/WARN]:  in 'reader', line 745, column 9:
-[07:52:09] [Server thread/WARN]:             location:
-[07:52:09] [Server thread/WARN]:             ^
-[07:52:09] [Server thread/WARN]: 
-[07:52:09] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:111)
-[07:52:09] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160)
-[07:52:09] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128)
-[07:52:09] [Server thread/WARN]:     at Citizens-2.0.35-b3475 (1).jar//net.citizensnpcs.api.util.YamlStorage.load(YamlStorage.java:73)
-[07:52:09] [Server thread/WARN]:     at Citizens-2.0.35-b3475 (1).jar//net.citizensnpcs.Citizens.createStorage(Citizens.java:170)
-[07:52:09] [Server thread/WARN]:     at Citizens-2.0.35-b3475 (1).jar//net.citizensnpcs.Citizens.onEnable(Citizens.java:386)
-[07:52:09] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
-[07:52:09] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
-[07:52:09] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
-[07:52:09] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
-[07:52:09] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629)
-[07:52:09] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578)
-[07:52:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752)
-[07:52:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514)
-[07:52:09] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327)
-[07:52:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219)
-[07:52:09] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329)
-[07:52:09] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
-[07:52:09] [Server thread/WARN]: Caused by: while parsing a block mapping
-[07:52:09] [Server thread/WARN]:  in 'reader', line 738, column 7:
-[07:52:09] [Server thread/WARN]:           spawned: false
-[07:52:09] [Server thread/WARN]:           ^
-[07:52:09] [Server thread/WARN]: expected <block end>, but found '<block mapping start>'
-[07:52:09] [Server thread/WARN]:  in 'reader', line 745, column 9:
-[07:52:09] [Server thread/WARN]:             location:
-[07:52:09] [Server thread/WARN]:             ^
-[07:52:09] [Server thread/WARN]: 
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:654)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:241)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:205)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157)
-[07:52:09] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575)
-[07:52:09] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:104)
-[07:52:09] [Server thread/WARN]:     ... 17 more
-[07:52:09] [Server thread/ERROR]: [Citizens] Unable to load saves, disabling...
-[07:52:09] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.35-SNAPSHOT (build 3475)
-[07:52:09] [Server thread/INFO]: [zMenu] Enabling zMenu v1.0.3.2
-[07:52:09] [Server thread/INFO]: [zMenu v1.0.3.2] === ENABLE START ===
-[07:52:09] [Server thread/INFO]: [zMenu v1.0.3.2] Plugin Version V1.0.3.2
-[07:52:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zmenu [1.0.3.2]
-[07:52:09] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zMenu/patterns/pattern_example.yml loaded successfully !
-[07:52:09] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zMenu/inventories/beloningen.yml loaded successfully !
-[07:52:09] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zMenu/inventories/basic_inventory.yml loaded successfully !
-[07:52:09] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zMenu/inventories/example_punish.yml loaded successfully !
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zMenu/inventories/test.yml loaded successfully !
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zMenu/inventories/pro_inventory.yml loaded successfully !
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zMenu/inventories/advanced_inventory.yml loaded successfully !
-[07:52:10] [Server thread/WARN]: [zMenu] Could not save inventories.yml to plugins/zMenu/website/inventories.yml because inventories.yml already exists.
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zMenu/website/inventories.yml loaded successfully !
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] Command /basic_command successfully register.
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] Command /advanced_command successfully register.
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] Command /pro_command successfully register.
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] Unable to add the command /openbook
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] Command /openbook successfully register.
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] Command /punish successfully register.
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] Scheduler: fr.maxlego08.menu.scheduler.FoliaScheduler@42233513
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] DupeManager: fr.maxlego08.menu.dupe.PDCDupeManager@1fa1f8b8
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] 
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] You can support zMenu by upgrading your account here: https://minecraft-inventory-builder.com/account-upgrade
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] zMenu’s site includes an inventory editor (under development), a marketplace (already available) is a forum (under development)
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] 
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] Use ComponentMeta
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] Loading 6 commands
-[07:52:10] [Server thread/INFO]: [zMenu v1.0.3.2] === ENABLE DONE (289ms) ===
-[07:52:10] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.4.0-SNAPSHOT
-[07:52:10] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat vTeamCity*
-[07:52:10] [Server thread/WARN]: §4Version mismatch! Please update all Essentials jars to the same version.
-[07:52:10] [Server thread/INFO]: [Skript] Enabling Skript v2.8.7
-[07:52:10] [Server thread/ERROR]: Error occurred while enabling Skript v2.8.7 (Is it up to date?)
-java.lang.IllegalArgumentException: LAVA_CAULDRON isn't an item
-    at com.google.common.base.Preconditions.checkArgument(Preconditions.java:143) ~[guava-32.1.2-jre.jar:?]
-    at org.bukkit.inventory.ItemStack.of(ItemStack.java:58) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:138) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:117) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:104) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.inventory.ItemStack.<init>(ItemStack.java:87) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.AliasesProvider.addAlias(AliasesProvider.java:307) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.AliasesParser.loadSingleAlias(AliasesParser.java:705) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.AliasesParser.loadAlias(AliasesParser.java:614) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.AliasesParser.load(AliasesParser.java:121) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.load(Aliases.java:506) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.load(Aliases.java:492) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.lambda$loadDirectory$1(Aliases.java:475) ~[Skript-2.8.7.jar:?]
-    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184) ~[?:?]
-    at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) ~[?:?]
-    at java.base/java.util.stream.SortedOps$RefSortingSink.end(SortedOps.java:395) ~[?:?]
-    at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:510) ~[?:?]
-    at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]
-    at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151) ~[?:?]
-    at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174) ~[?:?]
-    at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]
-    at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.loadDirectory(Aliases.java:468) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.loadInternal(Aliases.java:433) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.aliases.Aliases.load(Aliases.java:389) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.Skript.onEnable(Skript.java:508) ~[Skript-2.8.7.jar:?]
-    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
-[07:52:10] [Server thread/INFO]: [Skript] Disabling Skript v2.8.7
-[07:52:10] [Server thread/ERROR]: Error occurred while disabling Skript v2.8.7
-java.lang.ExceptionInInitializerError: null
-    at Skript-2.8.7.jar/ch.njol.skript.Skript.beforeDisable(Skript.java:1192) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.Skript.onDisable(Skript.java:1204) ~[Skript-2.8.7.jar:?]
-    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:206) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
-Caused by: ch.njol.skript.SkriptAPIException: Registration can only be done during plugin initialization
-    at Skript-2.8.7.jar/ch.njol.skript.Skript.checkAcceptRegistrations(Skript.java:1299) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.Skript.registerEvent(Skript.java:1501) ~[Skript-2.8.7.jar:?]
-    at Skript-2.8.7.jar/ch.njol.skript.events.EvtSkript.<clinit>(EvtSkript.java:39) ~[Skript-2.8.7.jar:?]
-    ... 17 more
-[07:52:10] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.19
-[07:52:10] [Server thread/INFO]: [SuperVanish] Please install ProtocolLib to be able to use all SuperVanish features: https://www.spigotmc.org/resources/protocollib.1997/
-[07:52:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.19]
-[07:52:10] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
-[07:52:10] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
-[07:52:10] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.0.1
-[07:52:10] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.9
-[07:52:11] [Server thread/INFO]: [RevampedLinks] Enabling RevampedLinks v1.0-SNAPSHOT
-[07:52:11] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.8.9
-[07:52:11] [Server thread/INFO]: [Vulcan] Server Version: 1.21 detected!
-[07:52:11] [Server thread/INFO]: [Vulcan] Floodgate 2.0 found. Enabling hook!
-[07:52:11] [Server thread/INFO]: [Vulcan] BStats enabled!
-[07:52:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.8.9]
-[07:52:11] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
-[07:52:11] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
-[07:52:11] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
-[07:52:11] [Server thread/INFO]: [DeluxeTags] 1 tag loaded
-[07:52:11] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
-[07:52:11] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
-[07:52:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxetags [1.8.2-Release]
-[07:52:11] [Server thread/INFO]: [DeluxeTags] ----------------------------
-[07:52:11] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
-[07:52:11] [Server thread/INFO]: [DeluxeTags]  
-[07:52:11] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
-[07:52:11] [Server thread/INFO]: [DeluxeTags] The latest version
-[07:52:11] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
-[07:52:11] [Server thread/INFO]: [DeluxeTags]  
-[07:52:11] [Server thread/INFO]: [DeluxeTags] ----------------------------
-[07:52:11] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.6
-[07:52:11] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 1ms)
-[07:52:11] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_21R1!
-[07:52:11] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.7.9.0
-[07:52:12] [Server thread/INFO]: [ImageFrame] ImageFrame has hooked into ViaVersion!
-[07:52:12] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.2.2.0
-[07:52:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [3.2.2.0]
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] === ENABLE START ===
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Plugin Version V3.2.2.0
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading of 4 price items
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] /home/container/plugins/zAuctionHouseV3/blacklistplayers.json loaded successfully !
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loaded config.yml
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading of 3 tax items
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loaded 4 blacklist items
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loaded 0 whitelist items
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Examples category with 4 materials
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Blocks category with 1060 materials
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Potions category with 17 materials
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Tools category with 20 materials
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading the Weapons category with 13 materials
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading 3 inventories
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Loading 0 commands
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] Start backup task, next backup at 00:00
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] /home/container/plugins/zAuctionHouseV3/items.json loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/patterns/decoration.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/patterns/pagination.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/patterns/back.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/patterns/auction.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/categories.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/buying.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/buyconfirminventory.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/sell.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/sellshow.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/items.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/category.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/economy.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/buyconfirm.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/removeconfirm.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/search.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/adminremove.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/show.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/auction.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zMenu v1.0.3.2] plugins/zAuctionHouseV3/inventories/expire.yml loaded successfully !
-[07:52:12] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.0] === ENABLE DONE (360ms) ===
-[07:52:12] [Server thread/INFO]: [GiftBox] Enabling GiftBox v1.1.2
-[07:52:12] [Server thread/INFO]: [GiftBox] 1 GiftBoxes loaded
-[07:52:12] [Server thread/INFO]: [RewardsLite] Enabling RewardsLite v3.1.8
-[07:52:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rewardslite [1.0.0]
-[07:52:12] [Server thread/ERROR]: Cannot load plugins/RewardsLite/rewards/default-reward.yml
-org.bukkit.configuration.InvalidConfigurationException: while parsing a block mapping
- in 'reader', line 4, column 1:
-    requiredTime: 60
-    ^
-expected <block end>, but found '<block mapping start>'
- in 'reader', line 125, column 3:
-      actionbar:
-      ^
-
-    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:111) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.configuration.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:309) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at Rewardslite-3.1.8.jar/com.backtobedrock.rewardslite.mappers.reward.YAMLRewardMapper.getPlaytimeRewardFromFile(YAMLRewardMapper.java:72) ~[Rewardslite-3.1.8.jar:?]
-    at Rewardslite-3.1.8.jar/com.backtobedrock.rewardslite.mappers.reward.YAMLRewardMapper.getAll(YAMLRewardMapper.java:40) ~[Rewardslite-3.1.8.jar:?]
-    at Rewardslite-3.1.8.jar/com.backtobedrock.rewardslite.repositories.RewardRepository.getAll(RewardRepository.java:31) ~[Rewardslite-3.1.8.jar:?]
-    at Rewardslite-3.1.8.jar/com.backtobedrock.rewardslite.repositories.RewardRepository.logEnabledRewards(RewardRepository.java:63) ~[Rewardslite-3.1.8.jar:?]
-    at Rewardslite-3.1.8.jar/com.backtobedrock.rewardslite.repositories.RewardRepository.<init>(RewardRepository.java:22) ~[Rewardslite-3.1.8.jar:?]
-    at Rewardslite-3.1.8.jar/com.backtobedrock.rewardslite.Rewardslite.initializeRepositories(Rewardslite.java:166) ~[Rewardslite-3.1.8.jar:?]
-    at Rewardslite-3.1.8.jar/com.backtobedrock.rewardslite.Rewardslite.initialize(Rewardslite.java:78) ~[Rewardslite-3.1.8.jar:?]
-    at Rewardslite-3.1.8.jar/com.backtobedrock.rewardslite.Rewardslite.onEnable(Rewardslite.java:57) ~[Rewardslite-3.1.8.jar:?]
-    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
-Caused by: org.yaml.snakeyaml.parser.ParserException: while parsing a block mapping
- in 'reader', line 4, column 1:
-    requiredTime: 60
-    ^
-expected <block end>, but found '<block mapping start>'
- in 'reader', line 125, column 3:
-      actionbar:
-      ^
-
-    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:654) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:330) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157) ~[snakeyaml-2.2.jar:?]
-    at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575) ~[snakeyaml-2.2.jar:?]
-    at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:104) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    ... 23 more
-[07:52:12] [Server thread/ERROR]: [RewardsLite] default-reward.requiredTime: value cannot be lower than 1 and higher than 2147483647, your value is: 0
-[07:52:12] [Server thread/INFO]: [RewardsLite] Loaded 0 rewards.
-[07:52:12] [Server thread/INFO]: [StaffManager] Enabling StaffManager v1.0-SNAPSHOT
-[07:52:12] [Server thread/INFO]: [StaffManager]   
-[07:52:12] [Server thread/INFO]: [StaffManager]       -----------------  [Staff Manager]  -----------------
-[07:52:12] [Server thread/INFO]: [StaffManager]      |        Status: Successfully activated.
-[07:52:12] [Server thread/INFO]: [StaffManager]      |        Server Information: 1.21-48-70b0e84 (MC: 1.21)
-[07:52:12] [Server thread/INFO]: [StaffManager]      |   
-[07:52:12] [Server thread/INFO]: [StaffManager]      |        Developed by HyperBurger
-[07:52:12] [Server thread/INFO]: [StaffManager]      |        Thanks for using my plugin ❤! 
-[07:52:12] [Server thread/INFO]: [StaffManager]       -----------------  ----------------  -----------------
-[07:52:12] [Server thread/INFO]: [StaffManager]   
-[07:52:12] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.10
-[07:52:12] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.21.0-dev+102-fcf6e64
-[07:52:12] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
-[07:52:12] [Server thread/ERROR]: Error occurred while enabling EssentialsProtect v2.21.0-dev+102-fcf6e64 (Is it up to date?)
-java.lang.NoSuchMethodError: 'java.lang.String com.earth2me.essentials.I18n.tlLiteral(java.lang.String, java.lang.Object[])'
-    at EssentialsXProtect-2.21.0-dev+102-fcf6e64.jar/com.earth2me.essentials.protect.EssentialsConnect.<init>(EssentialsConnect.java:18) ~[EssentialsXProtect-2.21.0-dev+102-fcf6e64.jar:?]
-    at EssentialsXProtect-2.21.0-dev+102-fcf6e64.jar/com.earth2me.essentials.protect.EssentialsProtect.initialize(EssentialsProtect.java:45) ~[EssentialsXProtect-2.21.0-dev+102-fcf6e64.jar:?]
-    at EssentialsXProtect-2.21.0-dev+102-fcf6e64.jar/com.earth2me.essentials.protect.EssentialsProtect.onEnable(EssentialsProtect.java:36) ~[EssentialsXProtect-2.21.0-dev+102-fcf6e64.jar:?]
-    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
-[07:52:12] [Server thread/INFO]: [EssentialsProtect] Disabling EssentialsProtect v2.21.0-dev+102-fcf6e64
-[07:52:12] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn vTeamCity*
-[07:52:12] [Server thread/WARN]: §4Version mismatch! Please update all Essentials jars to the same version.
-[07:52:12] [Server thread/ERROR]: Error occurred while enabling EssentialsSpawn vTeamCity (Is it up to date?)
-java.lang.NoClassDefFoundError: com/earth2me/essentials/storage/AsyncStorageObjectHolder
-    at java.base/java.lang.ClassLoader.defineClass1(Native Method) ~[?:?]
-    at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1027) ~[?:?]
-    at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150) ~[?:?]
-    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:243) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
-    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
-    at EssentialsSpawn-2.x-SNAPSHOT.jar/com.earth2me.essentials.spawn.EssentialsSpawn.onEnable(EssentialsSpawn.java:42) ~[EssentialsSpawn-2.x-SNAPSHOT.jar:?]
-    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
-Caused by: java.lang.ClassNotFoundException: com.earth2me.essentials.storage.AsyncStorageObjectHolder
-    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
-    ... 21 more
-[07:52:12] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn vTeamCity
-[07:52:12] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.7.6
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: lang-nl.yml gebruiken als taalbestand...
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 8 section configs from /sections/
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 8 shop configs from /shops/
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Shop instellingen aan het bijwerken...
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 6 shop sections.
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Minecraft versie 1.21 aan het gebruiken...
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Compatibiliteit van AUTO is ingeschakeld in de configuratie
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: De debug modus is ingeschakeld.
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Alle items aan het laden...
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [DEBUG]: Found incompatible component tag for current minecraft version: Did you mean 'repair_cost' instead of 'RepairCost'?
-Please change the value manually to get rid of this message
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [WARN]: Item locatie in config.yml: sold-items-ignored-NBTtags
-[07:52:13] [Server thread/INFO]: [DiscordSRV] API listener me.gypopo.economyshopgui.providers.DiscordSRVProvider subscribed (1 methods)
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Waiting for DiscordSRV to initialize...
-[07:52:13] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Geïnitialiseerd - Duurde 134ms om te voltooien.
-[07:52:13] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
-[07:52:13] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
-[07:52:13] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
-[07:52:13] [Server thread/INFO]: | Command file(s) found : 1
-[07:52:13] [Server thread/INFO]: | Config : Ready.
-[07:52:13] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
-[07:52:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
-[07:52:13] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
-[07:52:13] [Server thread/INFO]: | Custom commands loaded : 45
-[07:52:13] [Server thread/INFO]: | You're running the latest version of MyCommand.
-[07:52:13] [Server thread/ERROR]: Error occurred while enabling MyCommand v5.7.4 (Is it up to date?)
-java.lang.NoClassDefFoundError: com/comphenix/protocol/events/PacketListener
-    at MyCommand.jar/it.emmerrei.mycommand.Main.PostEnable(Main.java:567) ~[MyCommand.jar:?]
-    at MyCommand.jar/it.emmerrei.mycommand.Main.onEnable(Main.java:511) ~[MyCommand.jar:?]
-    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:629) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:578) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:752) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:514) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:327) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1219) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.jar:1.21-48-70b0e84]
-    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
-Caused by: java.lang.ClassNotFoundException: com.comphenix.protocol.events.PacketListener
-    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
-    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
-    ... 14 more
-[07:52:13] [Server thread/INFO]: [MyCommand] Disabling MyCommand v5.7.4
-[07:52:13] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
-[07:52:13] [Server thread/INFO]: | Tasks : Stopped all tasks.
-[07:52:13] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*    Bye!   *-=-=-=-=-=-=-=-=-=-=-*
-[07:52:13] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.3
-[07:52:13] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.3]  Enabled - By Rigby and fernferret
-[07:52:13] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.17
-[07:52:13] [Server thread/INFO]: [InventoryRollbackPlus] Attempting Paper support for version: 1.21-R0.1-SNAPSHOT
-[07:52:13] [Server thread/INFO]: [InventoryRollbackPlus] Found CraftBukkit Package Version: v1_21_R1
-[07:52:13] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
-[07:52:13] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
-[07:52:13] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
+last-created-npc-id: 29
+npc:
+  '8':
+    metadata:
+      cached-skin-uuid: 4a355aae-a5da-49f6-a1bc-75ad9c608bb2
+      cached-skin-uuid-name: ttv_axersior
+      nameplate-visible: 'false'
+    name: shop
+    uuid: 3cd81b72-0928-47ab-8852-5b3877bcdfd5
+    traits:
+      location:
+        bodyYaw: 2.0419922
+        world: spawn
+        x: '-8.5442'
+        y: '-65.0608'
+        z: '-112.453'
+        yaw: '2.042'
+        pitch: '-5.2394'
+      spawned: true
+      commandtrait:
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+        commands:
+          '0':
+            command: shop
+            hand: RIGHT
+            player: false
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+          '1':
+            command: shop <p>
+            hand: RIGHT
+            player: false
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+      skintrait:
+        fetchDefaultSkin: true
+        signature: Gk08+XsGmG1PbWgkQcatFQK5+1HQApm7QRbQaMEyfE/6iVN/Nm3b+x5gmyZDRWUhwF4OWT6c33PDtNCWzph5OeGW+wE1kwPOITVUG4B14Pta+DzqFR5+jUVKJ/qOwSPTvaLA6DMOd4Ju4tWWns5A5PLAlMJHmbYXau/D4LV9I+IRF9hW+UePk4aQ02dkUMqiwHhO35QZ8SBYorpZObVUz6ytIbzQVqt7b/ude3KvHuLnV10+yhZiD+achKZIdnmt2SdbfLtp5yXN5uFddh5lq1tyxQNYU6awLVGWxRA7oSTy0xUiLCHt3xdfK/Nsyn6oZaAIWdD5ocfeqkhZzQAZaaNv2Y4+NMKGRxUfa8AHBvgovMGBwsKXCGQyc+rid1ZdKg7j+Sbmr2B5bNC7avmnDy9IOxh8s0UEEc8tM0/8163jb+pURuSpMcetkanrb/uQtnxYM5bjjH/azMM4zw8bXDWn/7BliAC9yA/EmVM8yIl6HfeP0j3Z28toNSvwsU+gXQv9xTR3Gdhk6ARTLBnQMc7GkhaPuvoT55LH1g09nIcxQTIx+h1V0Zo1j1qFdbzFjL0BQrTDdXnh81dtb54Jsu7e4hbpKFc8uZnHm+nmAGlIYFOBcd35oQLksiDUUCqJnFU3rpATjdsYwicxkHujHNkNrfcYWvU16WzVI5P80F0=
+        skinName: TTV_axersior
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDc4ODgyMzU5NCwKICAicHJvZmlsZUlkIiA6ICI0YTM1NWFhZWE1ZGE0OWY2YTFiYzc1YWQ5YzYwOGJiMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUVFZfQXhlcnNpb3IiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTQ0YmRjMjU5NTc0NjNiY2Y0MzE3ZTE3M2ZjNWJjYWU1YmYyYTc5MjhiOWQzYmQxNjkyYTdkMDk5NDQ4MjM0OCIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9
+        updateSkins: true
+      type: PLAYER
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+    traitnames: commandtrait,inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '5':
+    metadata:
+      nameplate-visible: 'false'
+    name: pig
+    uuid: 5444ce18-52e8-436a-aa44-e80792ee9fba
+    traits:
+      location:
+        bodyYaw: 1.4567871
+        world: spawn
+        x: '-13.5254'
+        y: '-6.11371752693E7'
+        z: '-110.5247'
+        yaw: '1.4568'
+        pitch: '4.4894'
+      spawned: true
+      type: PIG
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+    traitnames: spawned,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '2':
+    metadata:
+      cached-skin-uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      cached-skin-uuid-name: izyrac
+      nameplate-visible: 'false'
+    name: ah
+    uuid: fe8fce5c-e67b-4e04-a23d-980a50e1d7fe
+    traits:
+      location:
+        bodyYaw: 2.1836548
+        world: spawn
+        x: '-13.5051'
+        y: '-64.6343'
+        z: '-110.5622'
+        yaw: '2.1837'
+        pitch: '-1.5656'
+      spawned: true
+      skintrait:
+        fetchDefaultSkin: true
+        signature: j4n1X1EIpt+kT9XQhIbJlXVKllcc39CtZOCj7CE8hUnB4Am+6hS5u/8//dmgd5L7EMrlbYNf6PP+llJU/9SMJczHFhQgeAel4S2yT4kQU/E5lxrp7/DYKUbUcI2GpjbzVFaHhGqsq+fxpcH5H2KBXc4Bvlf+B7fRSAylgYAjppZLMSlGU6wOE42ioPBufFKVjAo0X4Q7saDTi6UGOilLVT7MLjBMLO3PCd8xmCm7WLC5TXTh1dowNEQFNdQssIafZlhtOM8wMwwoGaR4HYrSPOBd+d+DrdNNFY0vp6Ekyl3IQPUNKtb2VsgPUVu6DPTbvWvXSTptIHnvQmEVPRV9T292OUcq5cJ4ckmLKHQSlj6HG3OtMoSbtlkGHH37oaRl1dpbXNIcl+FKCaZoONncD1Y9qV79oZE/6b83bELM7BoXZE0ws9s+muWAcVY45yECmg4EL7QkgSSSLZ30u7fyJeYTYD5NPO8Ey5Jrfd24RUSL0kG4orWqXB9BxuuSNBuiM32SKKPMedVGN5bo22PcfjKW6k5M+mFg9XtkMj/e7xHGcuKZL1hlf4oKyacZf88H49q5DwkDMc7j3gdua+zZAuTxKgMqcR0U//JAxgzIXvfeCBwUVpQxuUdsmB0UYicIN08ODaonwU0IwCfh+m39e/rI66Gr78bJPIMzEF8ZlF0=
+        skinName: iZyrac
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDc4ODgyMzQ1MiwKICAicHJvZmlsZUlkIiA6ICJiMjVhMmY0YTBiMTM0ZTA5YmZkYzAxYzYzMjg5MzJhNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJpWnlyYWMiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDc1NTNiZjMxYTg4NDQ4YjRlODBjNjdiNTk5ZDUxMTczZTIxNzRmMjZmNTEwZjg5ODZhYWY0NGI5MjUyNDU2YSIKICAgIH0sCiAgICAiQ0FQRSIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Q5ZDgyYWIxN2ZkOTIwMjJkYmQ0YTg2Y2RlNGMzODJhNzU0MGUxMTdmYWU3YjlhMjg1MzY1ODUwNWE4MDYyNSIKICAgIH0KICB9Cn0=
+        updateSkins: true
+      type: PLAYER
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      commandtrait:
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+        commands:
+          '0':
+            command: ah
+            hand: RIGHT
+            player: true
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+    traitnames: commandtrait,inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '1':
+    metadata:
+      cached-skin-uuid: 4a355aae-a5da-49f6-a1bc-75ad9c608bb2
+      cached-skin-uuid-name: ttv_axersior
+    name: ttv_axersior
+    uuid: a1fbd81e-a20a-42f8-b9c9-9250dbe045e4
+    traits:
+      location:
+        bodyYaw: 2.422347
+        world: spawn
+        x: '-8.4583'
+        y: '113.5'
+        z: '-112.4821'
+        yaw: '2.4223'
+        pitch: '3.1499'
+      spawned: false
+      skintrait:
+        fetchDefaultSkin: true
+        signature: VYLeIT+HXaSZGc3NsUAkoqQYqEFLCiSD0vVJ5UvxpN8B4xj/qgRgbhw8HAjQlZyjjR72jJRAvfpRYgzo9jl7Bj5p5llWy0EEi0rxj7IY5zhyRVLTSOMEl2mDr5DuN1vVXat4+AGz77g8T7KOXN8V/ChB2LWFg2xyQNBHvHWg4B2Ri8f6EiksAVAO65/71OL4JKCYTPURtUXD6dOtouwsfNiu1NbwXJUX0rgWAr4FQrAlMEf0ou5FpEFcoFO7cFnmwkvxAbEfUDvndv+TDbbvm/sUW0wkbMK2bJ9L6YYq5lKFjOORoDV2ec5yuvvUDv8rHrF9vrRlJQfKy4Ij5e4zwticbh+0DddsdV6mz20JcJtL5n2RjMy1SfJerFEB6S7xDDLJbkIU1Im6H9z2bFz0BEpiZttJ01W7PwYX6AcTPj26mhr0ckoXuTSes6GOSjCD0lRJ5qngL5crwZVhQH5I7B/BMIAZxMUvcurSHnWmajN1BdM3mF76OCktAhfMyvE3oXfQbPaJd1iti+fzSnbm0/MtNyDDbKb27PsAYJqSU7E8D4ne+NsPmoLbCjZrwO2wpNOKIsrJG2SC3mBPgqseM/Y6pqDgmPmGTOI+R62fopAMUQzszbR/kOreGWG1RW9topVMvXFvHOMG3ZTvi/hA/uxKNJf3sqPrJc623JZp5aQ=
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcxOTgzODcyNDI3OSwKICAicHJvZmlsZUlkIiA6ICI0YTM1NWFhZWE1ZGE0OWY2YTFiYzc1YWQ5YzYwOGJiMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUVFZfQXhlcnNpb3IiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTQ0YmRjMjU5NTc0NjNiY2Y0MzE3ZTE3M2ZjNWJjYWU1YmYyYTc5MjhiOWQzYmQxNjkyYTdkMDk5NDQ4MjM0OCIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9
+        updateSkins: false
+      type: PLAYER
+      owner:
+        uuid: 4a355aae-a5da-49f6-a1bc-75ad9c608bb2
+    traitnames: inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '0':
+    metadata:
+      cached-skin-uuid: 0d60f35f-4ac0-46d7-a02f-875479529b38
+      cached-skin-uuid-name: ttv
+    name: ttv
+    uuid: dad78278-b9b7-4164-8787-ede6b44df008
+    traits:
+      location:
+        bodyYaw: -27.64399
+        world: spawn
+        x: '-8.1546'
+        y: '113.5'
+        z: '-112.4318'
+        yaw: '-27.644'
+        pitch: '-14.9345'
+      lookclose:
+        range: '10.0'
+        disablewhilenavigating: true
+        enabled: true
+        enableRandomLook: false
+        headonly: false
+        linkedbody: false
+        perplayer: false
+        randomLookDelay: 60
+        randomSwitchTargets: false
+        realisticlooking: false
+        targetnpcs: false
+        randomPitchRange:
+          '0': 0.0
+          '1': 0.0
+        randomYawRange:
+          '0': 0.0
+          '1': 360.0
+      spawned: false
+      skintrait:
+        fetchDefaultSkin: true
+        signature: BOhkzIKtwH2NRpbnXwcdrFUGDCuhDD2Ebl/ahy0DxIs1Lir7EUzNxQm1yvP/cXbvUqML/9Vr142o2PYRxVD7n5n1qETWH/OY2igaCySRe/HFcIxsdeod+lPm9wxuJeQS3QBhKRh9L0EEEJ2oEsrOueVGGKg8tPtcN3yxH7l+Q4LQ6MoLYjH4twe9E0dyMC0NsvD4kEfVxAs33pXgvRT9CpbF+QetTHXK40rk5/A5PeJeFcGhjq3yWflnUM8L0X1XON7ise2VMxCGAAkXXoLLWKnzxcgJ3a4PFjMu+LiwkGn+N43fItlZk9vDe0sm/U8piq3AFRcn+nFOuON1lujKFloYs9oOkmPovdmKB3/YlNyRc+aCg1R6esxj9zDVNBMpYNJEhC/s/QICpm1PHkiRFFrmLitW3MhCh6+p/mwP7dcVFYigkoN7UYS0yhv1nB+5huSYliLHwSCnfuSzBUfqOTQh7LmMwEUPA0nipKrSP+fnGOHyS4H9BkJ9yZxeqZWrNIb6p+7GjXkJzFdfGUufytIX3hYMaTy3rrKWii9gtoLYK6V6zYOJS1i6lwXDkCLpBl3VV79AF67D2QTREznAOBWIQ6UTXofPtdmtoWOqEsMnNuwXdckelp7imPt4CQbqwo57EYq0pP/hcT+pIGYY3fQUtGEfJcNNR+FRe4lJgKo=
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcxOTgzODU1OTQwMywKICAicHJvZmlsZUlkIiA6ICIwZDYwZjM1ZjRhYzA0NmQ3YTAyZjg3NTQ3OTUyOWIzOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJUVFYiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDgyMjZjNzBhZDM3NGI2ZmVlZWQ1MjI2ODJjMzBkMzI1MzQ1YzQyYWQ5NGE0NzQ0M2M0YzFiOTRjZTk4NDA3NCIKICAgIH0KICB9Cn0=
+        updateSkins: false
+      type: PLAYER
+      owner:
+        uuid: 4a355aae-a5da-49f6-a1bc-75ad9c608bb2
+    traitnames: rotationtrait,inventory,spawned,lookclose,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '12':
+    metadata:
+      cached-skin-uuid: 8f319085-d9ee-4f41-989c-522c38f3eda5
+      cached-skin-uuid-name: finnvisnl
+      nameplate-visible: 'false'
+    name: Quests
+    uuid: 91545d25-9ca2-41f8-8f85-6c9431ecd90c
+    traits:
+      skintrait:
+        fetchDefaultSkin: true
+        signature: WX4kgdk+CVmSIxdTqgtMnktzmfLsu6TUibJeIhWJQEvmMP94C+ABk+cpnp95jYe6otli2NT2W+VaeSe2Uoou4UoG4XIyv1XweVolAD+BkHWsmThe4gdQn/VGtNrzLqBnhRAFLsSsm9Vi9HpI/psSzzSWQY8fLxmneeh6s/tRepGxlgkIFdSQlsNRw0VSZE8prWqDwWaHmyPDJyi+7hj+1owH6uyC07+FPdVSqJ/aEx+vTV/mi+tV9X6VKLyFg6aUh8cMFrIZQDmzehlxLx+bT6t1MG3WN8TQfWEcttFGpYVyYZJw5vN+fDUJ8uv/nfUmzc2JjK4Vt7Zh+erj95crgxwPyGsjDYA/PI7cHiwGA1TQNxQFiOxO0pJHv3mdtgAmOBJlPbvN980HrkDVYa+kLr9kc4YFQV+ahbrZYAEnNH+ZeKH9eVm0JpAWPmIP9OtIQNnMCTSpIVOJSxurC2GwfcUUlTBkqShxySm9eisc4ApXj0XyHV0fLYjv9JNgQksnn3ToucbI/c1MvwReaJphHdmh8hBznWzvCbjgVqUKTtKOwfUP6iaE4YvOHJAPbW/3Mh5ehu6yzC6j6STnG/uxEhBdZ4W/SopTMEVSINqCS3ZUm7DKq7xYVEhbq5P0n9WNjeCJ0/HwtHERDq4/AeBBtAYmyROOc+Ipz4EdhetDnac=
+        skinName: FinnVisNL
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDgwNTYzNzYyMiwKICAicHJvZmlsZUlkIiA6ICI4ZjMxOTA4NWQ5ZWU0ZjQxOTg5YzUyMmMzOGYzZWRhNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJGaW5uVmlzTkwiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTk2MDNhY2IxNzQ5ZjQ5NjI4MDNjZDJmN2JjYmM2NDZhYmRiYzc3M2I1ODU1NTZjZWE5YTlmYzBhNzcyYzlkYSIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9
+        updateSkins: true
+      spawned: true
+      type: PLAYER
+      location:
+        bodyYaw: -91.35974
+        world: spawn
+        x: '-24.464'
+        y: '-65.6343'
+        z: '-103.5601'
+        yaw: '-91.3597'
+        pitch: '-3.6763'
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+    traitnames: inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '10':
+    metadata:
+      cached-skin-uuid: 00db4673-2745-4b0d-b40d-324562eeb253
+      cached-skin-uuid-name: zebra_pad
+      nameplate-visible: 'false'
+    name: Zebra_pad
+    uuid: 2276a2a9-eae3-46c6-afc4-31cb7408df74
+    traits:
+      skintrait:
+        fetchDefaultSkin: true
+        signature: b5/l0GACAlQpbAKFws8dPAQgLWJUHNNJcSd2UtDK6CpAHz1GRAsN0RjMkLjitcz2EcrwO6zB2tXmjUqXUX2jCbSxgsx3tzzYl8L1/ZMNe8NO/GO82y4fOwhKIM2y8EeG+uHLyGMFei6zT/JxLdvNaYdiLPvyd9RsReO48afgiDi2aloeGs+ixwrbt8ywhvjTowh3pXQ9smuqn8pmUYL5BtLm06DA3C9D213LT5m59a/wrGmfCAtjRdltXhgDBrm1Pxcot1eKrdQUICIExfgd2eHNCu0ossFt+LOPE6K4WI/5AwAUTkWPDukPu8HZip7uI/a9GOESn78BbHP5e5LacVk3lU/6R9yf67qht4LdzpAgholPeFtjwNAc2UoU/touagj9cUCLPyGPGW+WrB1xjO9WJBNMm8FlER0PCchvuRZwdud9y2yfrZBFSn2dilX3CP1yDnJQXjbGuAbhkQRYvHIdrAhTGnmFN2jo2/34oIbq084mdAgkBZbaBhVZiMbAp3yH91CsH3boM46pNuFehgD8ySzgITD114/WguKaP+TSyFlEYFowgfD4W8H0dvSiC8Y1Czd28CW4xtOHqjW81RlT7t5PGP19m62Q/Ouz6XoRW6RKYZcAGNtEGoAq+m+BVopTNB7ASjVNjuhpivz259qM3Heq6HJS0bR8aa6DXok=
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcxOTg0MDI2ODIyNSwKICAicHJvZmlsZUlkIiA6ICIwMGRiNDY3MzI3NDU0YjBkYjQwZDMyNDU2MmVlYjI1MyIsCiAgInByb2ZpbGVOYW1lIiA6ICJ6ZWJyYV9wYWQiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmUzYmU1NGEyYWFhMmEyYTQyOTY2ZWFhNjlkNDIzNzBmNjM5YTBjNzNjODMwNGRhYmI2YzJiODk3N2EwZGFlNiIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9
+        updateSkins: false
+      spawned: true
+      type: PLAYER
+      location:
+        bodyYaw: -2.4019775
+        world: spawn
+        x: '-19.5348'
+        y: '-64.5171'
+        z: '-107.5111'
+        yaw: '-2.402'
+        pitch: '0.75'
+      owner:
+        uuid: 4a355aae-a5da-49f6-a1bc-75ad9c608bb2
+    traitnames: inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '17':
+    metadata:
+      cached-skin-uuid: 8f319085-d9ee-4f41-989c-522c38f3eda5
+      cached-skin-uuid-name: finnvisnl
+      nameplate-visible: 'false'
+    name: quests
+    uuid: 43a6d8d0-4615-4b67-8de6-d726be7b40ae
+    traits:
+      type: PLAYER
+      spawned: true
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      location:
+        bodyYaw: 4.5345764
+        world: spawn
+        x: '-24.4469'
+        y: '113.5'
+        z: '-103.4802'
+        yaw: '4.5346'
+        pitch: '-2.8598'
+      commandtrait:
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+        commands:
+          '0':
+            command: tp <p> -18 80 -42
+            hand: RIGHT
+            player: false
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+      skintrait:
+        fetchDefaultSkin: true
+        signature: WX4kgdk+CVmSIxdTqgtMnktzmfLsu6TUibJeIhWJQEvmMP94C+ABk+cpnp95jYe6otli2NT2W+VaeSe2Uoou4UoG4XIyv1XweVolAD+BkHWsmThe4gdQn/VGtNrzLqBnhRAFLsSsm9Vi9HpI/psSzzSWQY8fLxmneeh6s/tRepGxlgkIFdSQlsNRw0VSZE8prWqDwWaHmyPDJyi+7hj+1owH6uyC07+FPdVSqJ/aEx+vTV/mi+tV9X6VKLyFg6aUh8cMFrIZQDmzehlxLx+bT6t1MG3WN8TQfWEcttFGpYVyYZJw5vN+fDUJ8uv/nfUmzc2JjK4Vt7Zh+erj95crgxwPyGsjDYA/PI7cHiwGA1TQNxQFiOxO0pJHv3mdtgAmOBJlPbvN980HrkDVYa+kLr9kc4YFQV+ahbrZYAEnNH+ZeKH9eVm0JpAWPmIP9OtIQNnMCTSpIVOJSxurC2GwfcUUlTBkqShxySm9eisc4ApXj0XyHV0fLYjv9JNgQksnn3ToucbI/c1MvwReaJphHdmh8hBznWzvCbjgVqUKTtKOwfUP6iaE4YvOHJAPbW/3Mh5ehu6yzC6j6STnG/uxEhBdZ4W/SopTMEVSINqCS3ZUm7DKq7xYVEhbq5P0n9WNjeCJ0/HwtHERDq4/AeBBtAYmyROOc+Ipz4EdhetDnac=
+        skinName: FinnVisNL
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDgwNTYzNzYyMiwKICAicHJvZmlsZUlkIiA6ICI4ZjMxOTA4NWQ5ZWU0ZjQxOTg5YzUyMmMzOGYzZWRhNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJGaW5uVmlzTkwiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTk2MDNhY2IxNzQ5ZjQ5NjI4MDNjZDJmN2JjYmM2NDZhYmRiYzc3M2I1ODU1NTZjZWE5YTlmYzBhNzcyYzlkYSIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9
+        updateSkins: true
+    traitnames: commandtrait,inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '16':
+    metadata:
+      cached-skin-uuid: 00db4673-2745-4b0d-b40d-324562eeb253
+      cached-skin-uuid-name: zebra_pad
+      nameplate-visible: 'false'
+    name: crates
+    uuid: 7e97c2a4-d017-48b9-b03e-e183a35bec17
+    traits:
+      type: PLAYER
+      spawned: true
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      location:
+        bodyYaw: 0.9347229
+        world: spawn
+        x: '-19.487'
+        y: '113.5'
+        z: '-107.666'
+        yaw: '0.9347'
+        pitch: '0.0'
+      skintrait:
+        fetchDefaultSkin: true
+        signature: Znxxtc3FAogeeLvK4HtRaPR2DUmbMimVTjOEBGo8tQjSBLwS0NfTRwk5jVjjRNbxGD46HNItGgihykQp8ThIU5ojGg/tut3coDQkiiNoLsKjLcrw6Z/CY9iPodrXK/U9x76BR8UnlmCICOhArqcaCzi28rk67tgn1yeaVzELElDfnaIckV0iyod7NF8iZUtjdbDQWqf4LdO5Rz2LERtHnuKCGM1muBweFh8gZ15P7G8pMyMkfkQ02bQfGNS3ryi9443jOJ3MV0Pm+n0MNuZISKXmVq/0ho1575C9c1krfZctXUGJTjjH+6TkzPC0jW6ofTiOxmWYWcuUS1B82XGQRmfIpCNQ+54L0hxxsbbH9J0fPB4wXAxZJGUIcl97aInAXv/55NjAaEpz19p3q3uLih2a+DOjWxp9VHZI/6fpTQF+A1S1YfmK2cxRM3h4N822iImXGl4IaNulqy3wuXmqNp3rWu6D029toXJQdUOnAhkj1bq+2MSPNaNu6J6ok0iRA3J6ZwZFehrMXcq4xwje5T0m4YK+dFvhfy6Ci5fyPRWdAYLrlVANvF7LWqnSSu0p8EPwnxAl3YlpQ81uV/M4eANkE78KsPYcaDQ8ToPCZyM2GUNCPHQecBjALW1Z7gUAI57TvAf4QCse0D8mSDi0Vo7nGzRhaTWmxYcsvoyxEYw=
+        skinName: zebra_pad
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDgwNTYzNzc1OCwKICAicHJvZmlsZUlkIiA6ICIwMGRiNDY3MzI3NDU0YjBkYjQwZDMyNDU2MmVlYjI1MyIsCiAgInByb2ZpbGVOYW1lIiA6ICJ6ZWJyYV9wYWQiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmUzYmU1NGEyYWFhMmEyYTQyOTY2ZWFhNjlkNDIzNzBmNjM5YTBjNzNjODMwNGRhYmI2YzJiODk3N2EwZGFlNiIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9
+        updateSkins: true
+      lookclose:
+        range: '10.0'
+        disablewhilenavigating: true
+        enabled: false
+        enableRandomLook: false
+        headonly: false
+        linkedbody: false
+        perplayer: false
+        randomLookDelay: 60
+        randomSwitchTargets: false
+        realisticlooking: false
+        targetnpcs: false
+        randomPitchRange:
+          '0': 0.0
+          '1': 0.0
+        randomYawRange:
+          '0': 0.0
+          '1': 360.0
+    traitnames: rotationtrait,inventory,spawned,lookclose,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '15':
+    metadata:
+      nameplate-visible: 'false'
+    name: pig
+    uuid: 84fa597a-7c8c-438e-95b3-0aac42deeb62
+    traits:
+      type: PIG
+      spawned: true
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      location:
+        bodyYaw: -2.5081787
+        world: spawn
+        x: '-13.5483'
+        y: '113.5'
+        z: '-110.5321'
+        yaw: '-2.5082'
+        pitch: '-15.0363'
+    traitnames: spawned,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '14':
+    metadata:
+      cached-skin-uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      cached-skin-uuid-name: izyrac
+      nameplate-visible: 'false'
+    name: Marktplaats
+    uuid: ceeb87ed-7804-47ea-9807-d509048744d6
+    traits:
+      type: PLAYER
+      spawned: true
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      location:
+        bodyYaw: 0.44692132
+        world: spawn
+        x: '-13.5206'
+        y: '113.5'
+        z: '-110.5142'
+        yaw: '0.4469'
+        pitch: '-6.9412'
+      commandtrait:
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+        commands:
+          '0':
+            command: ah
+            hand: RIGHT
+            player: true
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+      skintrait:
+        fetchDefaultSkin: true
+        signature: j4n1X1EIpt+kT9XQhIbJlXVKllcc39CtZOCj7CE8hUnB4Am+6hS5u/8//dmgd5L7EMrlbYNf6PP+llJU/9SMJczHFhQgeAel4S2yT4kQU/E5lxrp7/DYKUbUcI2GpjbzVFaHhGqsq+fxpcH5H2KBXc4Bvlf+B7fRSAylgYAjppZLMSlGU6wOE42ioPBufFKVjAo0X4Q7saDTi6UGOilLVT7MLjBMLO3PCd8xmCm7WLC5TXTh1dowNEQFNdQssIafZlhtOM8wMwwoGaR4HYrSPOBd+d+DrdNNFY0vp6Ekyl3IQPUNKtb2VsgPUVu6DPTbvWvXSTptIHnvQmEVPRV9T292OUcq5cJ4ckmLKHQSlj6HG3OtMoSbtlkGHH37oaRl1dpbXNIcl+FKCaZoONncD1Y9qV79oZE/6b83bELM7BoXZE0ws9s+muWAcVY45yECmg4EL7QkgSSSLZ30u7fyJeYTYD5NPO8Ey5Jrfd24RUSL0kG4orWqXB9BxuuSNBuiM32SKKPMedVGN5bo22PcfjKW6k5M+mFg9XtkMj/e7xHGcuKZL1hlf4oKyacZf88H49q5DwkDMc7j3gdua+zZAuTxKgMqcR0U//JAxgzIXvfeCBwUVpQxuUdsmB0UYicIN08ODaonwU0IwCfh+m39e/rI66Gr78bJPIMzEF8ZlF0=
+        skinName: iZyrac
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDc4ODgyMzQ1MiwKICAicHJvZmlsZUlkIiA6ICJiMjVhMmY0YTBiMTM0ZTA5YmZkYzAxYzYzMjg5MzJhNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJpWnlyYWMiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDc1NTNiZjMxYTg4NDQ4YjRlODBjNjdiNTk5ZDUxMTczZTIxNzRmMjZmNTEwZjg5ODZhYWY0NGI5MjUyNDU2YSIKICAgIH0sCiAgICAiQ0FQRSIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Q5ZDgyYWIxN2ZkOTIwMjJkYmQ0YTg2Y2RlNGMzODJhNzU0MGUxMTdmYWU3YjlhMjg1MzY1ODUwNWE4MDYyNSIKICAgIH0KICB9Cn0=
+        updateSkins: true
+    traitnames: commandtrait,inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '13':
+    metadata:
+      cached-skin-uuid: 4a355aae-a5da-49f6-a1bc-75ad9c608bb2
+      cached-skin-uuid-name: ttv_axersior
+      nameplate-visible: 'false'
+    name: shop
+    uuid: d8c7cd84-d68d-4c2f-960c-69b5d48c4cde
+    traits:
+      type: PLAYER
+      spawned: true
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      location:
+        bodyYaw: -0.70958424
+        world: spawn
+        x: '-8.5019'
+        y: '113.5'
+        z: '-112.5033'
+        yaw: '-0.7096'
+        pitch: '-2.9274'
+      commandtrait:
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+        commands:
+          '0':
+            command: shop <p>
+            hand: RIGHT
+            player: false
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+      skintrait:
+        fetchDefaultSkin: true
+        signature: Gk08+XsGmG1PbWgkQcatFQK5+1HQApm7QRbQaMEyfE/6iVN/Nm3b+x5gmyZDRWUhwF4OWT6c33PDtNCWzph5OeGW+wE1kwPOITVUG4B14Pta+DzqFR5+jUVKJ/qOwSPTvaLA6DMOd4Ju4tWWns5A5PLAlMJHmbYXau/D4LV9I+IRF9hW+UePk4aQ02dkUMqiwHhO35QZ8SBYorpZObVUz6ytIbzQVqt7b/ude3KvHuLnV10+yhZiD+achKZIdnmt2SdbfLtp5yXN5uFddh5lq1tyxQNYU6awLVGWxRA7oSTy0xUiLCHt3xdfK/Nsyn6oZaAIWdD5ocfeqkhZzQAZaaNv2Y4+NMKGRxUfa8AHBvgovMGBwsKXCGQyc+rid1ZdKg7j+Sbmr2B5bNC7avmnDy9IOxh8s0UEEc8tM0/8163jb+pURuSpMcetkanrb/uQtnxYM5bjjH/azMM4zw8bXDWn/7BliAC9yA/EmVM8yIl6HfeP0j3Z28toNSvwsU+gXQv9xTR3Gdhk6ARTLBnQMc7GkhaPuvoT55LH1g09nIcxQTIx+h1V0Zo1j1qFdbzFjL0BQrTDdXnh81dtb54Jsu7e4hbpKFc8uZnHm+nmAGlIYFOBcd35oQLksiDUUCqJnFU3rpATjdsYwicxkHujHNkNrfcYWvU16WzVI5P80F0=
+        skinName: TTV_Axersior
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDc4ODgyMzU5NCwKICAicHJvZmlsZUlkIiA6ICI0YTM1NWFhZWE1ZGE0OWY2YTFiYzc1YWQ5YzYwOGJiMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUVFZfQXhlcnNpb3IiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTQ0YmRjMjU5NTc0NjNiY2Y0MzE3ZTE3M2ZjNWJjYWU1YmYyYTc5MjhiOWQzYmQxNjkyYTdkMDk5NDQ4MjM0OCIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9
+        updateSkins: true
+    traitnames: commandtrait,inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '20':
+    metadata:
+      flyable: true
+      nameplate-visible: 'false'
+    name: Rewards
+    uuid: 15f3d359-3926-46fd-a25e-756c0e5bb722
+    traits:
+      spawned: true
+      location:
+        bodyYaw: -0.14990234
+        world: spawn
+        x: '-4.5226'
+        y: '113.5'
+        z: '-115.5581'
+        yaw: '-0.1499'
+        pitch: '-7.5537'
+      type: BREEZE
+      gravity:
+        enabled: true
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      commandtrait:
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+        commands:
+          '0':
+            command: /zmenu open zmenu:beloningen
+            hand: RIGHT
+            player: true
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+          '1':
+            command: /zmenu open zmenu:beloningen
+            hand: RIGHT
+            player: true
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+          '2':
+            command: zmenu open zmenu:beloningen
+            hand: RIGHT
+            player: true
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+    traitnames: gravity,commandtrait,spawned,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '21':
+    metadata:
+      cached-skin-uuid: 9b66d7da-0ef3-4643-8ea9-e16a064c57d2
+      cached-skin-uuid-name: milanogamezzyt
+      nameplate-visible: 'false'
+    name: Stad
+    uuid: fb85e1f0-f4a6-439e-906d-fbb912bf2c30
+    traits:
+      spawned: true
+      location:
+        bodyYaw: 179.5343
+        world: spawn
+        x: '-15.5226'
+        y: '112.5'
+        z: '-90.4328'
+        yaw: '179.5343'
+        pitch: '-0.0715'
+      skintrait:
+        fetchDefaultSkin: true
+        signature: h56vZWqHNTF6KmXjmRwWcP31Lelyr4Dldex2tjhDZfP+fpSKkmU9q8pCoJHRAn7G3qurUF50rJlJBG/hMxhGFNX8HQet2blDdEi6pmHxvL218K01vfbqbRjeYH2O7E7Zq+CcLQPeNxtoWj8vVbbqUJYpXU+3+J+8eKvqN2fVDsQfM9ERI/ax1raZOMvrh2aVPPTpj1dFutZnS0rk5oSdZPKjCt++q2sOltF5NL76Xw3wKMKgvq9VoXicen6wBEQ9gzUMjty9uE7JLUyCM1C3Lg+hPaO9+Oto2SZ2EZhEAXhvOxq+Td1hzoRUI8nAdijLJX6AFb7JVeHzkbiEGcRIXrgwfqVZaCsTKEQSsHCa/5X1RBB7XfnEWBniVhFE4tr/CvckN2zIF2eSSyuZldVmtTdL9MMcgUnsEdrCHqqs1j5gN74wNKlCrc5e0kter+QdnHDO+Q5BmljP7FYiaDjGGJ37qNUnmdLpw+xZDw4m0w9dEUv5YIPuRte79lv6uGWDYafI1HVkrhCXBLnHvZz6QdhrlFVrmKQbLHh4kUcJ+34CeKiasqAm6oVqzurUWciEi65kvDgyOrbbSo6Dk4a+UsY9zbCZKfN5/pWwN2DBJz92o7i8OX47tbjVK3MOIAVjnfdQd+RHtuwrMZruGx0cvu1P5w4X/oHt645TaW1iTvo=
+        skinName: MilanoGamezzYT
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcxOTk0Mzk3NjQ5MywKICAicHJvZmlsZUlkIiA6ICI5YjY2ZDdkYTBlZjM0NjQzOGVhOWUxNmEwNjRjNTdkMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNaWxhbm9HYW1lenpZVCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8zMmNmYzhkOWYyZmU5NjBkMTNmMGU3MDcxNmQ0NTBiYWYxOGU1ZDFhYTNmYzM5ZGUwMzE5Mjg3YzZlZGQ2YjE0IgogICAgfQogIH0KfQ==
+        updateSkins: false
+      type: PLAYER
+      owner:
+        uuid: b25a2f4a-0b13-4e09-bfdc-01c6328932a7
+      commandtrait:
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+        commands:
+          '0':
+            command: tp <p> -393 68 -6242
+            hand: RIGHT
+            player: false
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+          '1':
+            command: stad
+            hand: RIGHT
+            player: true
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+          '2':
+            command: warp stad
+            hand: RIGHT
+            player: true
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+    traitnames: commandtrait,inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '28':
+    metadata:
+      cached-skin-uuid: bbeab939-a6fa-40f7-b4ce-572e3760a94f
+      cached-skin-uuid-name: blauw
+    name: '&1&lBlauw'
+    uuid: 37815452-8879-478b-8a17-b40ad92ee83b
+    traits:
+      spawned: true
+      lookclose:
+        range: '10.0'
+        disablewhilenavigating: true
+        enabled: true
+        enableRandomLook: false
+        headonly: false
+        linkedbody: false
+        perplayer: false
+        randomLookDelay: 60
+        randomSwitchTargets: false
+        realisticlooking: false
+        targetnpcs: false
+        randomPitchRange:
+          '0': 0.0
+          '1': 0.0
+        randomYawRange:
+          '0': 0.0
+          '1': 360.0
+      skintrait:
+        fetchDefaultSkin: true
+        signature: V2YCQiCx2vNH97nwWQWeZxbrZsvxnJBGnKm+E1Ju+xntkvP72AjbxfR2KA4Cd7SSbioi8a1XnMdc4I4ZO4aoC6nJhACRY5zuly9tOJAez2bwafE16OzdoETu1OBnEq6FrAi6yxub/7jT1vQ6/HNZjNuUoByAFWah3UUG+GcTWlZnwpUCe6YVzG+iETHNyPp47OcLCOFQ0Vug9loNxLfmWFw4VqAdqTwwzPUO4rdo0VCQ/OwmNXFT9UJ9/Jn2bm56kx8UdBf/D/NC7Jr+8ccF1lyI8G3ijJXTtJSqfdwUFYVGAKm6/qsjasdYVh4fMfJbx5JpVuw1rMwAPpTLoumdONI4DnKQgP4RMh/MP/2eLIzE2xP2eSXSrT3yv3nlaCO1y0CIvyCY4sLMdFFI76n7nhwOsUbxYmK69hccHObrFx7w137Be9z/oSAGWbIK4LoBVh4JCux4iAnOVs+eTZhfRQaZ0bgztooyQyFsbKuCe78jG9oRqcmjST5YaWcGxUqr2FaYvQr/xpVNEcSa494hvPQIV1feT7Y2M2OuIbEyoDLlI/xb7ZIw8VDc1lFFlgBgcYRSELzw2JG8TylJnSn50QIm5ZFcB84k22vbeZYL5ECZplwZfh/HHkz9jbNQb4cPcAjjv9Rq6rSh59xVrLgi19qoD6WFpzjI3jqMGfnL6zU=
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDgwMTA2NDI2OSwKICAicHJvZmlsZUlkIiA6ICJiYmVhYjkzOWE2ZmE0MGY3YjRjZTU3MmUzNzYwYTk0ZiIsCiAgInByb2ZpbGVOYW1lIiA6ICJCbGF1dyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9lM2IwOWExZjJiZGViZWJhYjk3YzhmNGJlZWI0ZjYyOWQ1OGQ4ODA5YTU2NWQ4OTM3OGQwZmFiOGQ3Y2RjZDNiIgogICAgfQogIH0KfQ==
+        updateSkins: false
+      type: PLAYER
+      location:
+        bodyYaw: -12.539116
+        world: spawn
+        x: '782.4781'
+        y: '150.0'
+        z: '787.5782'
+        yaw: '-12.5391'
+        pitch: '-12.5875'
+      owner:
+        uuid: e6f2271c-0589-4e02-b32d-28c8eb6d166c
+    traitnames: rotationtrait,inventory,spawned,lookclose,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '27':
+    metadata:
+      cached-skin-uuid: e8d7924d-a209-40e0-8395-67c303f2de08
+      cached-skin-uuid-name: noah_noob55
+    name: '&a&lGroen'
+    uuid: 8120f679-a463-4ff3-b595-6d42e2b73c1d
+    traits:
+      commandtrait:
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+      spawned: true
+      lookclose:
+        range: '10.0'
+        disablewhilenavigating: true
+        enabled: true
+        enableRandomLook: false
+        headonly: false
+        linkedbody: false
+        perplayer: false
+        randomLookDelay: 60
+        randomSwitchTargets: false
+        realisticlooking: false
+        targetnpcs: false
+        randomPitchRange:
+          '0': 0.0
+          '1': 0.0
+        randomYawRange:
+          '0': 0.0
+          '1': 360.0
+      skintrait:
+        fetchDefaultSkin: true
+        signature: D8otECcCEZ3mwd10KcD1KtnXPaw3SaoUCN1As3rMurgd2XH9Jd9twH1YAcn5xnX7cy8d8sUgntidqoBTAZv4uYLhFf+i85I1+CdM/RAnexJOx6qQM9BU7Z/PM753XlgExid/nnWV6bdi2eU0ik0quRXgk3wZu8j09NdW+j/lAY+GZ2GzktiMGZsFCAzCfIaeMe0AZm6N8b6yPzFdXElQ9znjK3IeZMCijcdXJv3003KQJdffM/V48uZGhp8d8Qe5VfKPztw9sqdVK02k4fCi+3biuZbNBUeRxn8OchDC1XWqMBJU+xZR2ZRMTqBG52uOTM/LvbUx51GOfo2L8nH3A0a3jdCrQS58y2elIFhxNu7GmOY929hVDO71stE8d208i2czS4qqorLUbK5nZymKAFD4XHTcYnOfMvrwktyzCVsGHLYcGa/FPu6kgpUXAZS4Pv9uTxoKUMxLTpNf4DAmyn71RYcZxCr/dUCNUKY5ybiJZlLvVfNcujRzXJH7qIMQPOe9Bvw+Pea45kAnQpy8md/qNvXOA7XiE+qlzDzC5hgykbVqOnnI+NQZP734WpwUvAHtG8t0m4uO20XLJZQw3c2yB/BrZScVOgs7z+8dpVZ9gr8Q5znvqxpqNviOYjrKBp3GS2/4XNxcv+UoEbNyai+8DBEdiCKULNUD9Yc/2sY=
+        skinName: noah_noob55
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDgwMTAzNTMwNSwKICAicHJvZmlsZUlkIiA6ICJlOGQ3OTI0ZGEyMDk0MGUwODM5NTY3YzMwM2YyZGUwOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJub2FoX25vb2I1NSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS85NTllM2VmOWUzZWFiNGY1MzI4YzVhZWRkMWI1NzI3MjBlNzgxMmVhZmEzOWU0MTU3ZDdiOGIyMGYwOWFmZWEwIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=
+        updateSkins: false
+      type: PLAYER
+      location:
+        bodyYaw: 48.691696
+        world: spawn
+        x: '817.2683'
+        y: '150.0'
+        z: '786.5969'
+        yaw: '48.6917'
+        pitch: '-19.7662'
+      owner:
+        uuid: e6f2271c-0589-4e02-b32d-28c8eb6d166c
+    traitnames: rotationtrait,commandtrait,inventory,lookclose,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '26':
+    metadata:
+      cached-skin-uuid: 92e56ba2-86bf-4afe-951b-0b7e5a419fed
+      cached-skin-uuid-name: groen
+    name: '&3&lGroen'
+    uuid: 9ad760fa-0592-45da-a1a5-4a4c8e6e191d
+    traits:
+      spawned: false
+      skintrait:
+        fetchDefaultSkin: true
+        signature: rjpUOG5cvZZnzeHAQeiH0kMzeFC2J9prGjypQ7SquozJyhV2miDXhuEKsybVzlO4JD2/iWegXPNheh6bp++nDwn/1QnWoqiB+1yqLZRAwaVpRcsiggbiffgYHSSaP5kMlLqPqfya23wgeR8AchVetl7dRJeqtskQMw0F9KGSyiUjjRIXXjcWMxr93w6uTHCQuKPr3Szm60ejgmxMSkGMCrfEpSECUttfYY6OkwW/OBcKyQXkRMeMTgtkgg9c5ZsVgBNTRHPIn2BWKZ4CzLUOjeiZ3akubatw4xoSGWOr+19TYzIiV1djzoK/P9ZNgjSWOhLirdnx6E62qIit2WcxFekF9ZK6YmKXLzysgU7pM6oHaJ3orN3QIuAyOp5wT5kO9W1LOL+7yVw3/mlFyo3+YTH1JL66NO/DLjSssvcE+NLEx0nz97MYI2+1sUIdyGXvXmjTm70TMH83APzJ83s6kBTyvjz+XDcfPWjSyBF3XWSy4HwokS0U8VG8DPxBoKkTwnnzUzF76pkfRw1ywzvOwpn5tenVJ92HomSzsQ9j05dCHjNeO3XWfSoGVM1LwY/tIuQA15ITVGLVrvSYuZ7qfjRZw1HfpZKclTjC7WvnvwT6AP69FfNVKsQxzsSsI2Mfl1FGn9x3LAj+1JKhujSmwz6nAL7fNGKs/F63pCt+1cQ=
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDgwMDk2MDkwNywKICAicHJvZmlsZUlkIiA6ICI5MmU1NmJhMjg2YmY0YWZlOTUxYjBiN2U1YTQxOWZlZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJHcm9lbiIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8yMjZjNjE3ZmRlNWIxYmE1NjlhYTA4YmQyY2I2ZmQ4NGM5MzMzNzUzMmE4NzJiM2ViN2JmNjZiZGQ1YjM5NWY4IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0=
+        updateSkins: false
+      type: PLAYER
+        location:
+        bodyYaw: 45.368103
+        world: spawn
+        x: '816.3016'
+        y: '150.0'
+        z: '787.5365'
+        yaw: '45.3681'
+        pitch: '-2.2826'
+      owner:
+        uuid: e6f2271c-0589-4e02-b32d-28c8eb6d166c
+    traitnames: inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '25':
+    metadata:
+      cached-skin-uuid: e6f2271c-0589-4e02-b32d-28c8eb6d166c
+      cached-skin-uuid-name: smotserela
+    name: '&e&lGeel'
+    uuid: 5f4764f7-c7db-4bca-9159-092cbc01c824
+    traits:
+      spawned: true
+      lookclose:
+        range: '10.0'
+        disablewhilenavigating: true
+        enabled: true
+        enableRandomLook: false
+        headonly: false
+        linkedbody: false
+        perplayer: false
+        randomLookDelay: 60
+        randomSwitchTargets: false
+        realisticlooking: false
+        targetnpcs: false
+        randomPitchRange:
+          '0': 0.0
+          '1': 0.0
+        randomYawRange:
+          '0': 0.0
+          '1': 360.0
+      skintrait:
+        fetchDefaultSkin: true
+        signature: u7ftqFth2+bOFlu+8MJmZFEvFcVkU5Gowh9ziWLgUxu/D5WjCOjFrdLD8zJl0rLyQo9FJvx5i6hlN+3IwN90ZKH1+C2qVCbfrsKh4a3iklXlfgaYldHpOibgZvjCjgwNhHqv305caWqiOcYONI+AqtEGuqb99YnJeeaD/tvdD46qXtKRMz4CS9o/I/mEdguTO6IpDsVKosbEHKMoWXW1NJ5A63hvkcfRMB5OE6YnSSUInC3MVq5u3PTjhz97/OqA0IGdxpYFJ4BhYk6NRhXdqjaUWYJFJNQnsAjp+aHo3mGNkOESIK/7rC3YdgjRbkH/8qBaRP7t/xZqTn3YOv+cr5PJtHVFoGxi8jJqeoWemqMcX+07xlqvEGgM91GOxSeGzxEcojRv+YnUdkdJSGpiCyDC8VTQz4w9QpX12k2w1u7RCkEMzxxls+7H6Gjt/uijY0Hh6uPtY8ssH5aACvNTpMSrT+ykxf3LGiuu6+lQaN9TL5K8MHe7o7JDxSnCfHfk16or17iXwnNp2n8MRdGLfWSvyMU7XI54nhzQEXw0yJuh/BjFkTGItzGWOKJgB1/09pFfY5c5LgzQryUBtFHMTO+JOjP+V6ZdCzS7Pn+b1qe4QEYNnT8m7gT77e+/AXCBcjxRs0+He1iQ//kxRSvRd3isEio0PQC820k6HW6LGeM=
+        skinName: smotserela
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDgwMDkzNzc4OCwKICAicHJvZmlsZUlkIiA6ICJlNmYyMjcxYzA1ODk0ZTAyYjMyZDI4YzhlYjZkMTY2YyIsCiAgInByb2ZpbGVOYW1lIiA6ICJTbW90c2VyZWxhIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzc1N2IzYjc2OTQ2NDM2ZjNiNGU5NjY2Y2FmZTFiYWFhM2IzY2MwYTZmZjNlOGI1YmNlZTc2ZDZlMGI5MWFmZTciCiAgICB9LAogICAgIkNBUEUiIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NkOWQ4MmFiMTdmZDkyMDIyZGJkNGE4NmNkZTRjMzgyYTc1NDBlMTE3ZmFlN2I5YTI4NTM2NTg1MDVhODA2MjUiCiAgICB9CiAgfQp9
+        updateSkins: false
+      type: PLAYER
+      location:
+        bodyYaw: 112.253876
+        world: spawn
+        x: '816.6012'
+        y: '150.0'
+        z: '820.5445'
+        yaw: '123.7724'
+        pitch: '0.0'
+      owner:
+        uuid: e6f2271c-0589-4e02-b32d-28c8eb6d166c
+      commandtrait:
+        '0':
+            command: warp geel
+            hand: RIGHT
+            player: true
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+    traitnames: rotationtrait,commandtrait,inventory,spawned,lookclose,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '24':
+    name: '&e&lGeel'
+    uuid: 2216f438-c006-4be9-8da9-d41748a4491c
+    traits:
+      spawned: false
+      skintrait:
+        fetchDefaultSkin: true
+        updateSkins: false
+      type: PLAYER
+      location:
+        bodyYaw: 146.34143
+        world: spawn
+        x: '816.5455'
+        y: '150.0'
+        z: '820.4742'
+        yaw: '146.3414'
+        pitch: '89.4324'
+      owner:
+        uuid: e6f2271c-0589-4e02-b32d-28c8eb6d166c
+    traitnames: inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false
+  '29':
+    metadata:
+      cached-skin-uuid: 63344189-d67d-4e4d-acef-267de0945541
+      cached-skin-uuid-name: rood
+    name: '&c&lRood'
+    uuid: 0a77ed2e-73bd-4dd2-a1f4-c02e72c8469c
+    traits:
+      commandtrait:
+        cost: -1.0
+        executionMode: LINEAR
+        experienceCost: -1
+        hideErrorMessages: false
+        persistSequence: false
+        commands:
+          '0':
+            command: warp rood
+            hand: RIGHT
+            player: true
+            op: false
+            cooldown: 0
+            globalcooldown: 0
+            n: -1
+            delay: 0
+            cost: '-1.0'
+            experienceCost: -1
+      spawned: true
+      skintrait:
+        fetchDefaultSkin: true
+        signature: J35jKLmchWibfnXRfw6mh6gka2Hpe+fIffRU19jHX6OppE1YNo8lmRrIJ0l2d4BG8meKMP/lPXZiv4j3QpTq5XqG44kIfK1IfZW3KvQr0/3+nebhjdWWPjCkUetVq/d0DrxeeSgBk1L/Ebg6DkRm5qxbUfxu1ujaU5i4nt2L1fY9A8SdYg/yXAIXPf1mIf9T/EJaYimXkDHiLxCx2+Sh3KCmHFAu5Jgo2GPlDqfBHOWXugBijLdoqXEQRo6IlqON4nMzO3MvuYME//tStLdDTFs9nfJ3yJYuZRzH6CE39RTLAILHg4msOOaQi7sTNIUNVQZ5RiIq6vmjGBouXJ7x7bD1mcLQ8YJ0gjXxRGGXjrGy0f/JOMDypj1MPgya/0fBrHnYBpBkK+qYuI3J7SeF1Zgquc6nS6uIbhRBvpJpgUwQzQlg7YZ28OAHDG1UYjINzS5LiXM5un9TWYJSZkNJm7V3yh27AiHCDbdMqOXPQnyNoIqkwZ5ymK43rkZx/rZFImEauaDiUDx3DGTguO9x8L0/rt4lskgoLlsQG5z0o4/+Wq35dWrzVfNmDNPU2+OQGQ+o5H83BgGOe8LZFUxQfZljYRP2c3mphoY7KPWG0TylKzBWqBIH9zEDgk3HSp76yhPpuv5Q1AbR3JHYt36LCB+g5cFQ7/HeaPh3UHCnbvY=
+        skinName: rood
+        textureRaw: ewogICJ0aW1lc3RhbXAiIDogMTcyMDgwNDcxNjEyNSwKICAicHJvZmlsZUlkIiA6ICI2MzM0NDE4OWQ2N2Q0ZTRkYWNlZjI2N2RlMDk0NTU0MSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSb29kIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RjZjkwMjc0MTMyOTAzMmE3NDc0Y2RjMTU0NjljNjg2OGFiNGNhMWU1MjY3NzRhODE2NjYwMDU1ZDNmMGE2ZjciCiAgICB9CiAgfQp9
+        updateSkins: false
+      type: PLAYER
+      location:
+        bodyYaw: -137.96463
+        world: spawn
+        x: '782.3531'
+        y: '150.0'
+        z: '820.621'
+        yaw: '-137.9646'
+        pitch: '-1.715'
+      owner:
+        uuid: e6f2271c-0589-4e02-b32d-28c8eb6d166c
+    traitnames: commandtrait,inventory,spawned,skintrait,type,location,scoreboardtrait,owner
+    navigator:
+      speedmodifier: '1.0'
+      avoidwater: false
+      usedefaultstuckaction: false