diff --git a/src/main/java/emu/grasscutter/data/ResourceLoader.java b/src/main/java/emu/grasscutter/data/ResourceLoader.java index 1942136f2..29e05addd 100644 --- a/src/main/java/emu/grasscutter/data/ResourceLoader.java +++ b/src/main/java/emu/grasscutter/data/ResourceLoader.java @@ -1,6 +1,7 @@ package emu.grasscutter.data; import java.io.*; +import java.lang.reflect.Type; import java.nio.file.Files; import java.nio.file.Path; import java.util.*; @@ -27,6 +28,7 @@ import emu.grasscutter.data.common.PointData; import emu.grasscutter.data.common.ScenePointConfig; import emu.grasscutter.game.world.SpawnDataEntry.*; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; +import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; import static emu.grasscutter.Configuration.*; import static emu.grasscutter.utils.Language.translate; @@ -306,19 +308,32 @@ public class ResourceLoader { } private static void loadSpawnData() { - List spawnEntryList = null; + String[] spawnDataNames = {"Spawns.json", "GadgetSpawns.json"}; + Int2ObjectMap spawnEntryMap = new Int2ObjectOpenHashMap<>(); - // Read from cached file if exists - try(InputStream spawnDataEntries = DataLoader.load("Spawns.json")) { - spawnEntryList = Grasscutter.getGsonFactory().fromJson(new InputStreamReader(spawnDataEntries), TypeToken.getParameterized(Collection.class, SpawnGroupEntry.class).getType()); - } catch (Exception ignored) {} - - if (spawnEntryList == null || spawnEntryList.isEmpty()) { + for (String name : spawnDataNames) { + // Load spawn entries from file + try (InputStream spawnDataEntries = DataLoader.load(name)) { + Type type = TypeToken.getParameterized(Collection.class, SpawnGroupEntry.class).getType(); + List list = Grasscutter.getGsonFactory().fromJson(new InputStreamReader(spawnDataEntries), type); + + // Add spawns to group if it already exists in our spawn group map + for (SpawnGroupEntry group : list) { + if (spawnEntryMap.containsKey(group.getGroupId())) { + spawnEntryMap.get(group.getGroupId()).getSpawns().addAll(group.getSpawns()); + } else { + spawnEntryMap.put(group.getGroupId(), group); + } + } + } catch (Exception ignored) {} + } + + if (spawnEntryMap.isEmpty()) { Grasscutter.getLogger().error("No spawn data loaded!"); return; } - for (SpawnGroupEntry entry : spawnEntryList) { + for (SpawnGroupEntry entry : spawnEntryMap.values()) { entry.getSpawns().forEach(s -> s.setGroup(entry)); GameDepot.getSpawnListById(entry.getSceneId()).insert(entry, entry.getPos().getX(), entry.getPos().getZ()); } diff --git a/src/main/java/emu/grasscutter/game/ability/AbilityManager.java b/src/main/java/emu/grasscutter/game/ability/AbilityManager.java index 0eae4338d..394313ef2 100644 --- a/src/main/java/emu/grasscutter/game/ability/AbilityManager.java +++ b/src/main/java/emu/grasscutter/game/ability/AbilityManager.java @@ -16,8 +16,11 @@ import emu.grasscutter.data.excels.ItemData; import emu.grasscutter.game.avatar.Avatar; import emu.grasscutter.game.entity.EntityAvatar; import emu.grasscutter.game.entity.EntityClientGadget; +import emu.grasscutter.game.entity.EntityGadget; import emu.grasscutter.game.entity.EntityItem; import emu.grasscutter.game.entity.GameEntity; +import emu.grasscutter.game.entity.gadget.GadgetGatherObject; +import emu.grasscutter.game.entity.gadget.GadgetGatherPoint; import emu.grasscutter.game.player.Player; import emu.grasscutter.game.props.ElementType; import emu.grasscutter.net.proto.AbilityActionGenerateElemBallOuterClass.AbilityActionGenerateElemBall; @@ -98,26 +101,36 @@ public class AbilityManager { } private void handleModifierChange(AbilityInvokeEntry invoke) throws Exception { + // Sanity checks GameEntity target = player.getScene().getEntityById(invoke.getEntityId()); if (target == null) { return; } - AbilityInvokeEntryHead head = invoke.getHead(); - if (head == null) { - return; - } - AbilityMetaModifierChange data = AbilityMetaModifierChange.parseFrom(invoke.getAbilityData()); if (data == null) { return; } + // Destroying rocks + if (target instanceof EntityGadget targetGadget && targetGadget.getContent() instanceof GadgetGatherObject gatherObject) { + if (data.getAction() == ModifierAction.REMOVED) { + gatherObject.dropItems(this.getPlayer()); + return; + } + } + + // Sanity checks + AbilityInvokeEntryHead head = invoke.getHead(); + if (head == null) { + return; + } + GameEntity sourceEntity = player.getScene().getEntityById(data.getApplyEntityId()); if (sourceEntity == null) { return; } - + // This is not how it works but we will keep it for now since healing abilities dont work properly anyways if (data.getAction() == ModifierAction.ADDED && data.getParentAbilityName() != null) { // Handle add modifier here @@ -133,6 +146,7 @@ public class AbilityManager { // Add to meta modifier list target.getMetaModifiers().put(head.getInstancedModifierId(), modifierString); } else if (data.getAction() == ModifierAction.REMOVED) { + // Handle remove modifier String modifierString = target.getMetaModifiers().get(head.getInstancedModifierId()); if (modifierString != null) { diff --git a/src/main/java/emu/grasscutter/game/entity/EntityGadget.java b/src/main/java/emu/grasscutter/game/entity/EntityGadget.java index a029ef3a3..2cc7a4b51 100644 --- a/src/main/java/emu/grasscutter/game/entity/EntityGadget.java +++ b/src/main/java/emu/grasscutter/game/entity/EntityGadget.java @@ -8,11 +8,13 @@ import emu.grasscutter.game.props.EntityType; import emu.grasscutter.game.props.LifeState; import emu.grasscutter.game.props.PlayerProperty; import emu.grasscutter.game.world.Scene; +import emu.grasscutter.game.world.SpawnDataEntry; import emu.grasscutter.net.proto.AbilitySyncStateInfoOuterClass.AbilitySyncStateInfo; import emu.grasscutter.net.proto.AnimatorParameterValueInfoPairOuterClass.AnimatorParameterValueInfoPair; import emu.grasscutter.net.proto.EntityAuthorityInfoOuterClass.EntityAuthorityInfo; import emu.grasscutter.net.proto.EntityClientDataOuterClass.EntityClientData; import emu.grasscutter.net.proto.EntityRendererChangedInfoOuterClass.EntityRendererChangedInfo; +import emu.grasscutter.net.proto.FightPropPairOuterClass.FightPropPair; import emu.grasscutter.net.proto.MotionInfoOuterClass.MotionInfo; import emu.grasscutter.net.proto.PropPairOuterClass.PropPair; import emu.grasscutter.net.proto.ProtEntityTypeOuterClass.ProtEntityType; @@ -27,6 +29,7 @@ import emu.grasscutter.server.packet.send.PacketGadgetStateNotify; import emu.grasscutter.server.packet.send.PacketLifeStateChangeNotify; import emu.grasscutter.utils.Position; import emu.grasscutter.utils.ProtoHelper; +import it.unimi.dsi.fastutil.ints.Int2FloatMap; import it.unimi.dsi.fastutil.ints.Int2FloatOpenHashMap; import lombok.ToString; @@ -40,19 +43,24 @@ public class EntityGadget extends EntityBaseGadget { private int state; private int pointType; private GadgetContent content; + private Int2FloatOpenHashMap fightProp; private SceneGadget metaGadget; - - public EntityGadget(Scene scene, int gadgetId, Position pos) { + + public EntityGadget(Scene scene, int gadgetId, Position pos, Position rot) { super(scene); this.data = GameData.getGadgetDataMap().get(gadgetId); this.id = getScene().getWorld().getNextEntityId(EntityIdType.GADGET); this.gadgetId = gadgetId; this.pos = pos.clone(); - this.rot = new Position(); + this.rot = rot != null ? rot.clone() : new Position(); } - - public EntityGadget(Scene scene, int gadgetId, Position pos, GadgetContent content) { - this(scene, gadgetId, pos); + + public EntityGadget(Scene scene, int gadgetId, Position pos) { + this(scene, gadgetId, pos, new Position()); + } + + public EntityGadget(Scene scene, int gadgetId, Position pos, Position rot, GadgetContent content) { + this(scene, gadgetId, pos, rot); this.content = content; } @@ -126,6 +134,7 @@ public class EntityGadget extends EntityBaseGadget { EntityType type = getGadgetData().getType(); GadgetContent content = switch (type) { case GatherPoint -> new GadgetGatherPoint(this); + case GatherObject -> new GadgetGatherObject(this); case Worktop -> new GadgetWorktop(this); case RewardStatue -> new GadgetRewardStatue(this); case Chest -> new GadgetChest(this); @@ -137,7 +146,8 @@ public class EntityGadget extends EntityBaseGadget { @Override public Int2FloatOpenHashMap getFightProperties() { - return null; + if (this.fightProp == null) this.fightProp = new Int2FloatOpenHashMap(); + return this.fightProp; } @Override @@ -148,7 +158,10 @@ public class EntityGadget extends EntityBaseGadget { @Override public void onDeath(int killerId) { - if(getScene().getChallenge() != null){ + if (this.getSpawnEntry() != null) { + this.getScene().getDeadSpawnedEntities().add(getSpawnEntry()); + } + if (getScene().getChallenge() != null) { getScene().getChallenge().onGadgetDeath(this); } getScene().getScriptManager().callEvent(EventType.EVENT_ANY_GADGET_DIE, new ScriptArgs(this.getConfigId())); @@ -178,6 +191,11 @@ public class EntityGadget extends EntityBaseGadget { .build(); entityInfo.addPropList(pair); + // We do not use the getter to null check because the getter will create a fight prop map if it is null + if (this.fightProp != null) { + this.addAllFightPropsToEntityInfo(entityInfo); + } + SceneGadgetInfo.Builder gadgetInfo = SceneGadgetInfo.newBuilder() .setGadgetId(this.getGadgetId()) .setGroupId(this.getGroupId()) diff --git a/src/main/java/emu/grasscutter/game/entity/GameEntity.java b/src/main/java/emu/grasscutter/game/entity/GameEntity.java index b3c7afba1..21d8f8173 100644 --- a/src/main/java/emu/grasscutter/game/entity/GameEntity.java +++ b/src/main/java/emu/grasscutter/game/entity/GameEntity.java @@ -8,12 +8,14 @@ import emu.grasscutter.game.props.LifeState; import emu.grasscutter.game.world.Scene; import emu.grasscutter.game.world.SpawnDataEntry; import emu.grasscutter.game.world.World; +import emu.grasscutter.net.proto.FightPropPairOuterClass.FightPropPair; import emu.grasscutter.net.proto.MotionInfoOuterClass.MotionInfo; import emu.grasscutter.net.proto.MotionStateOuterClass.MotionState; import emu.grasscutter.net.proto.SceneEntityInfoOuterClass.SceneEntityInfo; import emu.grasscutter.net.proto.VectorOuterClass.Vector; import emu.grasscutter.server.packet.send.PacketEntityFightPropUpdateNotify; import emu.grasscutter.utils.Position; +import it.unimi.dsi.fastutil.ints.Int2FloatMap; import it.unimi.dsi.fastutil.ints.Int2FloatOpenHashMap; import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap; @@ -124,6 +126,16 @@ public abstract class GameEntity { return getFightProperties().getOrDefault(prop.getId(), 0f); } + public void addAllFightPropsToEntityInfo(SceneEntityInfo.Builder entityInfo) { + for (Int2FloatMap.Entry entry : getFightProperties().int2FloatEntrySet()) { + if (entry.getIntKey() == 0) { + continue; + } + FightPropPair fightProp = FightPropPair.newBuilder().setPropType(entry.getIntKey()).setPropValue(entry.getFloatValue()).build(); + entityInfo.addFightPropList(fightProp); + } + } + public int getBlockId() { return blockId; } diff --git a/src/main/java/emu/grasscutter/game/entity/gadget/GadgetContent.java b/src/main/java/emu/grasscutter/game/entity/gadget/GadgetContent.java index d47b425aa..54805cb52 100644 --- a/src/main/java/emu/grasscutter/game/entity/gadget/GadgetContent.java +++ b/src/main/java/emu/grasscutter/game/entity/gadget/GadgetContent.java @@ -2,13 +2,12 @@ package emu.grasscutter.game.entity.gadget; import emu.grasscutter.game.entity.EntityGadget; import emu.grasscutter.game.player.Player; -import emu.grasscutter.net.proto.InterOpTypeOuterClass; import emu.grasscutter.net.proto.GadgetInteractReqOuterClass.GadgetInteractReq; import emu.grasscutter.net.proto.SceneGadgetInfoOuterClass.SceneGadgetInfo; public abstract class GadgetContent { private final EntityGadget gadget; - + public GadgetContent(EntityGadget gadget) { this.gadget = gadget; } diff --git a/src/main/java/emu/grasscutter/game/entity/gadget/GadgetGatherObject.java b/src/main/java/emu/grasscutter/game/entity/gadget/GadgetGatherObject.java new file mode 100644 index 000000000..2174112b2 --- /dev/null +++ b/src/main/java/emu/grasscutter/game/entity/gadget/GadgetGatherObject.java @@ -0,0 +1,86 @@ +package emu.grasscutter.game.entity.gadget; + +import emu.grasscutter.data.GameData; +import emu.grasscutter.data.excels.ItemData; +import emu.grasscutter.game.entity.EntityGadget; +import emu.grasscutter.game.entity.EntityItem; +import emu.grasscutter.game.inventory.GameItem; +import emu.grasscutter.game.player.Player; +import emu.grasscutter.game.props.ActionReason; +import emu.grasscutter.game.world.Scene; +import emu.grasscutter.net.proto.GatherGadgetInfoOuterClass.GatherGadgetInfo; +import emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType; +import emu.grasscutter.net.proto.GadgetInteractReqOuterClass.GadgetInteractReq; +import emu.grasscutter.net.proto.SceneGadgetInfoOuterClass.SceneGadgetInfo; +import emu.grasscutter.server.packet.send.PacketGadgetInteractRsp; +import emu.grasscutter.utils.Position; +import emu.grasscutter.utils.Utils; + +public class GadgetGatherObject extends GadgetContent { + private int itemId; + private boolean isForbidGuest; + + public GadgetGatherObject(EntityGadget gadget) { + super(gadget); + + if (gadget.getSpawnEntry() != null) { + this.itemId = gadget.getSpawnEntry().getGatherItemId(); + } + } + + public int getItemId() { + return this.itemId; + } + + public boolean isForbidGuest() { + return isForbidGuest; + } + + public boolean onInteract(Player player, GadgetInteractReq req) { + // Sanity check + ItemData itemData = GameData.getItemDataMap().get(getItemId()); + if (itemData == null) { + return false; + } + + GameItem item = new GameItem(itemData, 1); + player.getInventory().addItem(item, ActionReason.Gather); + + getGadget().getScene().broadcastPacket(new PacketGadgetInteractRsp(getGadget(), InteractType.INTERACT_TYPE_GATHER)); + + return true; + } + + public void onBuildProto(SceneGadgetInfo.Builder gadgetInfo) { + GatherGadgetInfo gatherGadgetInfo = GatherGadgetInfo.newBuilder() + .setItemId(this.getItemId()) + .setIsForbidGuest(this.isForbidGuest()) + .build(); + + gadgetInfo.setGatherGadget(gatherGadgetInfo); + } + + public void dropItems(Player player) { + Scene scene = getGadget().getScene(); + int times = Utils.randomRange(1,2); + + for (int i = 0 ; i < times ; i++) { + EntityItem item = new EntityItem( + scene, + player, + GameData.getItemDataMap().get(itemId), + new Position( + getGadget().getPosition().getX() + (float)Utils.randomRange(1,5) / 5, + getGadget().getPosition().getY() + 2f, + getGadget().getPosition().getZ() + (float)Utils.randomRange(1,5) / 5 + ), + 1, + true); + + scene.addEntity(item); + } + + scene.killEntity(this.getGadget(), player.getTeamManager().getCurrentAvatarEntity().getId()); + // Todo: add record + } +} diff --git a/src/main/java/emu/grasscutter/game/entity/gadget/GadgetGatherPoint.java b/src/main/java/emu/grasscutter/game/entity/gadget/GadgetGatherPoint.java index a5eebe24c..bd1b968c6 100644 --- a/src/main/java/emu/grasscutter/game/entity/gadget/GadgetGatherPoint.java +++ b/src/main/java/emu/grasscutter/game/entity/gadget/GadgetGatherPoint.java @@ -3,31 +3,43 @@ package emu.grasscutter.game.entity.gadget; import emu.grasscutter.data.GameData; import emu.grasscutter.data.excels.GatherData; import emu.grasscutter.game.entity.EntityGadget; +import emu.grasscutter.game.entity.EntityItem; import emu.grasscutter.game.inventory.GameItem; import emu.grasscutter.game.player.Player; import emu.grasscutter.game.props.ActionReason; +import emu.grasscutter.game.world.Scene; import emu.grasscutter.net.proto.GatherGadgetInfoOuterClass.GatherGadgetInfo; import emu.grasscutter.net.proto.GadgetInteractReqOuterClass.GadgetInteractReq; import emu.grasscutter.net.proto.SceneGadgetInfoOuterClass.SceneGadgetInfo; +import emu.grasscutter.utils.Position; +import emu.grasscutter.utils.Utils; public class GadgetGatherPoint extends GadgetContent { - private GatherData gatherData; + private int itemId; + private boolean isForbidGuest; public GadgetGatherPoint(EntityGadget gadget) { super(gadget); - this.gatherData = GameData.getGatherDataMap().get(gadget.getPointType()); - } - - public GatherData getGatherData() { - return gatherData; + + if (gadget.getSpawnEntry() != null) { + this.itemId = gadget.getSpawnEntry().getGatherItemId(); + } else { + GatherData gatherData = GameData.getGatherDataMap().get(gadget.getPointType()); + this.itemId = gatherData.getItemId(); + this.isForbidGuest = gatherData.isForbidGuest(); + } } public int getItemId() { - return getGatherData().getItemId(); + return this.itemId; + } + + public boolean isForbidGuest() { + return isForbidGuest; } public boolean onInteract(Player player, GadgetInteractReq req) { - GameItem item = new GameItem(gatherData.getItemId(), 1); + GameItem item = new GameItem(getItemId(), 1); player.getInventory().addItem(item, ActionReason.Gather); @@ -37,9 +49,33 @@ public class GadgetGatherPoint extends GadgetContent { public void onBuildProto(SceneGadgetInfo.Builder gadgetInfo) { GatherGadgetInfo gatherGadgetInfo = GatherGadgetInfo.newBuilder() .setItemId(this.getItemId()) - .setIsForbidGuest(this.getGatherData().isForbidGuest()) + .setIsForbidGuest(this.isForbidGuest()) .build(); gadgetInfo.setGatherGadget(gatherGadgetInfo); } + + public void dropItems(Player player) { + Scene scene = getGadget().getScene(); + int times = Utils.randomRange(1,2); + + for (int i = 0 ; i < times ; i++) { + EntityItem item = new EntityItem( + scene, + player, + GameData.getItemDataMap().get(itemId), + new Position( + getGadget().getPosition().getX() + (float)Utils.randomRange(1,5) / 5, + getGadget().getPosition().getY() + 2f, + getGadget().getPosition().getZ() + (float)Utils.randomRange(1,5) / 5 + ), + 1, + true); + + scene.addEntity(item); + } + + scene.killEntity(this.getGadget(), player.getTeamManager().getCurrentAvatarEntity().getId()); + // Todo: add record + } } diff --git a/src/main/java/emu/grasscutter/game/managers/collection/CollectionData.java b/src/main/java/emu/grasscutter/game/managers/collection/CollectionData.java new file mode 100644 index 000000000..ee3123283 --- /dev/null +++ b/src/main/java/emu/grasscutter/game/managers/collection/CollectionData.java @@ -0,0 +1,30 @@ +package emu.grasscutter.game.managers.collection; + + +import emu.grasscutter.game.props.FightProperty; +import emu.grasscutter.utils.Position; + +public class CollectionData { + Gadget gadget; + MotionInfo motionInfo; + Prop[] fightPropList; + static class GatherGadget{ + int itemId; + } + static class Gadget{ + int gadgetId; + int authorityPeerId; + int configId; + int groupId; + boolean isEnableInteract; + GatherGadget gatherGadget; + } + static class MotionInfo{ + Position pos; + Position rot; + } + static class Prop{ + int propType; + float propValue; + } +} diff --git a/src/main/java/emu/grasscutter/game/managers/collection/CollectionManager.java b/src/main/java/emu/grasscutter/game/managers/collection/CollectionManager.java new file mode 100644 index 000000000..47f21b459 --- /dev/null +++ b/src/main/java/emu/grasscutter/game/managers/collection/CollectionManager.java @@ -0,0 +1,74 @@ +package emu.grasscutter.game.managers.collection; + +import java.util.HashMap; +import java.util.List; + +import emu.grasscutter.game.entity.EntityGadget; +import emu.grasscutter.game.player.Player; + +public class CollectionManager { + private static final long SECOND = 1000; //1 Second + private static final long MINUTE = SECOND*60; //1 Minute + private static final long HOUR = MINUTE*60; //1 Hour + private static final long DAY = HOUR*24; //1 Day + private static final HashMap DEFINE_REFRESH_TIME = new HashMap<>();// + private static final long DEFAULT_REFRESH_TIME = HOUR*6; // default 6 Hours + + static { + DEFINE_REFRESH_TIME.put(70590027,3*DAY);//星银矿石 3 Days + DEFINE_REFRESH_TIME.put(70590036,3*DAY);//紫晶块 3 Days + DEFINE_REFRESH_TIME.put(70520003,3*DAY);//水晶 3 Days + + DEFINE_REFRESH_TIME.put(70590013,2*DAY);//嘟嘟莲 2 Days + DEFINE_REFRESH_TIME.put(70540029,2*DAY);//清心 2 Days + DEFINE_REFRESH_TIME.put(70540028,2*DAY);//星螺 2 Days + DEFINE_REFRESH_TIME.put(70540027,2*DAY);//马尾 2 Days + DEFINE_REFRESH_TIME.put(70540026,2*DAY);//琉璃袋 2 Days + DEFINE_REFRESH_TIME.put(70540022,2*DAY);//落落莓 2 Days + DEFINE_REFRESH_TIME.put(70540020,2*DAY);//慕风蘑菇 2 Days + DEFINE_REFRESH_TIME.put(70540019,2*DAY);//风车菊 2 Days + DEFINE_REFRESH_TIME.put(70540018,2*DAY);//塞西莉亚花 2 Days + DEFINE_REFRESH_TIME.put(70540015,2*DAY);//霓裳花 2 Days + DEFINE_REFRESH_TIME.put(70540014,2*DAY);//莲蓬 2 Days + DEFINE_REFRESH_TIME.put(70540013,2*DAY);//钩钩果 2 Days + DEFINE_REFRESH_TIME.put(70540012,2*DAY);//琉璃百合 2 Days + DEFINE_REFRESH_TIME.put(70540008,2*DAY);//绝云椒椒 2 Days + DEFINE_REFRESH_TIME.put(70520018,2*DAY);//夜泊石 2 Days + DEFINE_REFRESH_TIME.put(70520002,2*DAY);//白铁矿 2 Days + DEFINE_REFRESH_TIME.put(70510012,2*DAY);//石珀 2 Days + DEFINE_REFRESH_TIME.put(70510009,2*DAY);//蒲公英 2 Days + DEFINE_REFRESH_TIME.put(70510007,2*DAY);//冰雾花 2 Days + DEFINE_REFRESH_TIME.put(70510006,2*DAY);//烈焰花 2 Days + DEFINE_REFRESH_TIME.put(70510005,2*DAY);//电气水晶 2 Days + DEFINE_REFRESH_TIME.put(70510004,2*DAY);//小灯草 2 Days + + + DEFINE_REFRESH_TIME.put(70540021,DAY);//日落果 1 Day + DEFINE_REFRESH_TIME.put(70540005,DAY);//松果 1 Day + DEFINE_REFRESH_TIME.put(70540003,DAY);//苹果 1 Day + DEFINE_REFRESH_TIME.put(70540001,DAY);//树莓 1 Day + DEFINE_REFRESH_TIME.put(70520019,DAY);//魔晶块 1 Days + DEFINE_REFRESH_TIME.put(70520008,DAY);//金鱼草 1 Days + DEFINE_REFRESH_TIME.put(70520007,DAY);//白萝卜 1 Days + DEFINE_REFRESH_TIME.put(70520006,DAY);//胡萝卜 1 Days + DEFINE_REFRESH_TIME.put(70520004,DAY);//蘑菇 1 Day + DEFINE_REFRESH_TIME.put(70520001,DAY);//铁矿 1 Day + + DEFINE_REFRESH_TIME.put(70520009,12*HOUR);//薄荷 12 Hours + DEFINE_REFRESH_TIME.put(70520005,12*HOUR);//甜甜花 12 Hours + } + + private final static HashMap> CollectionResourcesData = new HashMap<>(); + private final HashMap spawnedEntities = new HashMap<>(); + private CollectionRecordStore collectionRecordStore; + Player player; + + private static long getGadgetRefreshTime(int gadgetId){ + return DEFINE_REFRESH_TIME.getOrDefault(gadgetId,DEFAULT_REFRESH_TIME); + } + + public synchronized void setPlayer(Player player) { + this.player = player; + this.collectionRecordStore = player.getCollectionRecordStore(); + } +} diff --git a/src/main/java/emu/grasscutter/game/managers/collection/CollectionRecordStore.java b/src/main/java/emu/grasscutter/game/managers/collection/CollectionRecordStore.java new file mode 100644 index 000000000..be250998d --- /dev/null +++ b/src/main/java/emu/grasscutter/game/managers/collection/CollectionRecordStore.java @@ -0,0 +1,67 @@ +package emu.grasscutter.game.managers.collection; + +import java.util.HashMap; +import java.util.Map; + +import dev.morphia.annotations.Entity; + +@Entity +public class CollectionRecordStore { + private Map records; + + private Map getRecords() { + if (records == null) { + records = new HashMap<>(); + } + return records; + } + + public void addRecord(int configId, long expiredMillisecond){ + Map records; + synchronized (records = getRecords()) { + records.put(configId, new CollectionRecord(configId, expiredMillisecond + System.currentTimeMillis())); + } + } + + public boolean findRecord(int configId) { + Map records; + synchronized (records = getRecords()) { + CollectionRecord record = records.get(configId); + + if (record == null) { + return false; + } + + boolean expired = record.getExpiredTime() < System.currentTimeMillis(); + + if (expired) { + records.remove(configId); + return false; + } + + return true; + } + } + + @Entity + public static class CollectionRecord { + private int configId; + private long expiredTime; + + @Deprecated // Morphia + public CollectionRecord() {} + + public CollectionRecord(int configId, long expiredTime) { + this.configId = configId; + this.expiredTime = expiredTime; + } + + public int getConfigId() { + return configId; + } + + public long getExpiredTime() { + return expiredTime; + } + } +} diff --git a/src/main/java/emu/grasscutter/game/player/Player.java b/src/main/java/emu/grasscutter/game/player/Player.java index 86b8a1fdf..e01b0abcc 100644 --- a/src/main/java/emu/grasscutter/game/player/Player.java +++ b/src/main/java/emu/grasscutter/game/player/Player.java @@ -32,6 +32,8 @@ import emu.grasscutter.game.mail.MailHandler; import emu.grasscutter.game.managers.FurnitureManager; import emu.grasscutter.game.managers.InsectCaptureManager; import emu.grasscutter.game.managers.ResinManager; +import emu.grasscutter.game.managers.collection.CollectionManager; +import emu.grasscutter.game.managers.collection.CollectionRecordStore; import emu.grasscutter.game.managers.deforestation.DeforestationManager; import emu.grasscutter.game.managers.energy.EnergyManager; import emu.grasscutter.game.managers.forging.ActiveForgeData; @@ -42,7 +44,6 @@ import emu.grasscutter.game.managers.SotSManager; import emu.grasscutter.game.props.ActionReason; import emu.grasscutter.game.props.ClimateType; import emu.grasscutter.game.props.PlayerProperty; -import emu.grasscutter.game.props.SceneType; import emu.grasscutter.game.props.WatcherTriggerType; import emu.grasscutter.game.quest.QuestManager; import emu.grasscutter.game.shop.ShopLimit; @@ -62,7 +63,7 @@ import emu.grasscutter.net.proto.OnlinePlayerInfoOuterClass.OnlinePlayerInfo; import emu.grasscutter.net.proto.PlayerLocationInfoOuterClass.PlayerLocationInfo; import emu.grasscutter.net.proto.ProfilePictureOuterClass.ProfilePicture; import emu.grasscutter.net.proto.SocialDetailOuterClass.SocialDetail; - +import emu.grasscutter.net.proto.VisionTypeOuterClass.VisionType; import emu.grasscutter.server.event.player.PlayerJoinEvent; import emu.grasscutter.server.event.player.PlayerQuitEvent; import emu.grasscutter.server.game.GameServer; @@ -183,6 +184,9 @@ public class Player { @Transient private FurnitureManager furnitureManager; @Transient private BattlePassManager battlePassManager; + @Transient private CollectionManager collectionManager; + private CollectionRecordStore collectionRecordStore; + private long springLastUsed; private HashMap mapMarks; private int nextResinRefresh; @@ -216,6 +220,7 @@ public class Player { this.flyCloakList = new HashSet<>(); this.costumeList = new HashSet<>(); this.towerData = new TowerData(); + this.collectionRecordStore = new CollectionRecordStore(); this.unlockedForgingBlueprints = new HashSet<>(); this.unlockedCombines = new HashSet<>(); this.unlockedFurniture = new HashSet<>(); @@ -1098,7 +1103,6 @@ public class Player { } } } else if (entity instanceof EntityGadget gadget) { - if (gadget.getContent() == null) { return; } @@ -1106,7 +1110,7 @@ public class Player { boolean shouldDelete = gadget.getContent().onInteract(this, opType); if (shouldDelete) { - entity.getScene().removeEntity(entity); + entity.getScene().removeEntity(entity, VisionType.VISION_TYPE_REMOVE); } } else if (entity instanceof EntityMonster monster) { insectCaptureManager.arrestSmallCreature(monster); @@ -1306,6 +1310,20 @@ public class Player { return deforestationManager; } + public CollectionManager getCollectionManager() { + if(this.collectionManager==null){ + this.collectionManager = new CollectionManager(); + } + return this.collectionManager; + } + + public CollectionRecordStore getCollectionRecordStore() { + if(this.collectionRecordStore==null){ + this.collectionRecordStore = new CollectionRecordStore(); + } + return collectionRecordStore; + } + public HashMap getMapMarks() { return mapMarks; } public void setMapMarks(HashMap newMarks) { mapMarks = newMarks; } @@ -1432,6 +1450,7 @@ public class Player { } //Make sure towerManager's player is online player this.getTowerManager().setPlayer(this); + this.getCollectionManager().setPlayer(this); // Load from db this.getAvatars().loadFromDatabase(); @@ -1485,7 +1504,6 @@ public class Player { session.send(new PacketCombineDataNotify(this.unlockedCombines)); this.forgingManager.sendForgeDataNotify(); this.resinManager.onPlayerLogin(); - getTodayMoonCard(); // The timer works at 0:0, some users log in after that, use this method to check if they have received a reward today or not. If not, send the reward. // Battle Pass trigger diff --git a/src/main/java/emu/grasscutter/game/world/Scene.java b/src/main/java/emu/grasscutter/game/world/Scene.java index f28568c07..98dc70e03 100644 --- a/src/main/java/emu/grasscutter/game/world/Scene.java +++ b/src/main/java/emu/grasscutter/game/world/Scene.java @@ -217,7 +217,7 @@ public class Scene { getPlayers().add(player); player.setSceneId(this.getId()); player.setScene(this); - + this.setupPlayerAvatars(player); } @@ -428,13 +428,22 @@ public class Scene { } } + public int getEntityLevel(int baseLevel, int worldLevelOverride) { + int level = worldLevelOverride > 0 ? worldLevelOverride + baseLevel - 22 : baseLevel; + level = level >= 100 ? 100 : level; + level = level <= 0 ? 1 : level; + + return level; + } + // TODO - Test - public void checkSpawns() { + public synchronized void checkSpawns() { SpatialIndex list = GameDepot.getSpawnListById(this.getId()); Set visible = new HashSet<>(); - + for (Player player : this.getPlayers()) { int RANGE = 100; + Collection entries = list.query( new double[] {player.getPos().getX() - RANGE, player.getPos().getZ() - RANGE}, new double[] {player.getPos().getX() + RANGE, player.getPos().getZ() + RANGE} @@ -460,29 +469,45 @@ public class Scene { List toRemove = new LinkedList<>(); for (SpawnDataEntry entry : visible) { + // If spawn entry is in our view and hasnt been spawned/killed yet, we should spawn it if (!this.getSpawnedEntities().contains(entry) && !this.getDeadSpawnedEntities().contains(entry)) { - // Spawn entity - MonsterData data = GameData.getMonsterDataMap().get(entry.getMonsterId()); + // Entity object holder + GameEntity entity = null; - if (data == null) { - continue; + // Check if spawn entry is monster or gadget + if (entry.getMonsterId() > 0) { + MonsterData data = GameData.getMonsterDataMap().get(entry.getMonsterId()); + if (data == null) continue; + + int level = this.getEntityLevel(entry.getLevel(), worldLevelOverride); + + EntityMonster monster = new EntityMonster(this, data, entry.getPos(), level); + monster.getRotation().set(entry.getRot()); + monster.setGroupId(entry.getGroup().getGroupId()); + monster.setPoseId(entry.getPoseId()); + monster.setConfigId(entry.getConfigId()); + monster.setSpawnEntry(entry); + + entity = monster; + } else if (entry.getGadgetId() > 0) { + EntityGadget gadget = new EntityGadget(this, entry.getGadgetId(), entry.getPos(), entry.getRot()); + gadget.setGroupId(entry.getGroup().getGroupId()); + gadget.setConfigId(entry.getConfigId()); + gadget.setSpawnEntry(entry); + gadget.buildContent(); + + gadget.setFightProperty(FightProperty.FIGHT_PROP_BASE_HP, 99999); + gadget.setFightProperty(FightProperty.FIGHT_PROP_CUR_HP, 99999); + gadget.setFightProperty(FightProperty.FIGHT_PROP_MAX_HP, 99999); + + entity = gadget; } - int level = worldLevelOverride > 0 ? worldLevelOverride + entry.getLevel() - 22 : entry.getLevel(); - level = level >= 100 ? 100 : level; - level = level <= 0 ? 1 : level; - - EntityMonster entity = new EntityMonster(this, data, entry.getPos(), level); - entity.getRotation().set(entry.getRot()); - entity.setGroupId(entry.getGroup().getGroupId()); - entity.setPoseId(entry.getPoseId()); - entity.setConfigId(entry.getConfigId()); - entity.setSpawnEntry(entry); + if (entity == null) continue; + // Add to scene and spawned list toAdd.add(entity); - - // Add to spawned list - this.getSpawnedEntities().add(entry); + getSpawnedEntities().add(entry); } } diff --git a/src/main/java/emu/grasscutter/game/world/SpawnDataEntry.java b/src/main/java/emu/grasscutter/game/world/SpawnDataEntry.java index 6ef145bde..5a57dbcf7 100644 --- a/src/main/java/emu/grasscutter/game/world/SpawnDataEntry.java +++ b/src/main/java/emu/grasscutter/game/world/SpawnDataEntry.java @@ -1,6 +1,5 @@ package emu.grasscutter.game.world; -import java.util.ArrayList; import java.util.List; import emu.grasscutter.utils.Position; @@ -8,9 +7,11 @@ import emu.grasscutter.utils.Position; public class SpawnDataEntry { private transient SpawnGroupEntry group; private int monsterId; + private int gadgetId; private int configId; private int level; private int poseId; + private int gatherItemId; private Position pos; private Position rot; @@ -26,6 +27,10 @@ public class SpawnDataEntry { return monsterId; } + public int getGadgetId() { + return gadgetId; + } + public int getConfigId() { return configId; } @@ -38,6 +43,10 @@ public class SpawnDataEntry { return poseId; } + public int getGatherItemId() { + return gatherItemId; + } + public Position getPos() { return pos; } diff --git a/src/main/java/emu/grasscutter/server/packet/recv/HandlerAbilityInvocationsNotify.java b/src/main/java/emu/grasscutter/server/packet/recv/HandlerAbilityInvocationsNotify.java index a5d4c7f36..765c5af8c 100644 --- a/src/main/java/emu/grasscutter/server/packet/recv/HandlerAbilityInvocationsNotify.java +++ b/src/main/java/emu/grasscutter/server/packet/recv/HandlerAbilityInvocationsNotify.java @@ -1,12 +1,21 @@ package emu.grasscutter.server.packet.recv; +import emu.grasscutter.game.entity.EntityBaseGadget; +import emu.grasscutter.game.entity.GameEntity; +import emu.grasscutter.game.player.Player; +import emu.grasscutter.game.world.Scene; import emu.grasscutter.net.packet.Opcodes; import emu.grasscutter.net.packet.PacketOpcodes; import emu.grasscutter.net.proto.AbilityInvocationsNotifyOuterClass.AbilityInvocationsNotify; import emu.grasscutter.net.proto.AbilityInvokeEntryOuterClass.AbilityInvokeEntry; import emu.grasscutter.net.packet.PacketHandler; +import emu.grasscutter.net.proto.SceneEntityInfoOuterClass; +import emu.grasscutter.net.proto.VisionTypeOuterClass; import emu.grasscutter.server.game.GameSession; +import emu.grasscutter.server.packet.send.PacketSceneEntityDisappearNotify; +import emu.grasscutter.utils.Position; import emu.grasscutter.utils.Utils; +import it.unimi.dsi.fastutil.ints.Int2FloatOpenHashMap; @Opcodes(PacketOpcodes.AbilityInvocationsNotify) public class HandlerAbilityInvocationsNotify extends PacketHandler { @@ -14,10 +23,11 @@ public class HandlerAbilityInvocationsNotify extends PacketHandler { @Override public void handle(GameSession session, byte[] header, byte[] payload) throws Exception { AbilityInvocationsNotify notif = AbilityInvocationsNotify.parseFrom(payload); - + + Player player = session.getPlayer(); for (AbilityInvokeEntry entry : notif.getInvokesList()) { - session.getPlayer().getAbilityManager().onAbilityInvoke(entry); - session.getPlayer().getAbilityInvokeHandler().addEntry(entry.getForwardType(), entry); + player.getAbilityManager().onAbilityInvoke(entry); + player.getAbilityInvokeHandler().addEntry(entry.getForwardType(), entry); } } diff --git a/src/main/java/emu/grasscutter/server/packet/recv/HandlerClientAbilityInitFinishNotify.java b/src/main/java/emu/grasscutter/server/packet/recv/HandlerClientAbilityInitFinishNotify.java index a1035af85..de87df3f2 100644 --- a/src/main/java/emu/grasscutter/server/packet/recv/HandlerClientAbilityInitFinishNotify.java +++ b/src/main/java/emu/grasscutter/server/packet/recv/HandlerClientAbilityInitFinishNotify.java @@ -1,5 +1,6 @@ package emu.grasscutter.server.packet.recv; +import emu.grasscutter.game.player.Player; import emu.grasscutter.net.packet.Opcodes; import emu.grasscutter.net.packet.PacketOpcodes; import emu.grasscutter.net.proto.AbilityInvokeEntryOuterClass.AbilityInvokeEntry; @@ -14,10 +15,11 @@ public class HandlerClientAbilityInitFinishNotify extends PacketHandler { @Override public void handle(GameSession session, byte[] header, byte[] payload) throws Exception { ClientAbilityInitFinishNotify notif = ClientAbilityInitFinishNotify.parseFrom(payload); - + + Player player = session.getPlayer(); for (AbilityInvokeEntry entry : notif.getInvokesList()) { - session.getPlayer().getAbilityManager().onAbilityInvoke(entry); - session.getPlayer().getClientAbilityInitFinishHandler().addEntry(entry.getForwardType(), entry); + player.getAbilityManager().onAbilityInvoke(entry); + player.getClientAbilityInitFinishHandler().addEntry(entry.getForwardType(), entry); } if (notif.getInvokesList().size() > 0) { diff --git a/src/main/java/emu/grasscutter/server/packet/recv/HandlerCombatInvocationsNotify.java b/src/main/java/emu/grasscutter/server/packet/recv/HandlerCombatInvocationsNotify.java index 6104f4639..e77cbecb7 100644 --- a/src/main/java/emu/grasscutter/server/packet/recv/HandlerCombatInvocationsNotify.java +++ b/src/main/java/emu/grasscutter/server/packet/recv/HandlerCombatInvocationsNotify.java @@ -2,9 +2,12 @@ package emu.grasscutter.server.packet.recv; import emu.grasscutter.Grasscutter; import emu.grasscutter.game.entity.GameEntity; +import emu.grasscutter.game.player.Player; import emu.grasscutter.game.props.FightProperty; import emu.grasscutter.net.packet.Opcodes; import emu.grasscutter.net.packet.PacketOpcodes; +import emu.grasscutter.net.proto.AttackResultOuterClass; +import emu.grasscutter.net.proto.AttackResultOuterClass.AttackResult; import emu.grasscutter.net.proto.CombatInvocationsNotifyOuterClass.CombatInvocationsNotify; import emu.grasscutter.net.proto.CombatInvokeEntryOuterClass.CombatInvokeEntry; import emu.grasscutter.net.proto.EntityMoveInfoOuterClass.EntityMoveInfo; @@ -32,10 +35,13 @@ public class HandlerCombatInvocationsNotify extends PacketHandler { for (CombatInvokeEntry entry : notif.getInvokeListList()) { switch (entry.getArgumentType()) { case COMBAT_TYPE_ARGUMENT_EVT_BEING_HIT: - // Handle damage EvtBeingHitInfo hitInfo = EvtBeingHitInfo.parseFrom(entry.getCombatData()); - session.getPlayer().getAttackResults().add(hitInfo.getAttackResult()); - session.getPlayer().getEnergyManager().handleAttackHit(hitInfo); + AttackResult attackResult = hitInfo.getAttackResult(); + Player player = session.getPlayer(); + + // Handle damage + player.getAttackResults().add(attackResult); + player.getEnergyManager().handleAttackHit(hitInfo); break; case COMBAT_TYPE_ARGUMENT_ENTITY_MOVE: // Handle movement diff --git a/src/main/java/emu/grasscutter/server/packet/send/PacketGadgetInteractRsp.java b/src/main/java/emu/grasscutter/server/packet/send/PacketGadgetInteractRsp.java index 57e5a8412..f274c35f0 100644 --- a/src/main/java/emu/grasscutter/server/packet/send/PacketGadgetInteractRsp.java +++ b/src/main/java/emu/grasscutter/server/packet/send/PacketGadgetInteractRsp.java @@ -5,6 +5,7 @@ import emu.grasscutter.net.packet.BasePacket; import emu.grasscutter.net.packet.PacketOpcodes; import emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp; import emu.grasscutter.net.proto.InterOpTypeOuterClass; +import emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType; import emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType; import emu.grasscutter.net.proto.RetcodeOuterClass; @@ -12,7 +13,8 @@ public class PacketGadgetInteractRsp extends BasePacket { public PacketGadgetInteractRsp(EntityBaseGadget gadget, InteractType interact) { this(gadget, interact, null); } - public PacketGadgetInteractRsp(EntityBaseGadget gadget, InteractType interact, InterOpTypeOuterClass.InterOpType opType) { + + public PacketGadgetInteractRsp(EntityBaseGadget gadget, InteractType interact, InterOpType opType) { super(PacketOpcodes.GadgetInteractRsp); var proto = GadgetInteractRsp.newBuilder() @@ -20,7 +22,7 @@ public class PacketGadgetInteractRsp extends BasePacket { .setInteractType(interact) .setGadgetId(gadget.getGadgetId()); - if(opType != null){ + if (opType != null) { proto.setOpType(opType); } diff --git a/src/main/java/emu/grasscutter/utils/Position.java b/src/main/java/emu/grasscutter/utils/Position.java index cb688a115..627fcf7b9 100644 --- a/src/main/java/emu/grasscutter/utils/Position.java +++ b/src/main/java/emu/grasscutter/utils/Position.java @@ -135,9 +135,20 @@ public class Position implements Serializable { } public boolean equal2d(Position other) { - return getX() == other.getX() && getY() == other.getY(); + // Y is height + return getX() == other.getX() && getZ() == other.getZ(); + } + + public boolean equal3d(Position other) { + return getX() == other.getX() && getY() == other.getY() && getZ() == other.getZ(); + } + + public double computeDistance(Position b){ + double detX = getX()-b.getX(); + double detY = getY()-b.getY(); + double detZ = getZ()-b.getZ(); + return Math.sqrt(detX*detX+detY*detY+detZ*detZ); } - public Position translateWithDegrees(float dist, float angle) { angle = (float) Math.toRadians(angle); this.x += dist * Math.sin(angle); diff --git a/src/main/resources/defaults/data/GadgetSpawns.json b/src/main/resources/defaults/data/GadgetSpawns.json new file mode 100644 index 000000000..e2804b81a --- /dev/null +++ b/src/main/resources/defaults/data/GadgetSpawns.json @@ -0,0 +1 @@ +[{"sceneId":3,"groupId":133008361,"blockId":0,"pos":{"x":1054.398,"y":0.0,"z":-849.053},"spawns":[{"monsterId":0,"gadgetId":70590031,"configId":361002,"level":0,"poseId":0,"gatherItemId":107010,"pos":{"x":1067.362,"y":507.141,"z":-876.528},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590031,"configId":361008,"level":0,"poseId":0,"gatherItemId":107010,"pos":{"x":1041.434,"y":695.868,"z":-821.578},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155005237,"blockId":0,"pos":{"x":361.23297,"y":0.0,"z":98.27241},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":237006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":375.504,"y":228.956,"z":172.955},"rot":{"x":357.872,"y":0.579,"z":352.138}},{"monsterId":0,"gadgetId":70520009,"configId":237008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":361.326,"y":250.12,"z":142.028},"rot":{"x":355.985,"y":0.996,"z":342.597}},{"monsterId":0,"gadgetId":70520009,"configId":237007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":349.111,"y":232.041,"z":125.803},"rot":{"x":353.738,"y":0.639,"z":353.048}},{"monsterId":0,"gadgetId":70520009,"configId":237002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":345.918,"y":179.752,"z":29.32},"rot":{"x":353.288,"y":359.594,"z":6.644}},{"monsterId":0,"gadgetId":70520009,"configId":237001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":374.306,"y":183.42,"z":21.256},"rot":{"x":356.841,"y":359.935,"z":12.601}}]},{"sceneId":3,"groupId":155005236,"blockId":0,"pos":{"x":419.3634,"y":0.0,"z":288.31543},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":236005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":418.953,"y":208.385,"z":380.277},"rot":{"x":33.632,"y":0.0,"z":351.836}},{"monsterId":0,"gadgetId":70520009,"configId":236015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":428.245,"y":210.801,"z":347.195},"rot":{"x":0.0,"y":317.108,"z":352.339}},{"monsterId":0,"gadgetId":70520009,"configId":236008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":428.103,"y":255.85,"z":344.622},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":423.848,"y":252.647,"z":355.792},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":425.937,"y":211.479,"z":364.5},"rot":{"x":0.0,"y":0.0,"z":346.842}},{"monsterId":0,"gadgetId":70520009,"configId":236007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":424.572,"y":248.496,"z":364.235},"rot":{"x":27.571,"y":357.935,"z":351.599}},{"monsterId":0,"gadgetId":70520009,"configId":236014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":418.481,"y":219.006,"z":296.548},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":443.463,"y":216.407,"z":365.57},"rot":{"x":20.211,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":419.564,"y":235.05,"z":264.693},"rot":{"x":346.177,"y":358.598,"z":11.526}},{"monsterId":0,"gadgetId":70520009,"configId":236010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":427.601,"y":237.543,"z":259.512},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":410.121,"y":244.81,"z":239.862},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":376.316,"y":180.915,"z":209.457},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":368.138,"y":193.029,"z":202.343},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":399.178,"y":242.46,"z":215.699},"rot":{"x":0.0,"y":300.913,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":454.112,"y":208.004,"z":200.111},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":443.182,"y":209.467,"z":202.631},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133217274,"blockId":0,"pos":{"x":-4573.7876,"y":0.0,"z":-4122.352},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":274011,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4601.908,"y":199.15,"z":-4135.382},"rot":{"x":0.0,"y":44.528,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":274012,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4607.933,"y":199.023,"z":-4124.665},"rot":{"x":0.0,"y":213.245,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":274010,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4575.845,"y":199.533,"z":-4124.988},"rot":{"x":0.0,"y":197.194,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":274009,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4571.757,"y":199.139,"z":-4118.607},"rot":{"x":0.0,"y":331.418,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":274008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4540.588,"y":201.77,"z":-4115.052},"rot":{"x":0.0,"y":253.86,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":274007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4544.691,"y":201.723,"z":-4115.417},"rot":{"x":0.0,"y":39.297,"z":0.0}}]},{"sceneId":3,"groupId":133212155,"blockId":0,"pos":{"x":-3708.3845,"y":0.0,"z":-2182.172},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":155024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3738.455,"y":249.749,"z":-2301.064},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":155057,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3775.287,"y":236.796,"z":-2274.926},"rot":{"x":13.007,"y":358.886,"z":350.247}},{"monsterId":0,"gadgetId":70520005,"configId":155021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3789.727,"y":257.871,"z":-2290.188},"rot":{"x":0.0,"y":201.126,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":155053,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3783.922,"y":237.459,"z":-2273.42},"rot":{"x":30.591,"y":358.534,"z":354.644}},{"monsterId":0,"gadgetId":70590036,"configId":155055,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3765.853,"y":236.952,"z":-2276.426},"rot":{"x":0.0,"y":266.667,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3748.174,"y":237.535,"z":-2274.821},"rot":{"x":0.0,"y":328.151,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3748.302,"y":237.123,"z":-2275.246},"rot":{"x":0.0,"y":328.151,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3748.653,"y":236.837,"z":-2274.525},"rot":{"x":0.0,"y":328.151,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":155056,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3767.388,"y":236.099,"z":-2271.613},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":155054,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3761.093,"y":236.189,"z":-2271.823},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3686.049,"y":237.873,"z":-2269.916},"rot":{"x":0.0,"y":252.51,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3668.316,"y":223.222,"z":-2266.564},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3664.925,"y":223.08,"z":-2262.333},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3670.2,"y":223.217,"z":-2260.695},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3819.635,"y":253.047,"z":-2240.337},"rot":{"x":0.0,"y":148.848,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3710.477,"y":245.178,"z":-2237.852},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":155019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3737.155,"y":235.875,"z":-2203.335},"rot":{"x":0.0,"y":55.197,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":155059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3740.351,"y":241.457,"z":-2179.955},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3626.042,"y":243.032,"z":-2081.913},"rot":{"x":0.0,"y":40.778,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3836.43,"y":202.303,"z":-2081.083},"rot":{"x":0.0,"y":206.092,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3836.003,"y":201.891,"z":-2080.966},"rot":{"x":0.0,"y":206.092,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3836.427,"y":201.605,"z":-2081.646},"rot":{"x":0.0,"y":206.092,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3813.435,"y":201.103,"z":-2125.761},"rot":{"x":0.0,"y":126.722,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3776.214,"y":227.697,"z":-2091.898},"rot":{"x":0.0,"y":88.37,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3746.972,"y":226.835,"z":-2100.722},"rot":{"x":0.0,"y":170.464,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3746.692,"y":226.423,"z":-2100.377},"rot":{"x":0.0,"y":170.464,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3746.641,"y":226.137,"z":-2101.177},"rot":{"x":0.0,"y":170.464,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":155022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3642.47,"y":202.626,"z":-2280.157},"rot":{"x":0.0,"y":343.437,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3611.73,"y":244.804,"z":-2272.835},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3613.762,"y":245.98,"z":-2262.6},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3613.407,"y":244.992,"z":-2268.865},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3620.59,"y":251.407,"z":-2241.739},"rot":{"x":0.0,"y":47.399,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3650.569,"y":235.965,"z":-2196.558},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3651.365,"y":236.143,"z":-2194.98},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":155063,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-3645.008,"y":253.311,"z":-2182.437},"rot":{"x":355.134,"y":60.0,"z":23.568}},{"monsterId":0,"gadgetId":70540001,"configId":155038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3597.287,"y":252.793,"z":-2179.239},"rot":{"x":0.0,"y":160.166,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3596.88,"y":252.095,"z":-2179.628},"rot":{"x":0.0,"y":160.166,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3597.073,"y":252.381,"z":-2178.85},"rot":{"x":0.0,"y":160.166,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3697.991,"y":237.078,"z":-2175.757},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":155047,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3658.468,"y":221.969,"z":-2214.72},"rot":{"x":356.389,"y":252.444,"z":30.95}},{"monsterId":0,"gadgetId":70520005,"configId":155003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3699.944,"y":230.395,"z":-2152.944},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155066,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3631.549,"y":248.66,"z":-2163.557},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155065,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3631.467,"y":248.374,"z":-2162.76},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155067,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3631.216,"y":249.072,"z":-2163.264},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3610.29,"y":264.356,"z":-2152.295},"rot":{"x":0.0,"y":209.049,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3729.015,"y":242.99,"z":-2124.216},"rot":{"x":0.0,"y":205.579,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3669.002,"y":247.354,"z":-2130.659},"rot":{"x":0.0,"y":311.167,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":155049,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3696.717,"y":202.928,"z":-2169.771},"rot":{"x":349.916,"y":248.659,"z":351.362}},{"monsterId":0,"gadgetId":70590036,"configId":155052,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3764.369,"y":235.174,"z":-2124.562},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":155051,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3764.291,"y":231.962,"z":-2117.131},"rot":{"x":18.717,"y":358.389,"z":350.247}},{"monsterId":0,"gadgetId":70520005,"configId":155026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3759.853,"y":245.393,"z":-2115.56},"rot":{"x":0.0,"y":312.269,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":155050,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3763.181,"y":233.623,"z":-2120.32},"rot":{"x":30.393,"y":356.183,"z":346.014}},{"monsterId":0,"gadgetId":70520005,"configId":155014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3674.379,"y":227.773,"z":-2077.751},"rot":{"x":0.0,"y":20.953,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":155048,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3675.833,"y":225.204,"z":-2130.436},"rot":{"x":349.929,"y":248.662,"z":29.435}},{"monsterId":0,"gadgetId":70540004,"configId":155062,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3790.593,"y":245.428,"z":-2163.099},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":155061,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3790.593,"y":245.428,"z":-2163.291},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":155011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3789.333,"y":239.296,"z":-2168.175},"rot":{"x":0.0,"y":163.19,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3648.872,"y":236.427,"z":-2050.564},"rot":{"x":0.0,"y":150.23,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3648.728,"y":236.015,"z":-2050.144},"rot":{"x":0.0,"y":150.23,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":155028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3648.404,"y":235.729,"z":-2050.876},"rot":{"x":0.0,"y":150.23,"z":0.0}}]},{"sceneId":3,"groupId":155005233,"blockId":0,"pos":{"x":318.11426,"y":0.0,"z":165.37851},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":233007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":353.924,"y":332.616,"z":197.192},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":233005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":317.574,"y":337.299,"z":185.296},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":233006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":322.047,"y":335.831,"z":134.467},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":233001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":283.853,"y":343.132,"z":125.469},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":233004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":297.117,"y":336.991,"z":145.518},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":233003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":297.153,"y":337.972,"z":163.732},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":233002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":276.981,"y":339.745,"z":147.767},"rot":{"x":0.0,"y":0.0,"z":342.645}},{"monsterId":0,"gadgetId":70520009,"configId":233008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":396.265,"y":307.43,"z":223.587},"rot":{"x":357.616,"y":0.04,"z":358.094}}]},{"sceneId":3,"groupId":155005232,"blockId":0,"pos":{"x":204.3265,"y":0.0,"z":170.92424},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":232007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":255.065,"y":346.133,"z":129.305},"rot":{"x":16.122,"y":1.876,"z":13.191}},{"monsterId":0,"gadgetId":70520009,"configId":232006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":248.812,"y":341.424,"z":160.927},"rot":{"x":358.215,"y":0.07,"z":355.533}},{"monsterId":0,"gadgetId":70520009,"configId":232008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":232.778,"y":345.684,"z":117.52},"rot":{"x":356.601,"y":359.457,"z":18.167}},{"monsterId":0,"gadgetId":70520009,"configId":232005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":220.218,"y":341.031,"z":155.443},"rot":{"x":12.1,"y":1.221,"z":11.483}},{"monsterId":0,"gadgetId":70520009,"configId":232004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":196.979,"y":330.243,"z":197.51},"rot":{"x":11.461,"y":0.359,"z":3.577}},{"monsterId":0,"gadgetId":70520009,"configId":232002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":175.976,"y":323.75,"z":194.715},"rot":{"x":17.963,"y":1.407,"z":8.881}},{"monsterId":0,"gadgetId":70520009,"configId":232003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":136.488,"y":302.481,"z":186.675},"rot":{"x":5.921,"y":0.342,"z":6.602}},{"monsterId":0,"gadgetId":70520009,"configId":232001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":168.296,"y":315.866,"z":225.299},"rot":{"x":10.575,"y":0.496,"z":5.356}}]},{"sceneId":3,"groupId":155005231,"blockId":0,"pos":{"x":161.72063,"y":0.0,"z":327.2663},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":231007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":230.948,"y":325.934,"z":306.854},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":229.125,"y":268.924,"z":394.541},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":182.376,"y":317.684,"z":263.965},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":190.329,"y":314.975,"z":301.354},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":184.296,"y":303.715,"z":322.602},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":136.033,"y":304.378,"z":258.394},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":149.63,"y":312.382,"z":261.985},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":118.694,"y":304.34,"z":286.597},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":147.185,"y":303.947,"z":315.992},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":89.558,"y":244.503,"z":339.028},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":103.815,"y":258.134,"z":371.174},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":132.481,"y":260.351,"z":386.4},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":172.181,"y":265.295,"z":385.975},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":231005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":197.438,"y":267.466,"z":386.867},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133212135,"blockId":0,"pos":{"x":-3854.279,"y":0.0,"z":-2181.927},"spawns":[{"monsterId":0,"gadgetId":70290129,"configId":135001,"level":0,"poseId":0,"gatherItemId":100960,"pos":{"x":-3854.279,"y":209.807,"z":-2181.927},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133222353,"blockId":0,"pos":{"x":-4850.1704,"y":0.0,"z":-4732.616},"spawns":[{"monsterId":0,"gadgetId":70520033,"configId":353002,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4850.914,"y":205.266,"z":-4726.778},"rot":{"x":0.0,"y":35.624,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":353001,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4849.427,"y":201.172,"z":-4738.454},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001095,"blockId":0,"pos":{"x":773.003,"y":0.0,"z":449.438},"spawns":[{"monsterId":0,"gadgetId":70520038,"configId":95008,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":773.003,"y":705.288,"z":449.438},"rot":{"x":0.0,"y":168.896,"z":0.0}}]},{"sceneId":3,"groupId":133008329,"blockId":0,"pos":{"x":956.117,"y":0.0,"z":-411.948},"spawns":[{"monsterId":0,"gadgetId":71700180,"configId":329006,"level":0,"poseId":0,"gatherItemId":100706,"pos":{"x":956.117,"y":291.983,"z":-411.948},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133222356,"blockId":0,"pos":{"x":-4348.421,"y":0.0,"z":-4208.034},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":356002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4349.439,"y":207.266,"z":-4208.133},"rot":{"x":0.0,"y":274.492,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":356001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4347.403,"y":206.995,"z":-4207.935},"rot":{"x":0.0,"y":308.177,"z":0.0}}]},{"sceneId":3,"groupId":133103562,"blockId":0,"pos":{"x":714.2631,"y":0.0,"z":1368.1304},"spawns":[{"monsterId":0,"gadgetId":70510012,"configId":562004,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":628.542,"y":262.8,"z":1475.484},"rot":{"x":4.459,"y":0.139,"z":3.577}},{"monsterId":0,"gadgetId":70510012,"configId":562012,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":523.159,"y":172.426,"z":1104.852},"rot":{"x":350.853,"y":159.833,"z":333.214}},{"monsterId":0,"gadgetId":70510012,"configId":562011,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":525.165,"y":173.204,"z":1108.029},"rot":{"x":31.824,"y":212.142,"z":334.499}},{"monsterId":0,"gadgetId":70510012,"configId":562003,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":629.973,"y":261.863,"z":1479.38},"rot":{"x":13.116,"y":0.718,"z":6.242}},{"monsterId":0,"gadgetId":70510012,"configId":562008,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":988.067,"y":271.284,"z":1520.803},"rot":{"x":5.894,"y":17.783,"z":12.726}},{"monsterId":0,"gadgetId":70510012,"configId":562007,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":990.673,"y":270.756,"z":1520.234},"rot":{"x":0.0,"y":251.762,"z":0.0}}]},{"sceneId":3,"groupId":133103563,"blockId":0,"pos":{"x":675.9115,"y":0.0,"z":1479.672},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":563003,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":810.872,"y":255.815,"z":1270.235},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":563004,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":540.951,"y":230.831,"z":1689.109},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133210069,"blockId":0,"pos":{"x":-4025.2131,"y":0.0,"z":-629.54175},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":69002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4015.665,"y":205.843,"z":-633.322},"rot":{"x":2.76,"y":195.328,"z":350.298}},{"monsterId":0,"gadgetId":70590036,"configId":69001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4008.466,"y":207.19,"z":-633.024},"rot":{"x":357.286,"y":143.311,"z":347.878}},{"monsterId":0,"gadgetId":70590036,"configId":69004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4041.769,"y":200.443,"z":-624.867},"rot":{"x":3.995,"y":305.919,"z":353.001}},{"monsterId":0,"gadgetId":70590036,"configId":69003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4034.952,"y":200.67,"z":-626.954},"rot":{"x":348.704,"y":152.362,"z":8.78}}]},{"sceneId":3,"groupId":133103561,"blockId":0,"pos":{"x":717.4084,"y":0.0,"z":1601.3483},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":561002,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":740.525,"y":228.588,"z":1347.532},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":561004,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":806.685,"y":336.114,"z":1853.375},"rot":{"x":0.0,"y":284.551,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":561008,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":605.015,"y":237.379,"z":1603.138},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133209049,"blockId":0,"pos":{"x":-2540.6536,"y":0.0,"z":-3679.4045},"spawns":[{"monsterId":0,"gadgetId":70520026,"configId":49002,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2540.433,"y":202.767,"z":-3680.344},"rot":{"x":358.28,"y":263.363,"z":101.696}},{"monsterId":0,"gadgetId":70520026,"configId":49001,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2540.874,"y":202.742,"z":-3678.465},"rot":{"x":0.0,"y":0.0,"z":267.551}}]},{"sceneId":3,"groupId":133209050,"blockId":0,"pos":{"x":-2589.05,"y":0.0,"z":-3744.074},"spawns":[{"monsterId":0,"gadgetId":70520026,"configId":50001,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2589.05,"y":203.073,"z":-3744.074},"rot":{"x":271.741,"y":290.082,"z":201.107}}]},{"sceneId":3,"groupId":133004230,"blockId":0,"pos":{"x":2477.5632,"y":0.0,"z":-417.225},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":1337,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2477.583,"y":211.548,"z":-415.306},"rot":{"x":0.0,"y":257.088,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":1336,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2477.477,"y":211.531,"z":-419.042},"rot":{"x":0.0,"y":87.575,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":1335,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2479.53,"y":211.632,"z":-417.308},"rot":{"x":0.0,"y":287.017,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":1334,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2475.663,"y":211.451,"z":-417.244},"rot":{"x":0.0,"y":151.344,"z":0.0}}]},{"sceneId":3,"groupId":133210076,"blockId":0,"pos":{"x":-3918.8904,"y":0.0,"z":-1047.9425},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":76003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3914.186,"y":152.803,"z":-1054.446},"rot":{"x":10.194,"y":1.124,"z":12.551}},{"monsterId":0,"gadgetId":70590036,"configId":76007,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3916.679,"y":151.799,"z":-1051.554},"rot":{"x":2.591,"y":237.396,"z":346.784}},{"monsterId":0,"gadgetId":70520001,"configId":76006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3929.067,"y":148.693,"z":-1043.067},"rot":{"x":348.461,"y":186.393,"z":350.26}},{"monsterId":0,"gadgetId":70520001,"configId":76005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3915.371,"y":149.537,"z":-1041.869},"rot":{"x":356.492,"y":74.248,"z":16.259}},{"monsterId":0,"gadgetId":70520001,"configId":76004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3920.385,"y":150.866,"z":-1049.617},"rot":{"x":353.135,"y":263.575,"z":347.668}},{"monsterId":0,"gadgetId":70520001,"configId":76001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3925.476,"y":150.562,"z":-1046.387},"rot":{"x":348.573,"y":251.664,"z":346.087}},{"monsterId":0,"gadgetId":70520001,"configId":76002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3911.068,"y":152.455,"z":-1048.658},"rot":{"x":350.121,"y":76.132,"z":12.376}}]},{"sceneId":3,"groupId":133209053,"blockId":0,"pos":{"x":-2990.0815,"y":0.0,"z":-3225.4255},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":53005,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-2993.106,"y":202.244,"z":-3234.188},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":53009,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-2998.736,"y":203.61,"z":-3212.81},"rot":{"x":6.259,"y":358.399,"z":331.325}},{"monsterId":0,"gadgetId":70520030,"configId":53012,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-2995.387,"y":202.86,"z":-3200.808},"rot":{"x":348.679,"y":359.031,"z":9.753}},{"monsterId":0,"gadgetId":70520030,"configId":53011,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3001.634,"y":203.227,"z":-3209.466},"rot":{"x":19.768,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":53002,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-2976.392,"y":200.155,"z":-3262.435},"rot":{"x":359.108,"y":0.049,"z":356.423}},{"monsterId":0,"gadgetId":70520007,"configId":53008,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":-2981.406,"y":200.874,"z":-3237.31},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":53006,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-2990.953,"y":201.927,"z":-3233.025},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":53007,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":-2981.915,"y":200.943,"z":-3235.633},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":53010,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-2991.207,"y":202.892,"z":-3203.155},"rot":{"x":346.022,"y":359.343,"z":5.356}}]},{"sceneId":3,"groupId":155006221,"blockId":0,"pos":{"x":214.48232,"y":0.0,"z":-342.5427},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":221002,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":213.636,"y":230.17,"z":-342.54},"rot":{"x":0.0,"y":254.912,"z":34.702}},{"monsterId":0,"gadgetId":70520002,"configId":221001,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":215.37,"y":230.075,"z":-342.365},"rot":{"x":23.738,"y":348.962,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":221003,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":214.441,"y":230.204,"z":-342.723},"rot":{"x":11.333,"y":6.185,"z":0.0}}]},{"sceneId":3,"groupId":133210048,"blockId":0,"pos":{"x":-3639.138,"y":0.0,"z":-920.88324},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":48006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3639.369,"y":165.004,"z":-917.803},"rot":{"x":346.283,"y":90.025,"z":7.081}},{"monsterId":0,"gadgetId":70520001,"configId":48005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3643.062,"y":165.957,"z":-927.628},"rot":{"x":0.536,"y":85.484,"z":4.707}},{"monsterId":0,"gadgetId":70590036,"configId":48001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3639.966,"y":165.979,"z":-924.421},"rot":{"x":6.51,"y":274.916,"z":357.294}},{"monsterId":0,"gadgetId":70590036,"configId":48002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3645.518,"y":166.113,"z":-931.1},"rot":{"x":356.333,"y":118.976,"z":359.734}},{"monsterId":0,"gadgetId":70520001,"configId":48004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3633.833,"y":165.779,"z":-915.98},"rot":{"x":7.917,"y":277.556,"z":355.769}},{"monsterId":0,"gadgetId":70590036,"configId":48003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3633.081,"y":160.547,"z":-908.367},"rot":{"x":12.256,"y":2.414,"z":353.367}}]},{"sceneId":3,"groupId":133212096,"blockId":0,"pos":{"x":-3718.0815,"y":0.0,"z":-2669.8938},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":96001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3798.559,"y":217.493,"z":-2562.504},"rot":{"x":0.0,"y":312.02,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":96009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3796.322,"y":215.907,"z":-2583.203},"rot":{"x":0.0,"y":25.63,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":96008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3796.749,"y":215.495,"z":-2583.323},"rot":{"x":0.0,"y":25.63,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":96007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3796.33,"y":215.209,"z":-2582.64},"rot":{"x":0.0,"y":25.63,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":96026,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3827.015,"y":198.539,"z":-2668.534},"rot":{"x":0.0,"y":256.473,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":96025,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3814.527,"y":199.067,"z":-2664.376},"rot":{"x":0.0,"y":240.101,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":96024,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3796.043,"y":198.608,"z":-2669.844},"rot":{"x":0.0,"y":284.102,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":96023,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3810.043,"y":199.349,"z":-2663.533},"rot":{"x":0.0,"y":272.848,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":96015,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3750.371,"y":198.635,"z":-2600.823},"rot":{"x":0.0,"y":138.87,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":96016,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3748.879,"y":198.66,"z":-2587.328},"rot":{"x":0.0,"y":243.57,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":96014,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3744.133,"y":198.418,"z":-2585.507},"rot":{"x":0.0,"y":37.62,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":96029,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3798.372,"y":200.0,"z":-2747.611},"rot":{"x":0.0,"y":242.262,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":96019,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3611.999,"y":199.178,"z":-2785.354},"rot":{"x":0.0,"y":168.8,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":96020,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3601.052,"y":198.206,"z":-2760.599},"rot":{"x":0.0,"y":267.13,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":96033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3649.072,"y":200.38,"z":-2741.23},"rot":{"x":0.0,"y":89.2,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":96032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3649.917,"y":200.3,"z":-2747.943},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":96031,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3646.226,"y":200.659,"z":-2736.548},"rot":{"x":0.893,"y":0.025,"z":4.467}},{"monsterId":0,"gadgetId":70520030,"configId":96022,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3630.565,"y":200.384,"z":-2736.841},"rot":{"x":0.0,"y":332.44,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":96004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3636.375,"y":200.586,"z":-2731.853},"rot":{"x":0.0,"y":92.726,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":96035,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3593.157,"y":200.127,"z":-2708.685},"rot":{"x":2.683,"y":0.042,"z":1.79}},{"monsterId":0,"gadgetId":70520030,"configId":96021,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3584.011,"y":201.02,"z":-2619.497},"rot":{"x":0.0,"y":260.42,"z":0.0}}]},{"sceneId":3,"groupId":155006220,"blockId":0,"pos":{"x":131.819,"y":0.0,"z":-332.9595},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":220006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":133.272,"y":195.386,"z":-330.345},"rot":{"x":13.589,"y":334.308,"z":1.046}},{"monsterId":0,"gadgetId":70590036,"configId":220005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":130.366,"y":196.741,"z":-335.574},"rot":{"x":347.1,"y":121.342,"z":3.884}}]},{"sceneId":3,"groupId":133212098,"blockId":0,"pos":{"x":-4131.6377,"y":0.0,"z":-2337.8274},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":98014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4113.732,"y":252.649,"z":-2320.908},"rot":{"x":0.0,"y":200.956,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":98008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4141.277,"y":202.37,"z":-2358.106},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":98007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4141.61,"y":201.958,"z":-2358.399},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":98006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4141.528,"y":201.672,"z":-2357.602},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":98015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4119.838,"y":201.412,"z":-2353.699},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":98004,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4126.559,"y":249.212,"z":-2362.781},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":98003,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4125.732,"y":248.932,"z":-2365.173},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":98002,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4127.673,"y":247.922,"z":-2363.448},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":98011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4174.036,"y":223.114,"z":-2266.329},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":98012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4104.389,"y":211.399,"z":-2271.828},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155006222,"blockId":0,"pos":{"x":542.4233,"y":0.0,"z":-361.74127},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":222003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":562.255,"y":171.428,"z":-392.423},"rot":{"x":346.552,"y":92.414,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":222002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":562.119,"y":171.51,"z":-397.243},"rot":{"x":39.186,"y":354.824,"z":48.856}},{"monsterId":0,"gadgetId":70590036,"configId":222007,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":506.101,"y":133.954,"z":-345.223},"rot":{"x":10.6,"y":325.771,"z":347.393}},{"monsterId":0,"gadgetId":70590036,"configId":222005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":539.218,"y":140.162,"z":-312.076},"rot":{"x":27.751,"y":303.419,"z":8.507}}]},{"sceneId":3,"groupId":133106652,"blockId":0,"pos":{"x":-788.31934,"y":0.0,"z":1856.111},"spawns":[{"monsterId":0,"gadgetId":70540029,"configId":652004,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-793.078,"y":101.91,"z":1856.787},"rot":{"x":352.371,"y":7.045,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":652003,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-792.842,"y":101.93,"z":1854.879},"rot":{"x":0.0,"y":78.997,"z":8.084}},{"monsterId":0,"gadgetId":70540029,"configId":652007,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-779.038,"y":112.845,"z":1856.667},"rot":{"x":340.334,"y":356.54,"z":74.944}}]},{"sceneId":3,"groupId":133209027,"blockId":0,"pos":{"x":-2680.3303,"y":0.0,"z":-4037.6309},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":27037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2666.116,"y":206.603,"z":-4073.884},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2651.679,"y":210.591,"z":-4083.252},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":27044,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2560.132,"y":202.006,"z":-4086.172},"rot":{"x":13.03,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":27040,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2566.08,"y":202.563,"z":-4084.755},"rot":{"x":38.551,"y":344.737,"z":330.581}},{"monsterId":0,"gadgetId":70510005,"configId":27042,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2564.423,"y":202.773,"z":-4085.578},"rot":{"x":7.135,"y":46.231,"z":7.391}},{"monsterId":0,"gadgetId":70520009,"configId":27045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2606.918,"y":219.941,"z":-3874.477},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":27024,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2622.395,"y":198.856,"z":-3900.428},"rot":{"x":0.0,"y":196.875,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":27023,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2612.734,"y":198.806,"z":-3897.491},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":27022,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2601.205,"y":199.91,"z":-3942.592},"rot":{"x":0.0,"y":197.305,"z":15.114}},{"monsterId":0,"gadgetId":70520029,"configId":27020,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2595.858,"y":198.845,"z":-3938.836},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":27001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2604.459,"y":200.309,"z":-3937.904},"rot":{"x":0.0,"y":53.598,"z":14.058}},{"monsterId":0,"gadgetId":70540001,"configId":27014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2760.568,"y":208.038,"z":-4068.714},"rot":{"x":0.0,"y":17.915,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2760.975,"y":207.626,"z":-4068.89},"rot":{"x":0.0,"y":17.915,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2760.652,"y":207.34,"z":-4068.157},"rot":{"x":0.0,"y":17.915,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":27030,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2798.928,"y":209.796,"z":-4079.074},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":27031,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2796.987,"y":210.806,"z":-4080.799},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":27032,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2797.814,"y":211.086,"z":-4078.407},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":27034,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2803.578,"y":215.049,"z":-4040.073},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":27035,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2801.637,"y":216.059,"z":-4041.798},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":27036,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2802.464,"y":216.339,"z":-4039.406},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":27028,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2774.079,"y":215.39,"z":-4089.209},"rot":{"x":294.28,"y":189.96,"z":94.884}},{"monsterId":0,"gadgetId":70520026,"configId":27008,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2683.233,"y":209.035,"z":-4038.791},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":27007,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2682.406,"y":208.755,"z":-4041.183},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":27006,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2684.347,"y":207.745,"z":-4039.458},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2624.284,"y":200.258,"z":-4040.316},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":27010,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-2595.986,"y":199.419,"z":-4032.415},"rot":{"x":0.0,"y":308.145,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":27009,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-2587.007,"y":199.057,"z":-4043.622},"rot":{"x":0.0,"y":46.121,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2690.488,"y":206.467,"z":-4095.035},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2677.604,"y":207.379,"z":-4092.339},"rot":{"x":0.0,"y":339.062,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2677.397,"y":207.791,"z":-4091.946},"rot":{"x":0.0,"y":339.062,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2677.812,"y":207.093,"z":-4091.565},"rot":{"x":0.0,"y":339.062,"z":0.0}}]},{"sceneId":3,"groupId":155006217,"blockId":0,"pos":{"x":339.59323,"y":0.0,"z":-246.36064},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":217034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":390.518,"y":168.25,"z":-186.95},"rot":{"x":335.851,"y":337.129,"z":7.633}},{"monsterId":0,"gadgetId":70520001,"configId":217033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":389.848,"y":168.125,"z":-186.338},"rot":{"x":330.799,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":217032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":390.442,"y":168.25,"z":-186.106},"rot":{"x":357.976,"y":53.098,"z":353.435}},{"monsterId":0,"gadgetId":70520001,"configId":217031,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":362.872,"y":165.451,"z":-216.637},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":217030,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":363.039,"y":165.516,"z":-215.993},"rot":{"x":8.34,"y":52.129,"z":353.564}},{"monsterId":0,"gadgetId":70520001,"configId":217003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":360.817,"y":165.219,"z":-218.971},"rot":{"x":2.27,"y":37.955,"z":359.889}},{"monsterId":0,"gadgetId":70520001,"configId":217002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":360.614,"y":165.46,"z":-219.451},"rot":{"x":15.904,"y":134.542,"z":2.131}},{"monsterId":0,"gadgetId":70520001,"configId":217012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":377.558,"y":163.637,"z":-192.793},"rot":{"x":26.876,"y":326.986,"z":18.174}},{"monsterId":0,"gadgetId":70520001,"configId":217011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":377.809,"y":164.111,"z":-189.381},"rot":{"x":340.354,"y":81.769,"z":5.774}},{"monsterId":0,"gadgetId":70520001,"configId":217009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":377.495,"y":163.894,"z":-188.882},"rot":{"x":355.886,"y":254.21,"z":345.763}},{"monsterId":0,"gadgetId":70520001,"configId":217008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":377.742,"y":163.75,"z":-192.406},"rot":{"x":20.617,"y":344.695,"z":17.146}},{"monsterId":0,"gadgetId":70520001,"configId":217010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":377.269,"y":163.125,"z":-193.662},"rot":{"x":0.0,"y":0.0,"z":21.766}},{"monsterId":0,"gadgetId":70520001,"configId":217007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":298.237,"y":162.302,"z":-326.249},"rot":{"x":341.005,"y":8.462,"z":334.268}},{"monsterId":0,"gadgetId":70520001,"configId":217001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":299.376,"y":161.572,"z":-320.505},"rot":{"x":0.0,"y":14.967,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":217005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":298.276,"y":162.341,"z":-327.194},"rot":{"x":353.897,"y":308.792,"z":329.805}},{"monsterId":0,"gadgetId":70520001,"configId":217006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":299.289,"y":161.555,"z":-319.867},"rot":{"x":356.376,"y":309.968,"z":347.421}},{"monsterId":0,"gadgetId":70520001,"configId":217004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":299.115,"y":161.355,"z":-319.324},"rot":{"x":334.628,"y":255.302,"z":337.65}},{"monsterId":0,"gadgetId":70520001,"configId":217019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":226.256,"y":221.695,"z":-340.425},"rot":{"x":0.0,"y":0.0,"z":338.901}},{"monsterId":0,"gadgetId":70520001,"configId":217018,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":225.699,"y":221.669,"z":-339.718},"rot":{"x":3.825,"y":250.251,"z":2.051}}]},{"sceneId":3,"groupId":133106650,"blockId":0,"pos":{"x":-807.86194,"y":0.0,"z":2039.4146},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":650016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-820.221,"y":154.954,"z":1985.82},"rot":{"x":353.828,"y":7.132,"z":354.165}},{"monsterId":0,"gadgetId":70520005,"configId":650004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-889.479,"y":244.19,"z":2020.96},"rot":{"x":0.393,"y":25.248,"z":351.557}},{"monsterId":0,"gadgetId":70520005,"configId":650017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-818.186,"y":195.141,"z":2018.623},"rot":{"x":355.613,"y":297.222,"z":0.281}},{"monsterId":0,"gadgetId":70520009,"configId":650005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-852.882,"y":241.044,"z":2041.476},"rot":{"x":352.927,"y":337.436,"z":349.676}},{"monsterId":0,"gadgetId":70520005,"configId":650002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-846.463,"y":281.981,"z":2066.296},"rot":{"x":346.494,"y":315.365,"z":356.358}},{"monsterId":0,"gadgetId":70520009,"configId":650003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-796.291,"y":262.9,"z":2061.013},"rot":{"x":11.021,"y":84.258,"z":350.438}},{"monsterId":0,"gadgetId":70520005,"configId":650015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-789.344,"y":154.811,"z":2005.803},"rot":{"x":359.037,"y":6.877,"z":352.891}},{"monsterId":0,"gadgetId":70520005,"configId":650001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-752.29,"y":290.032,"z":2072.873},"rot":{"x":355.258,"y":223.333,"z":7.266}},{"monsterId":0,"gadgetId":70520009,"configId":650006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-705.601,"y":282.125,"z":2081.868},"rot":{"x":350.499,"y":323.793,"z":352.29}}]},{"sceneId":3,"groupId":133106649,"blockId":0,"pos":{"x":-608.0754,"y":0.0,"z":2022.0098},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":649002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-746.202,"y":239.154,"z":2036.663},"rot":{"x":0.0,"y":352.855,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":649004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-714.886,"y":248.59,"z":2052.754},"rot":{"x":0.0,"y":146.767,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":649003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-634.896,"y":236.358,"z":2032.996},"rot":{"x":0.0,"y":256.077,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":649010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-621.621,"y":358.359,"z":2071.27},"rot":{"x":0.0,"y":14.985,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":649006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-605.998,"y":234.094,"z":2025.006},"rot":{"x":0.0,"y":273.205,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":649005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-609.52,"y":235.009,"z":2031.429},"rot":{"x":0.0,"y":284.337,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":649001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-587.288,"y":273.145,"z":2069.728},"rot":{"x":0.0,"y":269.558,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":649007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-567.431,"y":235.205,"z":1982.857},"rot":{"x":0.0,"y":271.437,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":649011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-557.835,"y":344.726,"z":2059.045},"rot":{"x":16.286,"y":103.76,"z":326.685}},{"monsterId":0,"gadgetId":70520009,"configId":649008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-533.504,"y":232.863,"z":1958.207},"rot":{"x":0.0,"y":271.437,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":649009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-509.648,"y":233.905,"z":1922.152},"rot":{"x":357.042,"y":115.424,"z":343.21}}]},{"sceneId":3,"groupId":133209031,"blockId":0,"pos":{"x":-2874.154,"y":0.0,"z":-4041.855},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":31005,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2874.154,"y":198.947,"z":-4041.855},"rot":{"x":0.0,"y":322.771,"z":0.0}}]},{"sceneId":3,"groupId":155006215,"blockId":0,"pos":{"x":440.4522,"y":0.0,"z":-183.519},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":215005,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":450.202,"y":140.618,"z":-186.993},"rot":{"x":0.0,"y":84.554,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":215004,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":447.8,"y":140.619,"z":-191.227},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":215003,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":438.727,"y":140.487,"z":-188.162},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":215002,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":430.916,"y":141.23,"z":-177.277},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":215001,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":434.616,"y":140.914,"z":-173.936},"rot":{"x":0.0,"y":240.336,"z":0.0}}]},{"sceneId":3,"groupId":133209034,"blockId":0,"pos":{"x":-2441.3523,"y":0.0,"z":-3914.1257},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":34005,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-2546.124,"y":198.926,"z":-4038.83},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":34011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2494.307,"y":230.217,"z":-3874.72},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":34010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2459.196,"y":241.983,"z":-3884.124},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":34009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2444.208,"y":251.416,"z":-3905.138},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":34008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2444.541,"y":251.004,"z":-3905.431},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":34007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2444.458,"y":250.718,"z":-3904.635},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":34002,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2421.55,"y":198.168,"z":-3926.749},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":34001,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2423.081,"y":197.932,"z":-3928.753},"rot":{"x":0.0,"y":323.84,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":34004,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2375.815,"y":198.677,"z":-3885.585},"rot":{"x":0.0,"y":239.158,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":34003,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2360.245,"y":198.451,"z":-3887.294},"rot":{"x":0.0,"y":60.079,"z":0.0}}]},{"sceneId":3,"groupId":133106642,"blockId":0,"pos":{"x":-687.81525,"y":0.0,"z":1687.5231},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":642020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-759.322,"y":192.897,"z":1514.438},"rot":{"x":355.723,"y":0.313,"z":351.63}},{"monsterId":0,"gadgetId":70520001,"configId":642030,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-790.416,"y":187.063,"z":1535.154},"rot":{"x":22.784,"y":359.937,"z":359.69}},{"monsterId":0,"gadgetId":70520001,"configId":642031,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-793.921,"y":186.035,"z":1539.556},"rot":{"x":31.359,"y":355.993,"z":345.793}},{"monsterId":0,"gadgetId":70520005,"configId":642035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-808.791,"y":185.676,"z":1546.776},"rot":{"x":8.044,"y":359.941,"z":359.156}},{"monsterId":0,"gadgetId":70520001,"configId":642033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-843.041,"y":188.508,"z":1564.227},"rot":{"x":308.22,"y":4.208,"z":3.393}},{"monsterId":0,"gadgetId":70520001,"configId":642032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-839.685,"y":187.92,"z":1554.928},"rot":{"x":23.422,"y":356.721,"z":344.277}},{"monsterId":0,"gadgetId":70520005,"configId":642027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-761.174,"y":194.425,"z":1559.815},"rot":{"x":8.126,"y":0.068,"z":0.954}},{"monsterId":0,"gadgetId":70520004,"configId":642038,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-744.148,"y":192.831,"z":1565.66},"rot":{"x":5.503,"y":359.967,"z":359.32}},{"monsterId":0,"gadgetId":70520001,"configId":642026,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-748.11,"y":193.937,"z":1558.761},"rot":{"x":338.231,"y":2.836,"z":345.328}},{"monsterId":0,"gadgetId":70520001,"configId":642025,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-747.345,"y":193.712,"z":1561.554},"rot":{"x":327.182,"y":324.041,"z":352.286}},{"monsterId":0,"gadgetId":70520001,"configId":642034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-854.407,"y":190.84,"z":1558.259},"rot":{"x":24.737,"y":344.83,"z":297.464}},{"monsterId":0,"gadgetId":70520005,"configId":642029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-843.888,"y":191.185,"z":1585.156},"rot":{"x":9.737,"y":359.843,"z":358.161}},{"monsterId":0,"gadgetId":70540001,"configId":642024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-790.279,"y":194.519,"z":1571.157},"rot":{"x":0.0,"y":35.059,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":642023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-790.72,"y":194.107,"z":1571.108},"rot":{"x":0.0,"y":35.059,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":642022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-790.195,"y":193.821,"z":1571.714},"rot":{"x":0.0,"y":35.059,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":642028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-844.544,"y":189.481,"z":1595.183},"rot":{"x":10.324,"y":359.808,"z":357.872}},{"monsterId":0,"gadgetId":70520009,"configId":642036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-885.678,"y":193.277,"z":1590.23},"rot":{"x":356.468,"y":0.471,"z":354.625}},{"monsterId":0,"gadgetId":70520004,"configId":642037,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-872.31,"y":189.145,"z":1615.542},"rot":{"x":343.376,"y":315.781,"z":352.899}},{"monsterId":0,"gadgetId":70520009,"configId":642039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-912.52,"y":199.645,"z":1631.592},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":642010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-742.108,"y":371.83,"z":2062.712},"rot":{"x":340.442,"y":1.787,"z":349.661}},{"monsterId":0,"gadgetId":70540001,"configId":642004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-618.719,"y":268.213,"z":2052.206},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":642005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-596.802,"y":264.4,"z":2049.751},"rot":{"x":344.397,"y":359.278,"z":5.267}},{"monsterId":0,"gadgetId":70520005,"configId":642006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-586.114,"y":261.016,"z":2033.468},"rot":{"x":354.995,"y":0.178,"z":355.939}},{"monsterId":0,"gadgetId":70520009,"configId":642007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-532.911,"y":267.218,"z":1997.125},"rot":{"x":340.503,"y":359.468,"z":3.095}},{"monsterId":0,"gadgetId":70520009,"configId":642008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-477.66,"y":262.107,"z":1953.555},"rot":{"x":331.615,"y":357.75,"z":8.881}},{"monsterId":0,"gadgetId":70520009,"configId":642009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-491.848,"y":279.931,"z":1980.456},"rot":{"x":317.353,"y":359.207,"z":2.033}},{"monsterId":0,"gadgetId":70520009,"configId":642017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-458.935,"y":242.04,"z":1834.251},"rot":{"x":325.697,"y":354.607,"z":17.354}},{"monsterId":0,"gadgetId":70540001,"configId":642016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-447.729,"y":235.717,"z":1819.136},"rot":{"x":345.102,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":642015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-448.062,"y":235.244,"z":1818.959},"rot":{"x":345.102,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":642014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-447.98,"y":235.172,"z":1819.802},"rot":{"x":345.102,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":642012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-502.457,"y":270.968,"z":1576.924},"rot":{"x":9.568,"y":2.744,"z":31.937}},{"monsterId":0,"gadgetId":70520009,"configId":642011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-510.058,"y":271.549,"z":1550.607},"rot":{"x":6.381,"y":1.85,"z":32.306}},{"monsterId":0,"gadgetId":70520005,"configId":642019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-530.181,"y":258.132,"z":1538.115},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":642018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-573.659,"y":233.845,"z":1497.91},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133210032,"blockId":0,"pos":{"x":-3911.6865,"y":0.0,"z":-1047.578},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":32001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3914.135,"y":182.647,"z":-1048.451},"rot":{"x":10.262,"y":274.246,"z":350.844}},{"monsterId":0,"gadgetId":70590036,"configId":32002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3909.238,"y":183.26,"z":-1046.705},"rot":{"x":348.485,"y":119.78,"z":6.122}}]},{"sceneId":3,"groupId":133212084,"blockId":0,"pos":{"x":-3698.909,"y":0.0,"z":-3018.838},"spawns":[{"monsterId":0,"gadgetId":70520026,"configId":84042,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3592.097,"y":225.08,"z":-3039.711},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":84008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3610.709,"y":238.475,"z":-3051.327},"rot":{"x":0.0,"y":168.1,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":84032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3663.501,"y":286.637,"z":-3066.814},"rot":{"x":0.0,"y":28.707,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":84031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3663.934,"y":286.225,"z":-3066.911},"rot":{"x":0.0,"y":28.707,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":84030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3663.479,"y":285.939,"z":-3066.251},"rot":{"x":0.0,"y":28.707,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":84007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3641.766,"y":283.243,"z":-3061.156},"rot":{"x":0.0,"y":181.82,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":84004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3686.206,"y":287.096,"z":-3053.713},"rot":{"x":0.0,"y":318.277,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84048,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3682.502,"y":202.866,"z":-3038.306},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84049,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3679.201,"y":204.974,"z":-3041.564},"rot":{"x":0.0,"y":116.47,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":84044,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3590.983,"y":226.37,"z":-3039.044},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":84043,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3590.156,"y":226.09,"z":-3041.436},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84052,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3709.425,"y":208.109,"z":-3018.228},"rot":{"x":0.0,"y":138.227,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84051,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3703.075,"y":200.991,"z":-3022.634},"rot":{"x":0.0,"y":155.372,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84057,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3678.431,"y":204.905,"z":-3021.391},"rot":{"x":0.0,"y":229.695,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84050,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3673.681,"y":208.414,"z":-3031.784},"rot":{"x":0.0,"y":52.472,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":84016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3629.598,"y":232.416,"z":-3015.956},"rot":{"x":0.0,"y":109.73,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84056,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3719.354,"y":235.625,"z":-3026.102},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":84005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3744.753,"y":276.424,"z":-2994.158},"rot":{"x":0.0,"y":254.157,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84055,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3696.154,"y":202.358,"z":-2995.914},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84054,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3702.86,"y":204.614,"z":-3011.987},"rot":{"x":0.0,"y":272.443,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84053,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3701.437,"y":204.957,"z":-3005.286},"rot":{"x":0.0,"y":201.491,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":84047,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3711.167,"y":232.149,"z":-3007.581},"rot":{"x":0.0,"y":165.513,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":84011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3688.246,"y":200.032,"z":-2992.515},"rot":{"x":0.0,"y":58.288,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":84009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3740.867,"y":302.344,"z":-3063.161},"rot":{"x":0.0,"y":106.935,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":84063,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3669.598,"y":280.162,"z":-3035.247},"rot":{"x":359.304,"y":134.893,"z":4.836}},{"monsterId":0,"gadgetId":70520028,"configId":84062,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3665.551,"y":280.977,"z":-3041.062},"rot":{"x":11.007,"y":146.349,"z":26.342}},{"monsterId":0,"gadgetId":70520033,"configId":84061,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3782.497,"y":206.409,"z":-3071.759},"rot":{"x":0.0,"y":35.835,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":84020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3785.236,"y":307.279,"z":-3054.878},"rot":{"x":0.0,"y":5.098,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":84019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3785.594,"y":306.867,"z":-3055.14},"rot":{"x":0.0,"y":5.098,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":84018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3785.442,"y":306.581,"z":-3054.353},"rot":{"x":0.0,"y":5.098,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":84012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3792.271,"y":308.964,"z":-3060.089},"rot":{"x":0.0,"y":180.203,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":84006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3837.477,"y":320.575,"z":-3057.99},"rot":{"x":0.0,"y":344.456,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":84040,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3836.139,"y":319.364,"z":-3045.728},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":84039,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3835.312,"y":319.084,"z":-3048.12},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":84038,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3837.253,"y":318.074,"z":-3046.395},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":84059,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3637.541,"y":200.673,"z":-2898.427},"rot":{"x":0.0,"y":76.91,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":84010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3634.825,"y":200.149,"z":-2908.222},"rot":{"x":0.0,"y":230.369,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":84001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3703.319,"y":201.236,"z":-2879.745},"rot":{"x":0.0,"y":296.472,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":84060,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3611.231,"y":200.61,"z":-2863.654},"rot":{"x":0.0,"y":89.16,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":84058,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3593.472,"y":201.016,"z":-2859.78},"rot":{"x":0.0,"y":140.34,"z":0.0}}]},{"sceneId":3,"groupId":133223349,"blockId":0,"pos":{"x":-6393.0405,"y":0.0,"z":-2463.4033},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":349005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6394.529,"y":228.901,"z":-2459.711},"rot":{"x":0.0,"y":317.975,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":349003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6394.781,"y":230.536,"z":-2467.543},"rot":{"x":0.0,"y":299.691,"z":338.796}},{"monsterId":0,"gadgetId":70520001,"configId":349001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6395.176,"y":231.042,"z":-2469.587},"rot":{"x":0.0,"y":0.0,"z":329.532}},{"monsterId":0,"gadgetId":70520002,"configId":349004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6390.342,"y":229.125,"z":-2461.505},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":349002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6390.376,"y":228.158,"z":-2458.671},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133222325,"blockId":0,"pos":{"x":-4591.278,"y":0.0,"z":-4627.854},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":325001,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4591.278,"y":199.232,"z":-4627.854},"rot":{"x":0.0,"y":311.942,"z":0.0}}]},{"sceneId":3,"groupId":133212086,"blockId":0,"pos":{"x":-3513.2766,"y":0.0,"z":-2400.5728},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":86001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3582.199,"y":200.672,"z":-2413.205},"rot":{"x":0.0,"y":140.604,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":86004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3512.904,"y":201.125,"z":-2415.344},"rot":{"x":0.0,"y":180.418,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":86013,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3509.687,"y":204.095,"z":-2416.924},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":86012,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3508.86,"y":203.815,"z":-2419.316},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":86011,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3510.801,"y":202.805,"z":-2417.591},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":86007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3497.079,"y":201.75,"z":-2427.933},"rot":{"x":0.0,"y":180.418,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":86008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3496.991,"y":202.036,"z":-2427.136},"rot":{"x":0.0,"y":180.418,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":86009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3497.326,"y":202.448,"z":-2427.427},"rot":{"x":0.0,"y":180.418,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":86019,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3540.502,"y":200.124,"z":-2514.27},"rot":{"x":0.0,"y":52.47,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":86018,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3543.867,"y":200.57,"z":-2531.842},"rot":{"x":0.0,"y":140.33,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":86005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3476.641,"y":200.831,"z":-2477.101},"rot":{"x":0.0,"y":42.155,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":86024,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3479.291,"y":200.948,"z":-2441.183},"rot":{"x":0.0,"y":93.795,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":86023,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3482.48,"y":201.301,"z":-2436.756},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":86022,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3477.725,"y":201.181,"z":-2439.955},"rot":{"x":0.0,"y":260.619,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":86002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3526.018,"y":203.202,"z":-2355.475},"rot":{"x":0.0,"y":47.592,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":86021,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3572.673,"y":201.216,"z":-2320.706},"rot":{"x":0.0,"y":252.56,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":86020,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3574.501,"y":201.274,"z":-2328.066},"rot":{"x":0.0,"y":259.04,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":86003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3574.877,"y":238.978,"z":-2314.983},"rot":{"x":0.0,"y":237.055,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":86017,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3475.933,"y":198.388,"z":-2338.795},"rot":{"x":0.0,"y":56.91,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":86016,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3479.469,"y":198.368,"z":-2331.825},"rot":{"x":0.0,"y":52.44,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":86015,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3487.938,"y":197.943,"z":-2309.527},"rot":{"x":0.0,"y":66.23,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":86014,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3484.329,"y":197.83,"z":-2307.236},"rot":{"x":0.0,"y":5.6,"z":0.0}}]},{"sceneId":3,"groupId":133212088,"blockId":0,"pos":{"x":-3509.6165,"y":0.0,"z":-2692.8376},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":88029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3559.673,"y":204.383,"z":-2809.38},"rot":{"x":0.0,"y":136.484,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3559.633,"y":203.971,"z":-2808.938},"rot":{"x":0.0,"y":136.484,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3559.144,"y":203.685,"z":-2809.573},"rot":{"x":0.0,"y":136.484,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":88009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3553.866,"y":202.248,"z":-2792.495},"rot":{"x":0.0,"y":204.278,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88047,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3538.367,"y":202.209,"z":-2795.605},"rot":{"x":0.0,"y":139.32,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88049,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3553.403,"y":201.863,"z":-2778.435},"rot":{"x":0.0,"y":245.78,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88048,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3540.947,"y":203.249,"z":-2791.254},"rot":{"x":0.0,"y":329.73,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":88007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3527.789,"y":201.325,"z":-2786.542},"rot":{"x":0.0,"y":117.532,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":88055,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3552.216,"y":200.145,"z":-2754.582},"rot":{"x":3.206,"y":296.34,"z":1.586}},{"monsterId":0,"gadgetId":70520030,"configId":88050,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3535.283,"y":200.935,"z":-2753.381},"rot":{"x":0.0,"y":52.86,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":88057,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3555.89,"y":199.846,"z":-2749.668},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":88056,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3554.24,"y":200.08,"z":-2747.0},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3548.579,"y":202.204,"z":-2734.542},"rot":{"x":0.0,"y":92.432,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88044,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3532.34,"y":201.012,"z":-2739.23},"rot":{"x":0.0,"y":158.32,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3548.858,"y":201.792,"z":-2734.197},"rot":{"x":0.0,"y":92.432,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3548.065,"y":201.506,"z":-2734.312},"rot":{"x":0.0,"y":92.432,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":88001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3583.298,"y":200.716,"z":-2716.09},"rot":{"x":0.0,"y":92.432,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":88059,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3557.226,"y":200.208,"z":-2725.2},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88045,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3556.412,"y":200.278,"z":-2719.432},"rot":{"x":0.0,"y":194.67,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":88011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3524.948,"y":200.082,"z":-2723.23},"rot":{"x":0.0,"y":155.636,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88046,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3461.768,"y":201.526,"z":-2766.578},"rot":{"x":0.0,"y":120.28,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3441.751,"y":201.927,"z":-2770.542},"rot":{"x":0.0,"y":144.662,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3441.649,"y":201.515,"z":-2770.11},"rot":{"x":0.0,"y":144.662,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3441.255,"y":201.229,"z":-2770.808},"rot":{"x":0.0,"y":144.662,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":88010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3446.009,"y":201.199,"z":-2751.5},"rot":{"x":0.0,"y":144.662,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":88003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3437.749,"y":200.956,"z":-2741.773},"rot":{"x":0.0,"y":72.109,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88054,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3425.98,"y":200.41,"z":-2742.416},"rot":{"x":0.0,"y":57.35,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88053,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3394.727,"y":200.243,"z":-2720.919},"rot":{"x":0.0,"y":4.42,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88040,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3501.711,"y":200.961,"z":-2656.409},"rot":{"x":0.0,"y":76.89,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3474.162,"y":203.268,"z":-2652.858},"rot":{"x":0.0,"y":163.44,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3473.927,"y":202.856,"z":-2652.482},"rot":{"x":0.0,"y":163.44,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3473.778,"y":202.57,"z":-2653.27},"rot":{"x":0.0,"y":163.44,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":88008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3489.302,"y":201.225,"z":-2657.308},"rot":{"x":0.0,"y":128.567,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88041,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3467.738,"y":200.858,"z":-2657.945},"rot":{"x":0.0,"y":316.22,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88042,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3419.995,"y":201.611,"z":-2652.543},"rot":{"x":0.0,"y":256.28,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":88006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3426.094,"y":201.593,"z":-2654.91},"rot":{"x":0.0,"y":177.281,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":88013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3503.293,"y":201.645,"z":-2635.894},"rot":{"x":0.0,"y":232.998,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88036,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3484.362,"y":200.634,"z":-2619.526},"rot":{"x":0.0,"y":44.5,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88043,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3448.053,"y":200.757,"z":-2615.435},"rot":{"x":0.0,"y":75.28,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":88005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3425.275,"y":203.703,"z":-2624.632},"rot":{"x":0.0,"y":70.334,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88051,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3533.443,"y":200.196,"z":-2600.387},"rot":{"x":0.0,"y":272.14,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88039,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3558.438,"y":200.685,"z":-2642.485},"rot":{"x":0.0,"y":308.66,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88038,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3555.451,"y":200.741,"z":-2639.332},"rot":{"x":0.0,"y":212.92,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":88004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3552.265,"y":200.762,"z":-2634.793},"rot":{"x":0.0,"y":59.393,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88052,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3557.79,"y":200.607,"z":-2631.967},"rot":{"x":0.0,"y":64.17,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88037,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3576.877,"y":200.5,"z":-2637.511},"rot":{"x":0.0,"y":296.02,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":88012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3532.436,"y":201.418,"z":-2571.896},"rot":{"x":0.0,"y":130.689,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":88002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3533.236,"y":202.384,"z":-2565.127},"rot":{"x":0.0,"y":256.87,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88035,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3501.918,"y":200.308,"z":-2570.941},"rot":{"x":0.0,"y":107.3,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":88034,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3508.391,"y":200.513,"z":-2567.635},"rot":{"x":0.0,"y":20.11,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3510.059,"y":202.599,"z":-2562.586},"rot":{"x":0.0,"y":18.184,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3510.467,"y":202.187,"z":-2562.761},"rot":{"x":0.0,"y":18.184,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":88015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3510.14,"y":201.901,"z":-2562.029},"rot":{"x":0.0,"y":18.184,"z":0.0}}]},{"sceneId":3,"groupId":133212093,"blockId":0,"pos":{"x":-3497.5498,"y":0.0,"z":-3007.781},"spawns":[{"monsterId":0,"gadgetId":70540004,"configId":93036,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3526.04,"y":200.264,"z":-3030.494},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":93035,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3525.383,"y":200.262,"z":-3030.19},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":93037,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3526.607,"y":200.27,"z":-3029.862},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":93038,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3525.62,"y":200.26,"z":-3029.527},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":93039,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3526.141,"y":200.253,"z":-3029.42},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93020,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3503.177,"y":198.556,"z":-3040.448},"rot":{"x":0.0,"y":17.87,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93023,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3509.24,"y":198.314,"z":-3014.9},"rot":{"x":0.0,"y":4.69,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93022,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3495.529,"y":198.55,"z":-3008.091},"rot":{"x":0.0,"y":27.16,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93021,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3482.364,"y":199.121,"z":-3036.405},"rot":{"x":0.0,"y":6.82,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93027,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3477.583,"y":199.618,"z":-3000.737},"rot":{"x":0.0,"y":72.73,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93026,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3489.755,"y":199.342,"z":-2955.964},"rot":{"x":0.0,"y":101.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":93005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3463.892,"y":201.382,"z":-3062.643},"rot":{"x":0.0,"y":22.701,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93028,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3464.781,"y":199.529,"z":-2994.886},"rot":{"x":0.0,"y":107.48,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":93042,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3439.12,"y":203.575,"z":-3069.536},"rot":{"x":14.125,"y":359.75,"z":355.999}},{"monsterId":0,"gadgetId":70540001,"configId":93009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3443.077,"y":202.647,"z":-3061.332},"rot":{"x":0.0,"y":316.607,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":93010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3442.589,"y":202.933,"z":-3061.968},"rot":{"x":0.0,"y":316.607,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":93011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3442.548,"y":203.345,"z":-3061.526},"rot":{"x":0.0,"y":316.607,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":93007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3449.086,"y":200.63,"z":-3043.747},"rot":{"x":0.0,"y":139.966,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93034,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3446.572,"y":198.315,"z":-2954.976},"rot":{"x":0.0,"y":242.633,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93033,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3441.772,"y":198.451,"z":-2959.839},"rot":{"x":0.0,"y":299.863,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":93006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3439.401,"y":199.829,"z":-2939.135},"rot":{"x":0.0,"y":307.2,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93032,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3427.489,"y":199.506,"z":-3004.708},"rot":{"x":0.0,"y":335.22,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":93015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3554.012,"y":206.074,"z":-3047.405},"rot":{"x":0.0,"y":145.241,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":93014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3553.906,"y":205.662,"z":-3046.974},"rot":{"x":0.0,"y":145.241,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":93013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3553.519,"y":205.376,"z":-3047.676},"rot":{"x":0.0,"y":145.241,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":93002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3534.585,"y":203.213,"z":-3045.973},"rot":{"x":0.0,"y":128.585,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":93004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3574.524,"y":203.397,"z":-3025.422},"rot":{"x":0.0,"y":84.571,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":93025,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3538.582,"y":198.908,"z":-2906.781},"rot":{"x":0.0,"y":64.39,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":93003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3568.759,"y":200.274,"z":-2872.145},"rot":{"x":0.0,"y":160.36,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":93019,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3560.844,"y":202.442,"z":-2820.697},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133217184,"blockId":0,"pos":{"x":-4629.525,"y":0.0,"z":-3767.5059},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":184002,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4612.143,"y":199.497,"z":-3774.787},"rot":{"x":0.0,"y":218.806,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":184001,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4620.224,"y":199.528,"z":-3767.766},"rot":{"x":0.0,"y":351.597,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":184008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4629.978,"y":200.222,"z":-3739.591},"rot":{"x":7.271,"y":69.847,"z":348.963}},{"monsterId":0,"gadgetId":70520029,"configId":184004,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4633.365,"y":198.762,"z":-3796.717},"rot":{"x":0.0,"y":327.613,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":184003,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4635.485,"y":199.219,"z":-3792.725},"rot":{"x":0.0,"y":34.489,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":184005,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4639.126,"y":198.636,"z":-3784.01},"rot":{"x":0.0,"y":168.07,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":184009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4636.354,"y":200.211,"z":-3716.946},"rot":{"x":348.749,"y":60.579,"z":12.167}}]},{"sceneId":3,"groupId":133217185,"blockId":0,"pos":{"x":-4912.0054,"y":0.0,"z":-4034.515},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":185007,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4902.952,"y":203.012,"z":-4038.438},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":185009,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4881.547,"y":203.909,"z":-4023.368},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":185008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4883.334,"y":206.197,"z":-4019.874},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":185010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4867.323,"y":203.973,"z":-4024.947},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":185003,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-5003.09,"y":200.723,"z":-4087.198},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":185018,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4933.784,"y":199.418,"z":-4013.265},"rot":{"x":0.0,"y":319.24,"z":0.0}}]},{"sceneId":3,"groupId":133212065,"blockId":0,"pos":{"x":-3956.7236,"y":0.0,"z":-2207.0134},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":65061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3845.332,"y":270.272,"z":-2295.917},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":65005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3846.612,"y":269.319,"z":-2284.232},"rot":{"x":0.0,"y":36.282,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65069,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3852.543,"y":249.863,"z":-2223.92},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65068,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3852.876,"y":249.451,"z":-2224.213},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65067,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3852.794,"y":249.165,"z":-2223.416},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":65042,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3891.379,"y":275.27,"z":-2285.526},"rot":{"x":0.0,"y":223.63,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":65045,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3889.955,"y":291.913,"z":-2282.243},"rot":{"x":0.0,"y":65.8,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":65043,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3889.756,"y":267.046,"z":-2260.415},"rot":{"x":0.0,"y":135.004,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3872.31,"y":246.89,"z":-2223.372},"rot":{"x":0.0,"y":232.729,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3906.836,"y":281.903,"z":-2287.409},"rot":{"x":0.0,"y":88.692,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3893.816,"y":246.44,"z":-2228.499},"rot":{"x":0.0,"y":350.356,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3894.095,"y":246.028,"z":-2228.844},"rot":{"x":0.0,"y":350.356,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3894.148,"y":245.742,"z":-2228.044},"rot":{"x":0.0,"y":350.356,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4067.722,"y":200.78,"z":-2171.895},"rot":{"x":0.0,"y":12.658,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4058.862,"y":269.901,"z":-2234.133},"rot":{"x":0.0,"y":218.151,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4049.383,"y":200.966,"z":-2129.975},"rot":{"x":0.0,"y":40.638,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":65039,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4023.408,"y":256.536,"z":-2284.654},"rot":{"x":0.0,"y":187.56,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":65040,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4021.302,"y":257.546,"z":-2283.134},"rot":{"x":0.0,"y":236.56,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":65041,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4023.817,"y":257.826,"z":-2283.421},"rot":{"x":0.0,"y":282.56,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4015.745,"y":256.107,"z":-2198.607},"rot":{"x":0.0,"y":239.903,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3976.466,"y":239.846,"z":-2162.324},"rot":{"x":0.0,"y":326.914,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4003.978,"y":272.479,"z":-2257.37},"rot":{"x":0.0,"y":14.958,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":65070,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3980.485,"y":267.336,"z":-2261.444},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":65059,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3972.989,"y":202.152,"z":-2071.964},"rot":{"x":357.498,"y":352.37,"z":37.494}},{"monsterId":0,"gadgetId":70590036,"configId":65058,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3972.206,"y":201.387,"z":-2067.078},"rot":{"x":11.349,"y":0.884,"z":8.881}},{"monsterId":0,"gadgetId":70590036,"configId":65057,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3972.995,"y":202.093,"z":-2071.141},"rot":{"x":15.026,"y":283.826,"z":350.39}},{"monsterId":0,"gadgetId":70590036,"configId":65055,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4034.204,"y":201.361,"z":-2273.818},"rot":{"x":2.694,"y":359.508,"z":339.32}},{"monsterId":0,"gadgetId":70590036,"configId":65056,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4009.312,"y":199.81,"z":-2279.654},"rot":{"x":357.316,"y":89.277,"z":0.034}},{"monsterId":0,"gadgetId":70540001,"configId":65033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3984.861,"y":268.555,"z":-2279.398},"rot":{"x":0.0,"y":300.735,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3984.78,"y":268.143,"z":-2279.834},"rot":{"x":0.0,"y":300.735,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3985.423,"y":267.857,"z":-2279.356},"rot":{"x":0.0,"y":300.735,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":65054,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3959.305,"y":208.217,"z":-2275.975},"rot":{"x":3.643,"y":359.929,"z":357.777}},{"monsterId":0,"gadgetId":70590036,"configId":65053,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3963.288,"y":209.642,"z":-2281.583},"rot":{"x":30.533,"y":5.288,"z":19.207}},{"monsterId":0,"gadgetId":70520009,"configId":65012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3962.038,"y":263.619,"z":-2262.355},"rot":{"x":0.0,"y":172.975,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65065,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3967.368,"y":244.444,"z":-2192.66},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3996.311,"y":213.983,"z":-2113.723},"rot":{"x":0.0,"y":340.842,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":65014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3927.919,"y":227.965,"z":-2125.219},"rot":{"x":0.0,"y":238.914,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3873.872,"y":207.752,"z":-2141.96},"rot":{"x":0.0,"y":268.706,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":65037,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3885.078,"y":225.164,"z":-2124.599},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":65036,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3884.251,"y":224.884,"z":-2126.991},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":65035,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3886.192,"y":223.874,"z":-2125.266},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3873.784,"y":212.854,"z":-2112.391},"rot":{"x":0.0,"y":310.005,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3937.381,"y":202.353,"z":-2055.572},"rot":{"x":0.0,"y":273.117,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3937.106,"y":201.941,"z":-2055.92},"rot":{"x":0.0,"y":273.117,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3937.897,"y":201.655,"z":-2055.795},"rot":{"x":0.0,"y":273.117,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3887.206,"y":209.656,"z":-2052.474},"rot":{"x":0.0,"y":244.312,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":65060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3866.868,"y":202.341,"z":-2072.135},"rot":{"x":0.0,"y":223.982,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3945.188,"y":207.489,"z":-2075.624},"rot":{"x":0.0,"y":134.584,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":65003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3931.787,"y":235.918,"z":-2171.096},"rot":{"x":0.0,"y":226.237,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":65044,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3914.91,"y":267.258,"z":-2252.02},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":65048,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4037.831,"y":265.843,"z":-2232.707},"rot":{"x":4.973,"y":286.863,"z":355.92}},{"monsterId":0,"gadgetId":70590036,"configId":65051,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4049.605,"y":262.736,"z":-2213.414},"rot":{"x":10.919,"y":358.118,"z":340.497}},{"monsterId":0,"gadgetId":70520002,"configId":65050,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4049.552,"y":263.438,"z":-2217.366},"rot":{"x":0.0,"y":277.133,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":65049,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4040.748,"y":265.377,"z":-2227.959},"rot":{"x":42.025,"y":357.36,"z":75.554}},{"monsterId":0,"gadgetId":70540001,"configId":65021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4049.275,"y":214.387,"z":-2193.84},"rot":{"x":0.0,"y":263.645,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4048.947,"y":213.975,"z":-2194.138},"rot":{"x":0.0,"y":263.645,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":65019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4049.749,"y":213.689,"z":-2194.145},"rot":{"x":0.0,"y":263.645,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":65064,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4038.191,"y":256.286,"z":-2302.71},"rot":{"x":0.0,"y":269.643,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":65063,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4037.532,"y":256.12,"z":-2301.638},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":65062,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4038.769,"y":256.28,"z":-2301.778},"rot":{"x":0.0,"y":61.016,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":65052,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3987.319,"y":200.995,"z":-2297.812},"rot":{"x":14.696,"y":359.446,"z":355.705}},{"monsterId":0,"gadgetId":70520028,"configId":65047,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3902.206,"y":282.891,"z":-2288.262},"rot":{"x":344.718,"y":342.553,"z":65.996}},{"monsterId":0,"gadgetId":70520028,"configId":65046,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3885.75,"y":263.655,"z":-2257.443},"rot":{"x":340.124,"y":185.753,"z":358.817}}]},{"sceneId":3,"groupId":133106619,"blockId":0,"pos":{"x":-719.091,"y":0.0,"z":2060.3083},"spawns":[{"monsterId":0,"gadgetId":70540029,"configId":619002,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-793.738,"y":295.916,"z":2061.913},"rot":{"x":350.376,"y":333.127,"z":349.379}},{"monsterId":0,"gadgetId":70540029,"configId":619001,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-795.615,"y":296.394,"z":2064.395},"rot":{"x":0.0,"y":113.672,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":619005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-692.802,"y":361.113,"z":2059.332},"rot":{"x":22.273,"y":129.693,"z":349.999}},{"monsterId":0,"gadgetId":70520005,"configId":619004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-669.934,"y":355.955,"z":2056.023},"rot":{"x":25.519,"y":128.699,"z":346.95}},{"monsterId":0,"gadgetId":70520005,"configId":619003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-643.366,"y":352.93,"z":2059.879},"rot":{"x":335.155,"y":311.794,"z":11.679}}]},{"sceneId":3,"groupId":133210020,"blockId":0,"pos":{"x":-3774.9,"y":0.0,"z":-1306.4005},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":20004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3776.89,"y":201.267,"z":-1308.15},"rot":{"x":6.595,"y":277.58,"z":351.079}},{"monsterId":0,"gadgetId":70520001,"configId":20002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3772.91,"y":200.871,"z":-1304.651},"rot":{"x":348.732,"y":117.706,"z":9.889}}]},{"sceneId":3,"groupId":133212068,"blockId":0,"pos":{"x":-3651.4648,"y":0.0,"z":-2178.6228},"spawns":[{"monsterId":0,"gadgetId":70520033,"configId":68006,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3655.588,"y":203.736,"z":-2255.477},"rot":{"x":0.0,"y":67.55,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":68007,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3669.352,"y":204.237,"z":-2223.306},"rot":{"x":0.0,"y":268.82,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":68008,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3676.199,"y":203.867,"z":-2206.049},"rot":{"x":0.0,"y":9.76,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":68005,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3625.037,"y":252.583,"z":-2213.382},"rot":{"x":307.502,"y":337.109,"z":337.718}},{"monsterId":0,"gadgetId":70520027,"configId":68001,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3616.658,"y":254.667,"z":-2198.02},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":68002,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3613.157,"y":266.246,"z":-2178.45},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":68009,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3670.057,"y":203.669,"z":-2156.141},"rot":{"x":0.0,"y":43.27,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":68003,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3597.896,"y":256.669,"z":-2163.056},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":68004,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3603.531,"y":263.646,"z":-2146.88},"rot":{"x":0.0,"y":255.308,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":68010,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3716.029,"y":200.59,"z":-2121.034},"rot":{"x":0.0,"y":42.26,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":68011,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3722.608,"y":202.131,"z":-2103.057},"rot":{"x":0.0,"y":62.84,"z":0.0}}]},{"sceneId":3,"groupId":133106617,"blockId":0,"pos":{"x":-675.048,"y":0.0,"z":2009.45},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":617012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-675.048,"y":156.123,"z":2009.45},"rot":{"x":358.266,"y":152.993,"z":343.294}}]},{"sceneId":3,"groupId":133210022,"blockId":0,"pos":{"x":-3844.6145,"y":0.0,"z":-1198.5977},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":22005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3845.135,"y":202.336,"z":-1195.703},"rot":{"x":0.223,"y":129.054,"z":8.195}},{"monsterId":0,"gadgetId":70520001,"configId":22004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3847.766,"y":202.476,"z":-1195.143},"rot":{"x":353.072,"y":214.416,"z":0.652}},{"monsterId":0,"gadgetId":70590036,"configId":22002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3840.565,"y":202.163,"z":-1202.119},"rot":{"x":3.186,"y":175.312,"z":5.995}},{"monsterId":0,"gadgetId":70590036,"configId":22001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3844.991,"y":203.266,"z":-1201.426},"rot":{"x":4.262,"y":54.342,"z":1.34}}]},{"sceneId":3,"groupId":133220263,"blockId":0,"pos":{"x":-2942.5593,"y":0.0,"z":-4220.63},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":263068,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2863.054,"y":199.747,"z":-4147.051},"rot":{"x":337.431,"y":63.001,"z":344.063}},{"monsterId":0,"gadgetId":70590036,"configId":263048,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2910.85,"y":203.96,"z":-4213.85},"rot":{"x":9.724,"y":0.38,"z":4.467}},{"monsterId":0,"gadgetId":70520002,"configId":263045,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2906.27,"y":204.013,"z":-4214.128},"rot":{"x":359.112,"y":0.055,"z":352.875}},{"monsterId":0,"gadgetId":70520002,"configId":263046,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2910.161,"y":203.666,"z":-4209.322},"rot":{"x":358.545,"y":102.505,"z":2.426}},{"monsterId":0,"gadgetId":70590036,"configId":263047,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2908.075,"y":203.541,"z":-4209.312},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2901.421,"y":203.309,"z":-4106.3},"rot":{"x":0.0,"y":234.78,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2900.989,"y":202.897,"z":-4106.403},"rot":{"x":0.0,"y":234.78,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2901.688,"y":202.611,"z":-4106.796},"rot":{"x":0.0,"y":234.78,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2834.398,"y":203.989,"z":-4282.534},"rot":{"x":0.0,"y":187.792,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2834.028,"y":203.577,"z":-4282.289},"rot":{"x":0.0,"y":187.792,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2834.218,"y":203.291,"z":-4283.067},"rot":{"x":0.0,"y":187.792,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3013.394,"y":215.148,"z":-4319.601},"rot":{"x":0.0,"y":94.296,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3012.873,"y":214.45,"z":-4319.388},"rot":{"x":0.0,"y":94.296,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3013.662,"y":214.736,"z":-4319.247},"rot":{"x":0.0,"y":94.296,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":263050,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2992.14,"y":200.044,"z":-4320.758},"rot":{"x":0.0,"y":23.45,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":263049,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2993.273,"y":199.999,"z":-4312.393},"rot":{"x":29.07,"y":339.785,"z":290.978}},{"monsterId":0,"gadgetId":70520001,"configId":263052,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2987.512,"y":199.831,"z":-4312.444},"rot":{"x":13.424,"y":358.209,"z":349.308}},{"monsterId":0,"gadgetId":70520001,"configId":263051,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2990.811,"y":199.816,"z":-4322.363},"rot":{"x":0.0,"y":0.0,"z":359.105}},{"monsterId":0,"gadgetId":70540001,"configId":263027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2825.461,"y":208.816,"z":-4186.854},"rot":{"x":0.0,"y":119.006,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2825.556,"y":208.404,"z":-4186.42},"rot":{"x":0.0,"y":119.006,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2824.899,"y":208.118,"z":-4186.879},"rot":{"x":0.0,"y":119.006,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2831.958,"y":209.319,"z":-4208.677},"rot":{"x":0.0,"y":20.122,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":263070,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2876.29,"y":199.074,"z":-4158.927},"rot":{"x":19.117,"y":358.533,"z":339.416}},{"monsterId":0,"gadgetId":70510005,"configId":263064,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2879.657,"y":199.28,"z":-4154.388},"rot":{"x":3.757,"y":357.922,"z":347.896}},{"monsterId":0,"gadgetId":70510005,"configId":263066,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2875.724,"y":200.0,"z":-4145.068},"rot":{"x":347.629,"y":0.0,"z":351.343}},{"monsterId":0,"gadgetId":70510005,"configId":263062,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2877.777,"y":200.043,"z":-4145.196},"rot":{"x":351.755,"y":1.212,"z":351.609}},{"monsterId":0,"gadgetId":70520005,"configId":263007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2875.469,"y":202.536,"z":-4128.602},"rot":{"x":0.0,"y":144.749,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2889.471,"y":203.571,"z":-4229.835},"rot":{"x":0.0,"y":42.387,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":263005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2886.509,"y":201.077,"z":-4245.197},"rot":{"x":0.0,"y":294.726,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":263015,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2912.355,"y":203.522,"z":-4217.666},"rot":{"x":0.0,"y":117.298,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":263008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2928.685,"y":203.265,"z":-4214.125},"rot":{"x":0.0,"y":269.217,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2915.29,"y":204.958,"z":-4133.642},"rot":{"x":0.0,"y":249.442,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2947.613,"y":208.428,"z":-4170.625},"rot":{"x":0.0,"y":151.113,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2947.462,"y":208.016,"z":-4170.208},"rot":{"x":0.0,"y":151.113,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2947.149,"y":207.73,"z":-4170.945},"rot":{"x":0.0,"y":151.113,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":263013,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2956.295,"y":207.211,"z":-4147.629},"rot":{"x":0.0,"y":265.056,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":263039,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2961.738,"y":199.608,"z":-4274.103},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":263038,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2960.928,"y":199.582,"z":-4275.771},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":263036,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2955.609,"y":199.742,"z":-4274.074},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2973.856,"y":202.64,"z":-4214.683},"rot":{"x":0.0,"y":217.398,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":263003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2977.632,"y":205.03,"z":-4175.545},"rot":{"x":0.0,"y":269.555,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":263001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2995.75,"y":207.135,"z":-4256.68},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":263044,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3000.12,"y":198.938,"z":-4112.318},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":263053,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2994.348,"y":199.751,"z":-4302.148},"rot":{"x":359.112,"y":359.945,"z":7.125}},{"monsterId":0,"gadgetId":70520029,"configId":263037,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2927.093,"y":199.715,"z":-4306.274},"rot":{"x":0.0,"y":33.259,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":263012,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-3015.338,"y":206.868,"z":-4242.214},"rot":{"x":0.0,"y":177.085,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3024.747,"y":201.1,"z":-4214.89},"rot":{"x":0.0,"y":94.407,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":263043,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3021.442,"y":198.566,"z":-4164.608},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":263042,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3012.885,"y":199.022,"z":-4162.191},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":263056,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-3037.891,"y":226.557,"z":-4299.102},"rot":{"x":0.0,"y":213.874,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":263055,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-3041.881,"y":213.528,"z":-4302.626},"rot":{"x":0.0,"y":213.874,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":263054,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-3043.153,"y":212.716,"z":-4296.239},"rot":{"x":0.0,"y":213.874,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":263041,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3041.739,"y":198.908,"z":-4202.816},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":263010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3065.332,"y":211.409,"z":-4257.196},"rot":{"x":0.0,"y":192.62,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":263040,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3056.865,"y":198.646,"z":-4213.026},"rot":{"x":0.0,"y":21.211,"z":0.0}}]},{"sceneId":3,"groupId":133212072,"blockId":0,"pos":{"x":-4020.4858,"y":0.0,"z":-2297.1147},"spawns":[{"monsterId":0,"gadgetId":70520026,"configId":72012,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4061.695,"y":256.685,"z":-2330.997},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72010,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4062.809,"y":255.395,"z":-2331.664},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72016,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4040.5,"y":257.747,"z":-2267.073},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72015,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4039.672,"y":257.467,"z":-2269.466},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72014,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4041.614,"y":256.457,"z":-2267.74},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72004,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3983.535,"y":258.092,"z":-2290.705},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72002,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3984.649,"y":256.802,"z":-2291.372},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72008,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4009.293,"y":257.944,"z":-2307.696},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72006,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4010.407,"y":256.654,"z":-2308.363},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72007,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4008.466,"y":257.664,"z":-2310.088},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":72003,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3982.708,"y":257.812,"z":-2293.097},"rot":{"x":0.0,"y":314.0,"z":0.0}}]},{"sceneId":3,"groupId":133220264,"blockId":0,"pos":{"x":-2430.7134,"y":0.0,"z":-4221.509},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":264009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2524.191,"y":256.275,"z":-4269.034},"rot":{"x":0.0,"y":144.321,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":264027,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2438.887,"y":247.428,"z":-4262.792},"rot":{"x":0.0,"y":298.012,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":264012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2551.89,"y":256.85,"z":-4216.354},"rot":{"x":0.0,"y":266.066,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":264017,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2492.521,"y":237.272,"z":-4216.494},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":264010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2493.77,"y":244.527,"z":-4225.066},"rot":{"x":0.0,"y":65.725,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":264015,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2493.635,"y":235.982,"z":-4217.161},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":264016,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2491.694,"y":236.992,"z":-4218.886},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":264008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2439.349,"y":228.342,"z":-4213.887},"rot":{"x":0.0,"y":128.486,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":264019,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2311.336,"y":226.205,"z":-4249.62},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":264002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2419.683,"y":306.269,"z":-4328.625},"rot":{"x":0.0,"y":254.411,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":264042,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2397.029,"y":288.161,"z":-4327.062},"rot":{"x":0.0,"y":332.467,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":264041,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2395.19,"y":287.881,"z":-4328.8},"rot":{"x":0.0,"y":286.467,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":264040,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2397.709,"y":286.871,"z":-4328.168},"rot":{"x":0.0,"y":237.467,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":264036,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2352.934,"y":231.398,"z":-4331.383},"rot":{"x":350.643,"y":1.363,"z":343.464}},{"monsterId":0,"gadgetId":70520001,"configId":264035,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2357.79,"y":234.265,"z":-4318.393},"rot":{"x":349.028,"y":264.815,"z":5.777}},{"monsterId":0,"gadgetId":70520001,"configId":264034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2352.158,"y":232.353,"z":-4324.021},"rot":{"x":333.944,"y":306.557,"z":294.53}},{"monsterId":0,"gadgetId":70520001,"configId":264033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2356.637,"y":233.635,"z":-4328.229},"rot":{"x":334.764,"y":8.016,"z":289.936}},{"monsterId":0,"gadgetId":70520001,"configId":264032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2358.36,"y":234.052,"z":-4329.168},"rot":{"x":351.779,"y":9.461,"z":350.251}},{"monsterId":0,"gadgetId":70520001,"configId":264038,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2556.143,"y":226.833,"z":-4174.354},"rot":{"x":0.0,"y":307.294,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":264037,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2559.611,"y":226.961,"z":-4173.89},"rot":{"x":352.683,"y":68.006,"z":21.772}},{"monsterId":0,"gadgetId":70590036,"configId":264053,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2556.949,"y":219.254,"z":-4134.051},"rot":{"x":0.738,"y":0.048,"z":7.513}},{"monsterId":0,"gadgetId":70520005,"configId":264055,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2542.148,"y":223.986,"z":-4159.886},"rot":{"x":8.217,"y":305.888,"z":351.764}},{"monsterId":0,"gadgetId":70520005,"configId":264052,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2544.37,"y":223.519,"z":-4157.694},"rot":{"x":355.16,"y":116.842,"z":9.465}},{"monsterId":0,"gadgetId":70590036,"configId":264054,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2549.981,"y":219.965,"z":-4133.378},"rot":{"x":13.402,"y":84.351,"z":357.726}},{"monsterId":0,"gadgetId":70520005,"configId":264004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2548.176,"y":218.245,"z":-4119.506},"rot":{"x":0.0,"y":332.036,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":264022,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2483.737,"y":225.084,"z":-4161.204},"rot":{"x":0.0,"y":198.987,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":264044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2486.024,"y":218.034,"z":-4099.509},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":264048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2421.322,"y":223.752,"z":-4154.124},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":264047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2421.655,"y":223.34,"z":-4154.417},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":264046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2421.573,"y":223.054,"z":-4153.62},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":264029,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2412.326,"y":198.231,"z":-4107.327},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":264028,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2419.511,"y":198.427,"z":-4108.163},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":264031,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2461.005,"y":229.733,"z":-4219.79},"rot":{"x":278.478,"y":219.44,"z":284.3}},{"monsterId":0,"gadgetId":70520033,"configId":264043,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2531.047,"y":288.486,"z":-4311.614},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":264001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2360.994,"y":244.735,"z":-4181.021},"rot":{"x":0.0,"y":337.687,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":264011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2346.535,"y":229.357,"z":-4294.478},"rot":{"x":0.0,"y":25.188,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":264020,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2338.456,"y":226.744,"z":-4283.616},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":264018,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2346.986,"y":227.129,"z":-4237.946},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":264021,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2343.689,"y":226.886,"z":-4218.329},"rot":{"x":0.0,"y":236.566,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":264057,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2350.629,"y":199.776,"z":-4184.897},"rot":{"x":18.736,"y":0.001,"z":343.487}},{"monsterId":0,"gadgetId":70590036,"configId":264056,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2344.091,"y":200.945,"z":-4181.393},"rot":{"x":354.861,"y":0.464,"z":28.097}},{"monsterId":0,"gadgetId":70590036,"configId":264059,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2327.479,"y":202.972,"z":-4165.246},"rot":{"x":52.268,"y":12.99,"z":40.545}},{"monsterId":0,"gadgetId":70590036,"configId":264058,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2319.252,"y":202.908,"z":-4165.322},"rot":{"x":23.648,"y":359.3,"z":1.359}},{"monsterId":0,"gadgetId":70520034,"configId":264030,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2459.659,"y":379.089,"z":-4341.652},"rot":{"x":0.0,"y":318.535,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":264013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2364.686,"y":247.236,"z":-4341.874},"rot":{"x":0.0,"y":338.551,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":264025,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2341.017,"y":230.179,"z":-4335.808},"rot":{"x":0.0,"y":209.887,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":264007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2309.99,"y":234.825,"z":-4335.535},"rot":{"x":0.0,"y":156.012,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":264006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2398.09,"y":255.821,"z":-4245.454},"rot":{"x":0.0,"y":210.464,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":264051,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2435.562,"y":198.788,"z":-4107.479},"rot":{"x":0.0,"y":89.547,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":264050,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2443.898,"y":199.181,"z":-4107.493},"rot":{"x":0.0,"y":79.09,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":264049,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2449.255,"y":199.234,"z":-4103.696},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":264024,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2506.731,"y":227.977,"z":-4178.992},"rot":{"x":0.0,"y":111.052,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":264003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2500.482,"y":226.776,"z":-4174.066},"rot":{"x":0.0,"y":119.006,"z":0.0}}]},{"sceneId":3,"groupId":133212073,"blockId":0,"pos":{"x":-3512.1523,"y":0.0,"z":-2177.9985},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":73008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3572.887,"y":235.257,"z":-2056.582},"rot":{"x":0.0,"y":130.586,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":73029,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3514.011,"y":198.565,"z":-2066.544},"rot":{"x":0.0,"y":159.77,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":73030,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3499.256,"y":197.693,"z":-2069.528},"rot":{"x":0.0,"y":353.83,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":73028,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3540.758,"y":211.85,"z":-2084.132},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":73027,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3539.93,"y":211.57,"z":-2086.524},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":73026,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3541.872,"y":210.56,"z":-2084.799},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":73031,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3499.017,"y":198.145,"z":-2072.029},"rot":{"x":0.0,"y":286.95,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3548.577,"y":231.441,"z":-2292.377},"rot":{"x":0.0,"y":119.006,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3548.014,"y":230.743,"z":-2292.402},"rot":{"x":0.0,"y":119.006,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3548.671,"y":231.029,"z":-2291.944},"rot":{"x":0.0,"y":119.006,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":73004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3513.888,"y":226.375,"z":-2260.583},"rot":{"x":0.0,"y":226.196,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":73032,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3484.796,"y":198.616,"z":-2293.127},"rot":{"x":0.0,"y":330.47,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":73009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3521.537,"y":224.892,"z":-2212.42},"rot":{"x":0.0,"y":160.22,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":73049,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3508.041,"y":218.906,"z":-2215.728},"rot":{"x":336.654,"y":279.428,"z":356.235}},{"monsterId":0,"gadgetId":70510007,"configId":73047,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3507.487,"y":218.545,"z":-2228.247},"rot":{"x":344.994,"y":299.397,"z":354.635}},{"monsterId":0,"gadgetId":70510007,"configId":73045,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3500.331,"y":217.406,"z":-2226.346},"rot":{"x":0.0,"y":319.653,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":73001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3572.19,"y":248.015,"z":-2209.61},"rot":{"x":0.0,"y":185.455,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3532.306,"y":226.547,"z":-2198.516},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3532.224,"y":226.261,"z":-2197.719},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3531.973,"y":226.959,"z":-2198.223},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":73038,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3572.348,"y":242.295,"z":-2173.085},"rot":{"x":13.967,"y":91.149,"z":3.748}},{"monsterId":0,"gadgetId":70520002,"configId":73037,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3564.0,"y":239.671,"z":-2167.71},"rot":{"x":352.625,"y":213.522,"z":10.967}},{"monsterId":0,"gadgetId":70520002,"configId":73036,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3569.011,"y":240.811,"z":-2167.247},"rot":{"x":16.609,"y":60.018,"z":357.486}},{"monsterId":0,"gadgetId":70520009,"configId":73010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3553.106,"y":237.99,"z":-2155.575},"rot":{"x":0.0,"y":93.5,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":73002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3574.823,"y":238.548,"z":-2107.451},"rot":{"x":0.0,"y":21.261,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":73005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3516.789,"y":208.896,"z":-2113.006},"rot":{"x":0.0,"y":210.539,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":73039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3500.225,"y":216.877,"z":-2188.559},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3492.995,"y":212.738,"z":-2144.656},"rot":{"x":0.0,"y":249.885,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3492.605,"y":212.326,"z":-2144.868},"rot":{"x":0.0,"y":249.885,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3493.382,"y":212.04,"z":-2145.065},"rot":{"x":0.0,"y":249.885,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":73003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3489.483,"y":212.128,"z":-2157.269},"rot":{"x":0.0,"y":177.085,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":73011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3474.986,"y":206.85,"z":-2137.307},"rot":{"x":0.0,"y":65.61,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":73007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3432.656,"y":204.077,"z":-2173.116},"rot":{"x":0.0,"y":194.334,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":73035,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3424.785,"y":202.615,"z":-2176.471},"rot":{"x":302.613,"y":240.127,"z":345.825}},{"monsterId":0,"gadgetId":70590036,"configId":73034,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3425.06,"y":201.784,"z":-2184.677},"rot":{"x":335.108,"y":10.207,"z":315.938}},{"monsterId":0,"gadgetId":70590036,"configId":73033,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3416.603,"y":200.906,"z":-2176.396},"rot":{"x":355.909,"y":0.647,"z":342.026}},{"monsterId":0,"gadgetId":70520005,"configId":73006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3474.966,"y":203.16,"z":-2224.508},"rot":{"x":0.0,"y":47.634,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3486.673,"y":202.749,"z":-2248.661},"rot":{"x":0.0,"y":20.601,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3487.088,"y":202.337,"z":-2248.818},"rot":{"x":0.0,"y":20.601,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":73022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3486.731,"y":202.051,"z":-2248.101},"rot":{"x":0.0,"y":20.601,"z":0.0}}]},{"sceneId":3,"groupId":133210025,"blockId":0,"pos":{"x":-3918.2678,"y":0.0,"z":-1087.751},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":25003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3914.133,"y":201.594,"z":-1089.11},"rot":{"x":358.7,"y":15.5,"z":350.578}},{"monsterId":0,"gadgetId":70590036,"configId":25002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3917.43,"y":200.883,"z":-1088.705},"rot":{"x":1.418,"y":120.255,"z":2.897}},{"monsterId":0,"gadgetId":70590036,"configId":25001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3923.241,"y":200.423,"z":-1085.438},"rot":{"x":356.127,"y":275.296,"z":353.391}}]},{"sceneId":3,"groupId":133220265,"blockId":0,"pos":{"x":-2683.5298,"y":0.0,"z":-4461.5234},"spawns":[{"monsterId":0,"gadgetId":70520033,"configId":265052,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2600.619,"y":257.131,"z":-4372.568},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":265027,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2628.202,"y":288.431,"z":-4487.167},"rot":{"x":0.0,"y":90.477,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":265070,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2565.818,"y":350.841,"z":-4490.12},"rot":{"x":329.043,"y":22.529,"z":301.05}},{"monsterId":0,"gadgetId":70590036,"configId":265071,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2564.411,"y":351.177,"z":-4488.4},"rot":{"x":340.815,"y":325.147,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":265072,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2609.774,"y":350.417,"z":-4452.614},"rot":{"x":355.968,"y":359.719,"z":358.634}},{"monsterId":0,"gadgetId":70590036,"configId":265073,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2608.785,"y":355.503,"z":-4459.628},"rot":{"x":32.069,"y":356.579,"z":348.135}},{"monsterId":0,"gadgetId":70520034,"configId":265068,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2597.528,"y":429.962,"z":-4464.345},"rot":{"x":0.0,"y":0.584,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":265067,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2586.372,"y":424.839,"z":-4468.597},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":265024,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2587.265,"y":423.967,"z":-4456.529},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":265069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2569.06,"y":390.426,"z":-4471.651},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":265054,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2611.47,"y":310.537,"z":-4417.357},"rot":{"x":0.0,"y":313.26,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":265055,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2574.44,"y":303.794,"z":-4422.805},"rot":{"x":0.0,"y":27.55,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":265026,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2583.446,"y":261.798,"z":-4407.35},"rot":{"x":0.0,"y":251.061,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":265056,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2591.075,"y":267.122,"z":-4387.39},"rot":{"x":0.0,"y":178.273,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":265030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2594.352,"y":311.869,"z":-4535.577},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":265053,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2571.933,"y":269.124,"z":-4362.591},"rot":{"x":0.0,"y":110.674,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":265007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2697.231,"y":239.416,"z":-4357.085},"rot":{"x":0.0,"y":314.061,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2640.436,"y":250.373,"z":-4369.967},"rot":{"x":0.0,"y":169.87,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2640.1,"y":249.675,"z":-4370.419},"rot":{"x":0.0,"y":169.87,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2640.159,"y":249.961,"z":-4369.62},"rot":{"x":0.0,"y":169.87,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":265081,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2633.086,"y":256.073,"z":-4386.864},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":265023,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2620.838,"y":258.447,"z":-4383.634},"rot":{"x":0.0,"y":241.293,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":265079,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2740.237,"y":236.895,"z":-4400.872},"rot":{"x":0.0,"y":0.0,"z":27.307}},{"monsterId":0,"gadgetId":70510005,"configId":265077,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2747.992,"y":235.099,"z":-4394.367},"rot":{"x":17.989,"y":16.582,"z":14.515}},{"monsterId":0,"gadgetId":70510005,"configId":265075,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2746.578,"y":234.9,"z":-4394.911},"rot":{"x":18.103,"y":94.23,"z":0.051}},{"monsterId":0,"gadgetId":70590036,"configId":265066,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2618.56,"y":230.975,"z":-4396.209},"rot":{"x":2.56,"y":216.103,"z":4.074}},{"monsterId":0,"gadgetId":70590036,"configId":265065,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2622.59,"y":230.67,"z":-4410.064},"rot":{"x":5.643,"y":39.367,"z":5.756}},{"monsterId":0,"gadgetId":70590036,"configId":265064,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2619.348,"y":230.684,"z":-4407.375},"rot":{"x":7.839,"y":359.866,"z":358.037}},{"monsterId":0,"gadgetId":70520028,"configId":265057,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2639.924,"y":255.946,"z":-4374.188},"rot":{"x":19.664,"y":19.468,"z":89.416}},{"monsterId":0,"gadgetId":70520034,"configId":265025,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2762.013,"y":226.056,"z":-4432.279},"rot":{"x":0.0,"y":33.787,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":265005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2723.17,"y":232.82,"z":-4436.14},"rot":{"x":0.0,"y":56.635,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":265010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2664.039,"y":247.924,"z":-4463.315},"rot":{"x":0.0,"y":139.339,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":265002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2778.156,"y":226.002,"z":-4480.88},"rot":{"x":0.0,"y":239.239,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":265020,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2789.883,"y":234.492,"z":-4503.782},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":265080,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2777.863,"y":228.669,"z":-4508.463},"rot":{"x":0.0,"y":266.569,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":265019,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2789.056,"y":234.212,"z":-4506.174},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":265018,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2790.997,"y":233.202,"z":-4504.449},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":265029,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2681.605,"y":250.116,"z":-4503.535},"rot":{"x":0.0,"y":353.035,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2808.743,"y":226.925,"z":-4417.334},"rot":{"x":0.0,"y":205.263,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2808.317,"y":226.513,"z":-4417.211},"rot":{"x":0.0,"y":205.263,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2808.731,"y":226.227,"z":-4417.897},"rot":{"x":0.0,"y":205.263,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":265028,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2793.201,"y":224.005,"z":-4404.691},"rot":{"x":0.0,"y":218.02,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":265006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2796.615,"y":225.447,"z":-4390.979},"rot":{"x":0.0,"y":160.502,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":265022,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2781.322,"y":227.231,"z":-4520.922},"rot":{"x":0.0,"y":259.138,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":265004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2707.344,"y":257.136,"z":-4531.628},"rot":{"x":0.0,"y":296.472,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2639.68,"y":258.978,"z":-4521.07},"rot":{"x":0.0,"y":76.415,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2640.043,"y":258.566,"z":-4520.815},"rot":{"x":0.0,"y":76.415,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2639.25,"y":258.28,"z":-4520.708},"rot":{"x":0.0,"y":76.415,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2764.597,"y":219.948,"z":-4544.925},"rot":{"x":0.0,"y":294.285,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2764.467,"y":219.536,"z":-4545.35},"rot":{"x":0.0,"y":294.285,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":265048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2765.16,"y":219.25,"z":-4544.947},"rot":{"x":0.0,"y":294.285,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":265012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2748.939,"y":232.004,"z":-4543.688},"rot":{"x":0.0,"y":147.807,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":265063,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2682.386,"y":243.076,"z":-4547.84},"rot":{"x":343.303,"y":20.238,"z":3.893}},{"monsterId":0,"gadgetId":70520001,"configId":265062,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-2676.539,"y":243.901,"z":-4547.728},"rot":{"x":350.459,"y":93.994,"z":352.957}},{"monsterId":0,"gadgetId":70590036,"configId":265061,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2680.675,"y":243.687,"z":-4541.484},"rot":{"x":355.551,"y":0.065,"z":358.329}},{"monsterId":0,"gadgetId":70590036,"configId":265059,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2674.257,"y":243.66,"z":-4551.323},"rot":{"x":11.545,"y":237.014,"z":359.517}},{"monsterId":0,"gadgetId":70590036,"configId":265060,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2671.564,"y":244.091,"z":-4551.821},"rot":{"x":9.71,"y":293.801,"z":10.695}},{"monsterId":0,"gadgetId":70520034,"configId":265021,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2812.621,"y":225.673,"z":-4464.109},"rot":{"x":0.0,"y":21.182,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":265003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2784.325,"y":207.225,"z":-4565.202},"rot":{"x":0.0,"y":209.703,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":265009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2754.597,"y":203.324,"z":-4580.469},"rot":{"x":0.0,"y":254.157,"z":0.0}}]},{"sceneId":3,"groupId":133220266,"blockId":0,"pos":{"x":-2451.117,"y":0.0,"z":-4437.563},"spawns":[{"monsterId":0,"gadgetId":70520026,"configId":266106,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2400.889,"y":292.1,"z":-4367.062},"rot":{"x":0.0,"y":261.913,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266105,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2398.637,"y":291.82,"z":-4365.908},"rot":{"x":0.0,"y":215.913,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266104,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2400.072,"y":290.81,"z":-4368.072},"rot":{"x":0.0,"y":166.913,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":266004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2472.275,"y":203.471,"z":-4601.338},"rot":{"x":0.0,"y":190.268,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266022,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2487.929,"y":257.962,"z":-4572.837},"rot":{"x":0.0,"y":264.752,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266082,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2491.255,"y":328.252,"z":-4506.743},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":266002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2473.902,"y":289.301,"z":-4499.934},"rot":{"x":0.0,"y":103.073,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":266094,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2555.324,"y":356.847,"z":-4479.543},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":266091,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2534.591,"y":325.037,"z":-4483.999},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266016,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2536.455,"y":324.715,"z":-4483.274},"rot":{"x":0.0,"y":14.798,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":266056,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2524.208,"y":291.755,"z":-4515.83},"rot":{"x":276.399,"y":197.5,"z":180.0}},{"monsterId":0,"gadgetId":70520009,"configId":266009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2467.532,"y":253.24,"z":-4552.063},"rot":{"x":0.0,"y":32.751,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266085,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2459.427,"y":296.14,"z":-4494.056},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266084,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2461.368,"y":295.13,"z":-4492.331},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266086,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2460.254,"y":296.42,"z":-4491.664},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266019,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2473.114,"y":308.235,"z":-4468.029},"rot":{"x":0.0,"y":35.863,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":266048,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2554.756,"y":295.443,"z":-4439.622},"rot":{"x":0.0,"y":57.56,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":266049,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2508.357,"y":368.646,"z":-4442.18},"rot":{"x":0.0,"y":128.13,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":266113,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2449.233,"y":202.676,"z":-4565.238},"rot":{"x":349.441,"y":281.347,"z":353.758}},{"monsterId":0,"gadgetId":70590036,"configId":266112,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2441.147,"y":202.302,"z":-4560.085},"rot":{"x":331.166,"y":359.576,"z":348.134}},{"monsterId":0,"gadgetId":70590036,"configId":266111,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2448.419,"y":204.253,"z":-4560.306},"rot":{"x":0.0,"y":315.365,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":266110,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2445.503,"y":203.533,"z":-4557.001},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":266028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2446.916,"y":315.021,"z":-4466.739},"rot":{"x":0.0,"y":266.15,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":266027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2446.601,"y":314.609,"z":-4467.052},"rot":{"x":0.0,"y":266.15,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":266026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2447.402,"y":314.323,"z":-4467.022},"rot":{"x":0.0,"y":266.15,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":266010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2436.171,"y":253.387,"z":-4469.03},"rot":{"x":15.784,"y":82.891,"z":345.35}},{"monsterId":0,"gadgetId":70520028,"configId":266058,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2511.726,"y":331.921,"z":-4472.714},"rot":{"x":276.126,"y":14.46,"z":343.926}},{"monsterId":0,"gadgetId":70520034,"configId":266098,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2498.806,"y":388.803,"z":-4430.547},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266093,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2502.058,"y":423.968,"z":-4419.922},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266126,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2493.199,"y":445.251,"z":-4412.142},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266021,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2493.856,"y":312.753,"z":-4427.37},"rot":{"x":0.0,"y":331.047,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266129,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2472.692,"y":445.584,"z":-4418.87},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266128,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2474.128,"y":446.587,"z":-4423.89},"rot":{"x":0.0,"y":247.313,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":266074,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2482.928,"y":454.845,"z":-4420.166},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":266073,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2482.928,"y":454.845,"z":-4420.357},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266130,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2458.619,"y":446.59,"z":-4414.271},"rot":{"x":0.0,"y":217.641,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266023,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2455.552,"y":408.779,"z":-4420.689},"rot":{"x":0.0,"y":95.93,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":266001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2456.578,"y":372.235,"z":-4430.722},"rot":{"x":0.0,"y":112.395,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":266059,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2556.678,"y":359.355,"z":-4468.072},"rot":{"x":284.577,"y":251.051,"z":15.651}},{"monsterId":0,"gadgetId":70520005,"configId":266116,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2420.383,"y":247.588,"z":-4454.02},"rot":{"x":0.0,"y":0.0,"z":359.105}},{"monsterId":0,"gadgetId":70510005,"configId":266118,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2423.229,"y":242.943,"z":-4450.191},"rot":{"x":6.373,"y":20.105,"z":345.803}},{"monsterId":0,"gadgetId":70520002,"configId":266124,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2472.353,"y":370.557,"z":-4393.889},"rot":{"x":8.178,"y":357.793,"z":344.837}},{"monsterId":0,"gadgetId":70590036,"configId":266125,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2479.669,"y":371.08,"z":-4397.038},"rot":{"x":344.493,"y":31.002,"z":353.634}},{"monsterId":0,"gadgetId":70540004,"configId":266070,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2477.261,"y":453.826,"z":-4395.594},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":266071,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2477.261,"y":453.826,"z":-4395.402},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":266097,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2472.529,"y":369.743,"z":-4398.673},"rot":{"x":0.0,"y":279.194,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":266122,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2479.523,"y":371.08,"z":-4395.325},"rot":{"x":22.195,"y":54.614,"z":3.508}},{"monsterId":0,"gadgetId":70520033,"configId":266050,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2465.232,"y":323.803,"z":-4407.383},"rot":{"x":0.0,"y":219.821,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":266095,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2456.135,"y":369.113,"z":-4407.266},"rot":{"x":15.905,"y":102.673,"z":351.611}},{"monsterId":0,"gadgetId":70590036,"configId":266096,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2468.911,"y":371.132,"z":-4397.88},"rot":{"x":349.375,"y":349.289,"z":33.642}},{"monsterId":0,"gadgetId":70590036,"configId":266121,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2470.711,"y":370.466,"z":-4400.509},"rot":{"x":325.424,"y":52.62,"z":6.4}},{"monsterId":0,"gadgetId":70520002,"configId":266123,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2469.183,"y":370.864,"z":-4401.689},"rot":{"x":18.185,"y":19.383,"z":352.23}},{"monsterId":0,"gadgetId":70520034,"configId":266017,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2442.174,"y":366.153,"z":-4408.035},"rot":{"x":0.0,"y":206.986,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266102,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2416.28,"y":301.525,"z":-4402.461},"rot":{"x":0.0,"y":295.459,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266101,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2413.764,"y":301.245,"z":-4402.742},"rot":{"x":0.0,"y":249.459,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266100,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2416.156,"y":300.235,"z":-4403.754},"rot":{"x":0.0,"y":200.459,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":266011,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2475.543,"y":380.734,"z":-4445.609},"rot":{"x":282.647,"y":316.104,"z":280.287}},{"monsterId":0,"gadgetId":70520028,"configId":266114,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2470.199,"y":403.272,"z":-4432.783},"rot":{"x":298.011,"y":124.957,"z":354.228}},{"monsterId":0,"gadgetId":70520028,"configId":266068,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2464.515,"y":317.565,"z":-4448.635},"rot":{"x":331.418,"y":358.474,"z":350.633}},{"monsterId":0,"gadgetId":70520034,"configId":266131,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2467.733,"y":443.213,"z":-4387.217},"rot":{"x":0.0,"y":217.641,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":266127,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2461.707,"y":444.305,"z":-4390.058},"rot":{"x":0.0,"y":0.0,"z":331.064}},{"monsterId":0,"gadgetId":70520034,"configId":266024,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2468.781,"y":444.24,"z":-4374.628},"rot":{"x":0.0,"y":130.302,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":266040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2450.855,"y":413.514,"z":-4389.749},"rot":{"x":0.0,"y":304.163,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":266039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2450.8,"y":413.102,"z":-4390.189},"rot":{"x":0.0,"y":304.163,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":266038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2451.413,"y":412.816,"z":-4389.674},"rot":{"x":0.0,"y":304.163,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266081,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2426.845,"y":339.87,"z":-4374.654},"rot":{"x":275.242,"y":359.546,"z":0.452}},{"monsterId":0,"gadgetId":70520026,"configId":266080,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2427.415,"y":340.076,"z":-4376.025},"rot":{"x":69.611,"y":180.0,"z":233.633}},{"monsterId":0,"gadgetId":70520026,"configId":266079,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2431.655,"y":360.333,"z":-4386.048},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266078,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2430.827,"y":360.053,"z":-4388.44},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266077,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2431.645,"y":357.549,"z":-4385.912},"rot":{"x":0.0,"y":265.0,"z":251.426}},{"monsterId":0,"gadgetId":70520028,"configId":266064,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2514.0,"y":178.2,"z":-4415.428},"rot":{"x":9.703,"y":357.703,"z":333.417}},{"monsterId":0,"gadgetId":70520028,"configId":266062,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2519.778,"y":187.4,"z":-4423.634},"rot":{"x":346.97,"y":8.257,"z":346.376}},{"monsterId":0,"gadgetId":70520028,"configId":266065,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2555.363,"y":168.19,"z":-4430.079},"rot":{"x":351.026,"y":306.197,"z":34.333}},{"monsterId":0,"gadgetId":70540001,"configId":266032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2395.994,"y":208.377,"z":-4467.888},"rot":{"x":0.0,"y":39.109,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":266031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2396.437,"y":207.965,"z":-4467.905},"rot":{"x":0.0,"y":39.109,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":266030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2395.871,"y":207.679,"z":-4467.339},"rot":{"x":0.0,"y":39.109,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266015,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2400.238,"y":258.445,"z":-4420.067},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266014,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2399.41,"y":258.165,"z":-4422.459},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":266013,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2401.352,"y":257.155,"z":-4420.734},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":266075,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2441.07,"y":310.339,"z":-4417.193},"rot":{"x":289.527,"y":41.977,"z":283.381}},{"monsterId":0,"gadgetId":70520009,"configId":266003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2375.389,"y":247.783,"z":-4395.168},"rot":{"x":358.542,"y":163.305,"z":10.593}},{"monsterId":0,"gadgetId":70520034,"configId":266018,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2376.756,"y":245.186,"z":-4372.959},"rot":{"x":0.0,"y":4.131,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":266063,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2513.149,"y":217.337,"z":-4381.772},"rot":{"x":0.924,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":266092,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-2547.774,"y":319.03,"z":-4508.678},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266067,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2507.058,"y":310.365,"z":-4493.648},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":266066,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2504.114,"y":309.764,"z":-4498.99},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":266005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2392.362,"y":201.361,"z":-4505.716},"rot":{"x":0.0,"y":345.274,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":266045,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2357.839,"y":200.063,"z":-4471.959},"rot":{"x":0.0,"y":103.154,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":266007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2359.249,"y":233.789,"z":-4449.492},"rot":{"x":0.0,"y":56.277,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":266120,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2355.973,"y":225.265,"z":-4378.715},"rot":{"x":351.515,"y":288.183,"z":351.717}},{"monsterId":0,"gadgetId":70520028,"configId":266055,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2394.463,"y":255.652,"z":-4398.833},"rot":{"x":273.3,"y":124.4,"z":221.9}},{"monsterId":0,"gadgetId":70520025,"configId":266052,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-2334.969,"y":199.458,"z":-4375.643},"rot":{"x":0.0,"y":68.066,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":266054,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-2321.424,"y":199.459,"z":-4420.484},"rot":{"x":0.0,"y":271.659,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":266008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2329.296,"y":224.716,"z":-4430.356},"rot":{"x":342.49,"y":255.596,"z":358.485}},{"monsterId":0,"gadgetId":70520025,"configId":266053,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-2315.799,"y":199.544,"z":-4410.452},"rot":{"x":0.0,"y":290.425,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":266051,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-2309.913,"y":199.737,"z":-4372.187},"rot":{"x":0.0,"y":306.695,"z":0.0}}]},{"sceneId":3,"groupId":133220267,"blockId":0,"pos":{"x":-2934.9668,"y":0.0,"z":-4470.48},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":267002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3001.825,"y":239.268,"z":-4486.646},"rot":{"x":0.0,"y":213.389,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":267019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3008.193,"y":237.514,"z":-4458.678},"rot":{"x":0.0,"y":263.945,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":267018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3007.866,"y":237.102,"z":-4458.979},"rot":{"x":0.0,"y":263.945,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":267017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3008.668,"y":236.816,"z":-4458.981},"rot":{"x":0.0,"y":263.945,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":267036,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2987.845,"y":225.689,"z":-4418.192},"rot":{"x":0.0,"y":213.874,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":267035,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2985.704,"y":222.095,"z":-4397.329},"rot":{"x":0.0,"y":213.874,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":267011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2973.51,"y":218.62,"z":-4387.172},"rot":{"x":0.0,"y":313.053,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":267034,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2982.998,"y":216.496,"z":-4363.206},"rot":{"x":0.0,"y":213.874,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":267008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2977.574,"y":214.615,"z":-4353.701},"rot":{"x":0.0,"y":185.308,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":267013,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-3055.169,"y":242.363,"z":-4379.451},"rot":{"x":0.0,"y":39.425,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":267007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3066.115,"y":221.482,"z":-4365.77},"rot":{"x":0.0,"y":163.715,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":267012,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-3025.817,"y":235.431,"z":-4451.927},"rot":{"x":0.0,"y":66.889,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":267001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3044.732,"y":237.625,"z":-4396.82},"rot":{"x":0.0,"y":190.185,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":267010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3044.559,"y":244.59,"z":-4458.917},"rot":{"x":0.0,"y":70.604,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":267004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3068.142,"y":208.401,"z":-4544.575},"rot":{"x":0.0,"y":68.481,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":267029,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2826.235,"y":200.912,"z":-4546.716},"rot":{"x":352.875,"y":359.944,"z":0.895}},{"monsterId":0,"gadgetId":70520002,"configId":267030,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2824.261,"y":200.713,"z":-4548.644},"rot":{"x":1.893,"y":262.353,"z":0.649}},{"monsterId":0,"gadgetId":70520002,"configId":267031,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2827.214,"y":201.313,"z":-4538.233},"rot":{"x":13.008,"y":359.291,"z":351.082}},{"monsterId":0,"gadgetId":70540001,"configId":267023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2823.449,"y":232.06,"z":-4492.558},"rot":{"x":0.0,"y":345.118,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":267022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2823.695,"y":231.648,"z":-4492.926},"rot":{"x":0.0,"y":345.118,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":267021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2823.821,"y":231.362,"z":-4492.135},"rot":{"x":0.0,"y":345.118,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":267009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2830.508,"y":200.981,"z":-4480.903},"rot":{"x":0.0,"y":165.794,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":267033,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2839.643,"y":200.0,"z":-4582.533},"rot":{"x":0.0,"y":283.229,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":267032,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2838.944,"y":200.016,"z":-4579.629},"rot":{"x":4.574,"y":359.647,"z":351.183}},{"monsterId":0,"gadgetId":70520029,"configId":267024,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2865.095,"y":199.298,"z":-4525.377},"rot":{"x":0.0,"y":257.437,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":267006,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2865.476,"y":198.21,"z":-4432.304},"rot":{"x":0.0,"y":317.51,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":267028,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2876.235,"y":199.079,"z":-4539.341},"rot":{"x":0.0,"y":21.211,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":267027,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2875.785,"y":198.992,"z":-4541.8},"rot":{"x":0.0,"y":21.211,"z":0.0}}]},{"sceneId":3,"groupId":133220268,"blockId":0,"pos":{"x":-2249.3037,"y":0.0,"z":-4244.853},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":268004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2297.969,"y":226.815,"z":-4264.83},"rot":{"x":0.0,"y":277.609,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":268003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2299.996,"y":223.21,"z":-4217.902},"rot":{"x":0.0,"y":64.808,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":268007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2296.975,"y":201.816,"z":-4167.05},"rot":{"x":0.0,"y":43.161,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":268013,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2285.137,"y":230.573,"z":-4291.891},"rot":{"x":0.0,"y":71.135,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":268011,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2290.79,"y":204.055,"z":-4188.529},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":268010,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2289.963,"y":203.775,"z":-4190.921},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":268009,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2291.904,"y":202.765,"z":-4189.196},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":268001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2213.751,"y":228.507,"z":-4285.302},"rot":{"x":0.0,"y":144.284,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":268034,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2201.93,"y":202.638,"z":-4276.355},"rot":{"x":345.505,"y":0.808,"z":346.046}},{"monsterId":0,"gadgetId":70510005,"configId":268032,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-2199.163,"y":200.584,"z":-4279.637},"rot":{"x":342.37,"y":3.767,"z":349.295}},{"monsterId":0,"gadgetId":70590036,"configId":268030,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2198.652,"y":203.042,"z":-4257.61},"rot":{"x":33.941,"y":83.963,"z":4.265}},{"monsterId":0,"gadgetId":70590036,"configId":268029,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2201.613,"y":202.035,"z":-4254.088},"rot":{"x":25.413,"y":290.463,"z":341.833}},{"monsterId":0,"gadgetId":70590036,"configId":268028,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2208.559,"y":205.598,"z":-4253.919},"rot":{"x":73.906,"y":359.778,"z":358.2}},{"monsterId":0,"gadgetId":70590036,"configId":268027,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2206.236,"y":201.172,"z":-4250.761},"rot":{"x":16.501,"y":354.625,"z":343.419}},{"monsterId":0,"gadgetId":70520034,"configId":268022,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2266.819,"y":226.038,"z":-4278.985},"rot":{"x":0.0,"y":8.733,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":268015,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2240.042,"y":226.803,"z":-4284.773},"rot":{"x":0.0,"y":230.135,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":268026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2248.666,"y":201.495,"z":-4230.75},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133210028,"blockId":0,"pos":{"x":-4006.744,"y":0.0,"z":-832.2542},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":28005,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4008.083,"y":195.544,"z":-835.848},"rot":{"x":0.0,"y":174.827,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":28002,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":-4010.755,"y":195.573,"z":-834.029},"rot":{"x":0.0,"y":174.827,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":28006,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4004.877,"y":195.61,"z":-837.604},"rot":{"x":0.0,"y":174.827,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":28004,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4001.594,"y":195.525,"z":-830.495},"rot":{"x":0.0,"y":238.447,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":28003,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":-4004.795,"y":195.606,"z":-829.181},"rot":{"x":0.272,"y":98.742,"z":358.231}},{"monsterId":0,"gadgetId":70520007,"configId":28001,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":-4010.359,"y":195.754,"z":-826.368},"rot":{"x":359.876,"y":227.807,"z":2.528}}]},{"sceneId":3,"groupId":133220269,"blockId":0,"pos":{"x":-2756.2307,"y":0.0,"z":-4613.166},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":269009,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-2715.803,"y":199.711,"z":-4609.156},"rot":{"x":0.0,"y":281.047,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":269005,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2780.466,"y":198.677,"z":-4615.42},"rot":{"x":0.0,"y":58.288,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":269004,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2772.423,"y":198.892,"z":-4614.922},"rot":{"x":0.0,"y":58.288,"z":0.0}}]},{"sceneId":3,"groupId":133220270,"blockId":0,"pos":{"x":-2495.8635,"y":0.0,"z":-4546.588},"spawns":[{"monsterId":0,"gadgetId":70520034,"configId":270004,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2477.82,"y":215.66,"z":-4617.746},"rot":{"x":0.0,"y":80.82,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":270003,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2513.907,"y":330.822,"z":-4475.43},"rot":{"x":0.0,"y":148.976,"z":0.0}}]},{"sceneId":3,"groupId":133212079,"blockId":0,"pos":{"x":-3726.4858,"y":0.0,"z":-2413.7754},"spawns":[{"monsterId":0,"gadgetId":70520027,"configId":79041,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3827.142,"y":240.563,"z":-2487.431},"rot":{"x":0.0,"y":246.016,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":79038,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3828.959,"y":264.51,"z":-2449.923},"rot":{"x":15.602,"y":234.777,"z":43.463}},{"monsterId":0,"gadgetId":70520027,"configId":79037,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3826.74,"y":263.114,"z":-2451.954},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":79011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3806.563,"y":263.043,"z":-2437.149},"rot":{"x":0.0,"y":122.352,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":79065,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3804.589,"y":280.995,"z":-2412.109},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":79015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3803.781,"y":285.18,"z":-2339.025},"rot":{"x":0.0,"y":109.694,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":79035,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3790.149,"y":263.872,"z":-2317.317},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":79033,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3791.263,"y":262.582,"z":-2317.984},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":79034,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3789.322,"y":263.592,"z":-2319.709},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":79075,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-3778.749,"y":246.132,"z":-2452.907},"rot":{"x":0.0,"y":3.087,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3790.317,"y":279.344,"z":-2415.767},"rot":{"x":0.0,"y":55.681,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3790.747,"y":278.932,"z":-2415.657},"rot":{"x":0.0,"y":55.681,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3790.042,"y":278.646,"z":-2415.275},"rot":{"x":0.0,"y":55.681,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":79003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3756.998,"y":239.802,"z":-2470.557},"rot":{"x":0.0,"y":248.524,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":79002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3766.395,"y":262.942,"z":-2376.187},"rot":{"x":0.0,"y":24.06,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":79083,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3768.241,"y":264.447,"z":-2318.916},"rot":{"x":0.0,"y":0.0,"z":347.289}},{"monsterId":0,"gadgetId":70510005,"configId":79081,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3770.064,"y":260.379,"z":-2317.072},"rot":{"x":16.566,"y":315.79,"z":344.633}},{"monsterId":0,"gadgetId":70510005,"configId":79077,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3771.491,"y":265.653,"z":-2317.512},"rot":{"x":0.0,"y":0.0,"z":345.379}},{"monsterId":0,"gadgetId":70510005,"configId":79079,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3768.779,"y":264.333,"z":-2322.677},"rot":{"x":16.384,"y":81.786,"z":10.87}},{"monsterId":0,"gadgetId":70520027,"configId":79040,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3838.809,"y":251.078,"z":-2479.312},"rot":{"x":0.0,"y":233.539,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":79039,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3832.073,"y":259.395,"z":-2464.333},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":79036,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3835.824,"y":296.384,"z":-2376.664},"rot":{"x":0.0,"y":75.302,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":79042,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3832.74,"y":202.442,"z":-2524.657},"rot":{"x":0.0,"y":305.078,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":79009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3825.768,"y":224.898,"z":-2558.546},"rot":{"x":0.0,"y":34.205,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":79056,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3758.472,"y":204.021,"z":-2515.495},"rot":{"x":348.538,"y":309.118,"z":42.739}},{"monsterId":0,"gadgetId":70520002,"configId":79053,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3753.698,"y":201.61,"z":-2523.192},"rot":{"x":340.007,"y":357.514,"z":14.037}},{"monsterId":0,"gadgetId":70520002,"configId":79054,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3765.997,"y":202.097,"z":-2513.938},"rot":{"x":322.62,"y":351.381,"z":25.116}},{"monsterId":0,"gadgetId":70520005,"configId":79073,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3761.702,"y":231.324,"z":-2506.437},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":79055,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3751.755,"y":204.964,"z":-2520.01},"rot":{"x":323.822,"y":357.285,"z":8.3}},{"monsterId":0,"gadgetId":70520027,"configId":79044,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3743.933,"y":261.373,"z":-2378.106},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":79006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3720.821,"y":226.669,"z":-2524.238},"rot":{"x":0.0,"y":144.597,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":79072,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3763.772,"y":239.069,"z":-2481.132},"rot":{"x":348.692,"y":359.455,"z":6.228}},{"monsterId":0,"gadgetId":70520027,"configId":79043,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3733.313,"y":250.567,"z":-2371.616},"rot":{"x":0.0,"y":83.966,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":79014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3718.572,"y":251.202,"z":-2360.088},"rot":{"x":0.0,"y":23.899,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3704.315,"y":238.435,"z":-2484.635},"rot":{"x":0.0,"y":44.482,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3704.758,"y":238.023,"z":-2484.611},"rot":{"x":0.0,"y":44.482,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3704.141,"y":237.737,"z":-2484.1},"rot":{"x":0.0,"y":44.482,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":79045,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3695.849,"y":251.083,"z":-2376.821},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79071,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3721.157,"y":254.434,"z":-2338.277},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79070,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3721.49,"y":254.022,"z":-2338.57},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79069,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3721.408,"y":253.736,"z":-2337.773},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":79013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3691.689,"y":202.549,"z":-2465.651},"rot":{"x":0.0,"y":157.849,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":79058,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3673.089,"y":237.456,"z":-2396.94},"rot":{"x":355.451,"y":0.388,"z":350.248}},{"monsterId":0,"gadgetId":70520005,"configId":79007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3680.571,"y":241.93,"z":-2408.567},"rot":{"x":0.0,"y":248.626,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":79057,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3674.168,"y":237.936,"z":-2387.751},"rot":{"x":348.551,"y":0.448,"z":355.533}},{"monsterId":0,"gadgetId":70520027,"configId":79050,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3674.426,"y":246.13,"z":-2364.649},"rot":{"x":0.0,"y":330.82,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":79004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3725.946,"y":249.862,"z":-2309.113},"rot":{"x":0.0,"y":204.511,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":79060,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3662.236,"y":236.343,"z":-2396.461},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":79059,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3665.575,"y":236.472,"z":-2398.688},"rot":{"x":356.424,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3659.99,"y":238.551,"z":-2372.265},"rot":{"x":0.0,"y":269.477,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":79061,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3669.387,"y":237.234,"z":-2391.497},"rot":{"x":27.484,"y":97.665,"z":6.711}},{"monsterId":0,"gadgetId":70540001,"configId":79022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3659.192,"y":238.837,"z":-2372.34},"rot":{"x":0.0,"y":269.477,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3659.488,"y":239.249,"z":-2372.01},"rot":{"x":0.0,"y":269.477,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":79049,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3668.26,"y":244.649,"z":-2366.79},"rot":{"x":0.0,"y":55.365,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":79046,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3658.029,"y":244.302,"z":-2354.198},"rot":{"x":11.167,"y":344.306,"z":344.001}},{"monsterId":0,"gadgetId":70520009,"configId":79001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3665.353,"y":240.599,"z":-2317.085},"rot":{"x":0.0,"y":81.895,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":79008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3603.898,"y":200.616,"z":-2534.913},"rot":{"x":0.0,"y":78.074,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":79005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3584.784,"y":200.423,"z":-2460.966},"rot":{"x":0.0,"y":337.217,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":79012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3635.3,"y":200.519,"z":-2441.249},"rot":{"x":0.0,"y":252.492,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":79010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3605.174,"y":239.015,"z":-2378.228},"rot":{"x":0.0,"y":115.455,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3669.746,"y":202.479,"z":-2520.375},"rot":{"x":0.0,"y":318.511,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3669.802,"y":202.067,"z":-2520.815},"rot":{"x":0.0,"y":318.511,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":79029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3670.268,"y":201.781,"z":-2520.164},"rot":{"x":0.0,"y":318.511,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":79048,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3639.631,"y":260.434,"z":-2343.081},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":79047,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3644.614,"y":247.918,"z":-2347.839},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":79051,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3641.481,"y":240.799,"z":-2361.052},"rot":{"x":70.822,"y":184.616,"z":278.749}},{"monsterId":0,"gadgetId":70520028,"configId":79052,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3591.763,"y":220.155,"z":-2322.617},"rot":{"x":344.285,"y":249.109,"z":359.5}}]},{"sceneId":3,"groupId":133222289,"blockId":0,"pos":{"x":-4645.5625,"y":0.0,"z":-4292.8726},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":289004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4645.818,"y":151.715,"z":-4293.167},"rot":{"x":0.0,"y":340.711,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":289005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4646.723,"y":151.828,"z":-4295.322},"rot":{"x":0.0,"y":255.085,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":289006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4644.146,"y":152.028,"z":-4290.13},"rot":{"x":0.0,"y":30.34,"z":0.0}}]},{"sceneId":3,"groupId":133212054,"blockId":0,"pos":{"x":-3962.045,"y":0.0,"z":-2448.7493},"spawns":[{"monsterId":0,"gadgetId":70520028,"configId":54081,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3843.939,"y":299.227,"z":-2353.134},"rot":{"x":279.203,"y":136.567,"z":81.14}},{"monsterId":0,"gadgetId":70520027,"configId":54066,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-4011.975,"y":228.068,"z":-2490.708},"rot":{"x":337.62,"y":149.487,"z":1.544}},{"monsterId":0,"gadgetId":70520033,"configId":54098,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4003.487,"y":202.421,"z":-2364.971},"rot":{"x":0.0,"y":92.222,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":54007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4006.042,"y":201.883,"z":-2371.545},"rot":{"x":0.0,"y":174.521,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3992.779,"y":255.493,"z":-2317.039},"rot":{"x":0.0,"y":314.223,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":54094,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3983.397,"y":200.387,"z":-2416.58},"rot":{"x":0.0,"y":337.99,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3970.625,"y":254.872,"z":-2383.893},"rot":{"x":0.0,"y":221.815,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3970.032,"y":255.158,"z":-2383.354},"rot":{"x":0.0,"y":221.815,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3970.476,"y":255.57,"z":-2383.35},"rot":{"x":0.0,"y":221.815,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":54017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3947.635,"y":265.601,"z":-2488.248},"rot":{"x":0.0,"y":93.887,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3941.128,"y":358.445,"z":-2435.884},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":54099,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3938.278,"y":313.201,"z":-2392.797},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3892.698,"y":257.593,"z":-2477.715},"rot":{"x":0.0,"y":152.24,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3904.373,"y":340.209,"z":-2399.002},"rot":{"x":0.0,"y":209.048,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":54011,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3904.641,"y":262.676,"z":-2338.699},"rot":{"x":0.0,"y":320.721,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3882.938,"y":300.318,"z":-2351.107},"rot":{"x":0.0,"y":137.227,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3885.906,"y":273.326,"z":-2332.539},"rot":{"x":0.0,"y":137.227,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3885.38,"y":272.628,"z":-2332.738},"rot":{"x":0.0,"y":137.227,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3885.861,"y":272.914,"z":-2332.097},"rot":{"x":0.0,"y":137.227,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":54090,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3854.392,"y":265.86,"z":-2442.077},"rot":{"x":354.833,"y":272.23,"z":35.485}},{"monsterId":0,"gadgetId":70520009,"configId":54020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3865.417,"y":302.091,"z":-2435.647},"rot":{"x":0.0,"y":251.439,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54054,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3862.93,"y":290.728,"z":-2332.715},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54055,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3846.524,"y":265.034,"z":-2463.344},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":54091,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3845.846,"y":266.68,"z":-2439.562},"rot":{"x":21.203,"y":214.987,"z":32.069}},{"monsterId":0,"gadgetId":70520002,"configId":54089,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3842.574,"y":265.292,"z":-2440.24},"rot":{"x":330.806,"y":300.205,"z":15.029}},{"monsterId":0,"gadgetId":70520009,"configId":54002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3850.8,"y":308.198,"z":-2390.677},"rot":{"x":0.0,"y":42.387,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":54084,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3932.114,"y":351.385,"z":-2412.221},"rot":{"x":287.332,"y":214.868,"z":56.024}},{"monsterId":0,"gadgetId":70520005,"configId":54019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3898.222,"y":249.76,"z":-2517.73},"rot":{"x":0.0,"y":47.303,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3900.361,"y":246.565,"z":-2529.188},"rot":{"x":0.0,"y":163.707,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3900.216,"y":246.279,"z":-2529.976},"rot":{"x":0.0,"y":163.707,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3900.598,"y":246.977,"z":-2529.563},"rot":{"x":0.0,"y":163.707,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54057,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3852.899,"y":240.316,"z":-2528.363},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54056,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3845.349,"y":243.634,"z":-2513.013},"rot":{"x":0.0,"y":251.655,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3991.757,"y":209.798,"z":-2538.582},"rot":{"x":0.0,"y":275.729,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54061,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3969.256,"y":229.421,"z":-2542.214},"rot":{"x":0.0,"y":264.915,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":54050,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3957.4,"y":211.883,"z":-2542.686},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54060,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3971.898,"y":231.294,"z":-2543.288},"rot":{"x":305.817,"y":273.634,"z":314.573}},{"monsterId":0,"gadgetId":70520005,"configId":54013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3952.157,"y":212.581,"z":-2532.292},"rot":{"x":0.0,"y":38.852,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":54051,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3955.458,"y":212.893,"z":-2544.411},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":54052,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3956.286,"y":213.173,"z":-2542.019},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54069,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3869.226,"y":210.519,"z":-2550.667},"rot":{"x":305.838,"y":176.285,"z":358.308}},{"monsterId":0,"gadgetId":70520027,"configId":54059,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3942.858,"y":204.688,"z":-2554.805},"rot":{"x":0.0,"y":312.035,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54093,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3856.848,"y":210.933,"z":-2552.914},"rot":{"x":354.108,"y":226.056,"z":352.367}},{"monsterId":0,"gadgetId":70520027,"configId":54058,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3867.573,"y":203.444,"z":-2557.582},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54092,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3866.532,"y":202.979,"z":-2552.314},"rot":{"x":322.365,"y":217.893,"z":285.198}},{"monsterId":0,"gadgetId":70520027,"configId":54053,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3876.298,"y":287.103,"z":-2311.904},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4084.479,"y":254.529,"z":-2321.531},"rot":{"x":0.0,"y":337.296,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4084.673,"y":254.117,"z":-2321.93},"rot":{"x":0.0,"y":337.296,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4084.905,"y":253.831,"z":-2321.164},"rot":{"x":0.0,"y":337.296,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":54096,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4039.544,"y":200.203,"z":-2357.56},"rot":{"x":0.0,"y":255.829,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54068,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-4047.378,"y":243.525,"z":-2356.055},"rot":{"x":0.0,"y":236.15,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4091.397,"y":250.576,"z":-2346.25},"rot":{"x":0.0,"y":101.556,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4045.977,"y":255.597,"z":-2307.72},"rot":{"x":0.0,"y":138.369,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":54097,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4017.849,"y":210.823,"z":-2332.455},"rot":{"x":0.0,"y":63.634,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":54095,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4021.614,"y":201.197,"z":-2395.158},"rot":{"x":0.0,"y":290.825,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54065,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-4011.888,"y":227.858,"z":-2493.793},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54063,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-4001.468,"y":226.407,"z":-2493.741},"rot":{"x":0.0,"y":141.361,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54067,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-4000.688,"y":217.21,"z":-2519.773},"rot":{"x":0.0,"y":272.811,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54062,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-4001.852,"y":229.069,"z":-2513.158},"rot":{"x":344.909,"y":328.481,"z":353.906}},{"monsterId":0,"gadgetId":70520009,"configId":54012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4007.902,"y":218.007,"z":-2514.751},"rot":{"x":0.0,"y":89.46,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":54088,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4022.137,"y":212.259,"z":-2493.677},"rot":{"x":338.818,"y":352.867,"z":36.872}},{"monsterId":0,"gadgetId":70590036,"configId":54087,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4020.294,"y":209.967,"z":-2500.398},"rot":{"x":336.61,"y":356.381,"z":17.355}},{"monsterId":0,"gadgetId":70520009,"configId":54018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4028.498,"y":207.101,"z":-2500.897},"rot":{"x":0.0,"y":56.517,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":54064,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-4015.358,"y":239.716,"z":-2501.838},"rot":{"x":317.433,"y":13.022,"z":327.342}},{"monsterId":0,"gadgetId":70520009,"configId":54010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4013.165,"y":233.648,"z":-2470.543},"rot":{"x":0.0,"y":17.998,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":54086,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4062.714,"y":203.256,"z":-2477.918},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":54085,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4064.264,"y":202.266,"z":-2478.945},"rot":{"x":0.0,"y":105.543,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":54048,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4071.014,"y":226.035,"z":-2458.292},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":54047,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4070.187,"y":225.755,"z":-2460.684},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":54006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4053.909,"y":202.588,"z":-2398.243},"rot":{"x":0.0,"y":212.458,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3992.015,"y":210.21,"z":-2538.221},"rot":{"x":0.0,"y":275.729,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3992.542,"y":209.512,"z":-2538.42},"rot":{"x":0.0,"y":275.729,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":54046,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4072.128,"y":224.745,"z":-2458.959},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4090.434,"y":221.097,"z":-2443.82},"rot":{"x":0.0,"y":224.142,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4005.629,"y":202.774,"z":-2556.702},"rot":{"x":0.0,"y":275.729,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":54083,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3946.183,"y":217.477,"z":-2516.99},"rot":{"x":276.103,"y":94.95,"z":350.242}}]},{"sceneId":3,"groupId":133212056,"blockId":0,"pos":{"x":-3908.1797,"y":0.0,"z":-3035.2341},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":56046,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3871.043,"y":247.127,"z":-3047.494},"rot":{"x":0.0,"y":273.581,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":56045,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3871.091,"y":245.617,"z":-3040.741},"rot":{"x":350.565,"y":290.701,"z":356.093}},{"monsterId":0,"gadgetId":70590036,"configId":56044,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3868.391,"y":245.629,"z":-3045.168},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":56043,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3864.753,"y":244.439,"z":-3038.319},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":56042,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3875.82,"y":246.229,"z":-3044.214},"rot":{"x":0.0,"y":117.814,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":56037,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3902.121,"y":245.12,"z":-3036.547},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":56036,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3901.294,"y":244.84,"z":-3038.939},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":56035,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3903.235,"y":243.83,"z":-3037.214},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":56008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3918.869,"y":201.766,"z":-3068.823},"rot":{"x":0.0,"y":298.917,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":56041,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3961.887,"y":198.522,"z":-3066.045},"rot":{"x":0.0,"y":119.83,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":56040,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3958.378,"y":198.315,"z":-3064.111},"rot":{"x":0.0,"y":29.87,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":56003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3963.198,"y":201.766,"z":-3041.652},"rot":{"x":0.0,"y":127.649,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":56006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3966.449,"y":205.639,"z":-2993.637},"rot":{"x":0.0,"y":250.874,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":56017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3904.742,"y":249.736,"z":-3009.486},"rot":{"x":0.0,"y":206.225,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":56016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3904.314,"y":249.324,"z":-3009.371},"rot":{"x":0.0,"y":206.225,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":56015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3904.74,"y":249.038,"z":-3010.05},"rot":{"x":0.0,"y":206.225,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":56007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3898.734,"y":247.186,"z":-3007.171},"rot":{"x":0.0,"y":139.068,"z":0.0}}]},{"sceneId":3,"groupId":133217179,"blockId":0,"pos":{"x":-4309.705,"y":0.0,"z":-3727.2131},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":179012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4346.659,"y":209.996,"z":-3738.808},"rot":{"x":0.0,"y":89.416,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":179011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4346.955,"y":209.584,"z":-3738.478},"rot":{"x":0.0,"y":89.416,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":179010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4346.157,"y":209.298,"z":-3738.552},"rot":{"x":0.0,"y":89.416,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":179024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4326.835,"y":206.011,"z":-3726.536},"rot":{"x":0.0,"y":71.724,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":179018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4313.552,"y":206.295,"z":-3715.543},"rot":{"x":0.0,"y":134.867,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":179026,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4321.101,"y":200.0,"z":-3673.46},"rot":{"x":0.0,"y":351.597,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":179016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4307.317,"y":203.962,"z":-3694.745},"rot":{"x":0.0,"y":60.38,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":179015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4307.736,"y":203.55,"z":-3694.601},"rot":{"x":0.0,"y":60.38,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":179014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4307.003,"y":203.264,"z":-3694.278},"rot":{"x":0.0,"y":60.38,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":179025,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4308.704,"y":200.0,"z":-3664.652},"rot":{"x":0.0,"y":351.597,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":179017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4286.339,"y":201.967,"z":-3668.965},"rot":{"x":0.0,"y":347.411,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":179004,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4275.791,"y":198.544,"z":-3629.72},"rot":{"x":0.0,"y":351.597,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":179027,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4254.528,"y":199.199,"z":-3648.279},"rot":{"x":0.0,"y":351.597,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":179023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4325.903,"y":203.717,"z":-3803.553},"rot":{"x":0.0,"y":261.996,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":179019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4258.262,"y":202.505,"z":-3802.048},"rot":{"x":0.0,"y":13.863,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":179031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4313.91,"y":202.749,"z":-3819.01},"rot":{"x":348.805,"y":235.767,"z":8.567}},{"monsterId":0,"gadgetId":70540001,"configId":179030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4313.595,"y":202.244,"z":-3819.12},"rot":{"x":348.805,"y":235.767,"z":8.567}},{"monsterId":0,"gadgetId":70540001,"configId":179029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4314.354,"y":202.133,"z":-3819.488},"rot":{"x":348.805,"y":235.767,"z":8.567}}]},{"sceneId":3,"groupId":133217180,"blockId":0,"pos":{"x":-4449.1733,"y":0.0,"z":-3789.6257},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":180037,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-4472.882,"y":219.56,"z":-3825.549},"rot":{"x":358.325,"y":255.423,"z":340.493}},{"monsterId":0,"gadgetId":70590036,"configId":180036,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4474.152,"y":217.716,"z":-3820.37},"rot":{"x":341.538,"y":153.595,"z":5.843}},{"monsterId":0,"gadgetId":70510005,"configId":180029,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4385.446,"y":214.575,"z":-3786.646},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":180022,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4389.673,"y":214.024,"z":-3779.942},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":180024,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4387.959,"y":214.186,"z":-3783.273},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":180026,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-4386.312,"y":216.034,"z":-3782.602},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":180027,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-4384.931,"y":214.244,"z":-3773.973},"rot":{"x":0.0,"y":36.279,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":180044,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4362.956,"y":218.115,"z":-3783.042},"rot":{"x":0.0,"y":226.918,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":180051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4502.775,"y":212.323,"z":-3813.126},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":180048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4532.919,"y":209.578,"z":-3797.955},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":180047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4539.183,"y":209.244,"z":-3798.629},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":180046,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4537.084,"y":199.259,"z":-3750.135},"rot":{"x":0.0,"y":327.613,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":180052,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4567.582,"y":199.399,"z":-3822.363},"rot":{"x":0.0,"y":327.613,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":180045,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4568.607,"y":199.631,"z":-3812.79},"rot":{"x":0.0,"y":42.016,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":180017,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4555.333,"y":204.977,"z":-3793.781},"rot":{"x":0.0,"y":249.164,"z":355.006}},{"monsterId":0,"gadgetId":70520026,"configId":180015,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4554.274,"y":203.789,"z":-3794.686},"rot":{"x":355.025,"y":154.145,"z":0.436}},{"monsterId":0,"gadgetId":70520026,"configId":180016,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4553.38,"y":204.627,"z":-3792.184},"rot":{"x":356.41,"y":203.273,"z":356.526}},{"monsterId":0,"gadgetId":70520035,"configId":180033,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4400.903,"y":229.674,"z":-3839.674},"rot":{"x":0.0,"y":303.989,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":180034,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4401.101,"y":229.473,"z":-3839.703},"rot":{"x":21.666,"y":272.561,"z":5.608}},{"monsterId":0,"gadgetId":70520033,"configId":180020,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4392.865,"y":219.181,"z":-3807.42},"rot":{"x":355.904,"y":122.151,"z":356.828}},{"monsterId":0,"gadgetId":70510005,"configId":180031,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4396.829,"y":216.641,"z":-3795.142},"rot":{"x":0.0,"y":33.226,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":180002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4400.489,"y":211.194,"z":-3754.842},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":180003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4400.571,"y":211.48,"z":-3755.639},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":180004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4400.238,"y":211.892,"z":-3755.346},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":180005,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4401.434,"y":210.8,"z":-3755.806},"rot":{"x":316.16,"y":0.0,"z":333.015}},{"monsterId":0,"gadgetId":70520033,"configId":180021,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4378.927,"y":225.373,"z":-3839.866},"rot":{"x":0.0,"y":38.509,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":180043,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4377.911,"y":215.634,"z":-3764.6},"rot":{"x":0.0,"y":181.091,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":180006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4595.679,"y":200.1,"z":-3765.69},"rot":{"x":1.812,"y":60.749,"z":355.916}},{"monsterId":0,"gadgetId":70520029,"configId":180050,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4481.746,"y":199.78,"z":-3754.53},"rot":{"x":0.0,"y":327.613,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":180009,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4429.081,"y":213.529,"z":-3766.572},"rot":{"x":0.0,"y":91.282,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":180008,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4429.273,"y":213.529,"z":-3766.567},"rot":{"x":0.0,"y":91.282,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":180049,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4466.616,"y":199.65,"z":-3736.172},"rot":{"x":0.0,"y":327.613,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":180040,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4470.18,"y":221.012,"z":-3822.784},"rot":{"x":4.636,"y":296.548,"z":344.038}},{"monsterId":0,"gadgetId":70520009,"configId":180039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4460.615,"y":219.375,"z":-3815.05},"rot":{"x":344.566,"y":157.659,"z":3.867}},{"monsterId":0,"gadgetId":70590036,"configId":180035,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4471.153,"y":220.996,"z":-3825.402},"rot":{"x":18.221,"y":329.421,"z":356.062}},{"monsterId":0,"gadgetId":70520033,"configId":180042,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4454.251,"y":215.008,"z":-3792.288},"rot":{"x":0.0,"y":135.018,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":180041,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4469.117,"y":211.36,"z":-3799.116},"rot":{"x":0.0,"y":97.767,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":180018,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4526.303,"y":198.483,"z":-3706.372},"rot":{"x":0.0,"y":351.597,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":180019,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4517.076,"y":198.518,"z":-3703.254},"rot":{"x":0.0,"y":351.597,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":180013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4364.69,"y":197.532,"z":-3807.948},"rot":{"x":0.0,"y":87.732,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":180012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4362.652,"y":197.766,"z":-3806.33},"rot":{"x":0.0,"y":250.356,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":180011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4355.298,"y":211.359,"z":-3833.228},"rot":{"x":0.0,"y":157.285,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":180010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4354.0,"y":211.534,"z":-3833.526},"rot":{"x":0.0,"y":105.174,"z":0.0}}]},{"sceneId":3,"groupId":133217181,"blockId":0,"pos":{"x":-4448.527,"y":0.0,"z":-3942.7344},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":181047,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-4547.137,"y":200.181,"z":-3863.888},"rot":{"x":358.676,"y":337.976,"z":1.501}},{"monsterId":0,"gadgetId":70540003,"configId":181045,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-4550.732,"y":200.169,"z":-3867.283},"rot":{"x":25.87,"y":40.263,"z":358.135}},{"monsterId":0,"gadgetId":70540005,"configId":181046,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-4547.742,"y":200.237,"z":-3864.04},"rot":{"x":358.016,"y":34.106,"z":359.738}},{"monsterId":0,"gadgetId":70540003,"configId":181041,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-4548.84,"y":201.688,"z":-3868.52},"rot":{"x":11.262,"y":16.787,"z":357.654}},{"monsterId":0,"gadgetId":70540003,"configId":181044,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-4556.146,"y":200.252,"z":-3858.874},"rot":{"x":308.521,"y":351.453,"z":11.454}},{"monsterId":0,"gadgetId":70540005,"configId":181049,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-4557.002,"y":200.357,"z":-3855.302},"rot":{"x":273.76,"y":148.06,"z":191.468}},{"monsterId":0,"gadgetId":70540003,"configId":181043,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-4556.349,"y":200.234,"z":-3858.763},"rot":{"x":20.438,"y":351.088,"z":335.818}},{"monsterId":0,"gadgetId":70540005,"configId":181048,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-4556.821,"y":200.417,"z":-3855.261},"rot":{"x":305.395,"y":300.629,"z":205.368}},{"monsterId":0,"gadgetId":70540005,"configId":181050,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-4556.986,"y":200.358,"z":-3855.231},"rot":{"x":284.493,"y":224.076,"z":277.444}},{"monsterId":0,"gadgetId":70520035,"configId":181052,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4396.381,"y":228.945,"z":-3840.054},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":181053,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4396.517,"y":228.744,"z":-3839.905},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":181009,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4605.882,"y":200.736,"z":-4018.324},"rot":{"x":21.666,"y":161.952,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":181008,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4605.978,"y":200.937,"z":-4018.148},"rot":{"x":0.0,"y":193.38,"z":354.199}},{"monsterId":0,"gadgetId":70520029,"configId":181065,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4595.969,"y":199.642,"z":-4018.64},"rot":{"x":0.0,"y":308.941,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":181010,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4513.301,"y":201.889,"z":-3974.186},"rot":{"x":0.0,"y":192.665,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":181042,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4338.168,"y":200.387,"z":-4023.666},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":181058,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4377.995,"y":210.129,"z":-3912.101},"rot":{"x":344.649,"y":1.289,"z":343.705}},{"monsterId":0,"gadgetId":70520001,"configId":181060,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-4382.987,"y":213.22,"z":-3909.439},"rot":{"x":343.827,"y":36.221,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":181059,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4378.084,"y":211.441,"z":-3908.974},"rot":{"x":344.649,"y":1.289,"z":343.705}},{"monsterId":0,"gadgetId":70520002,"configId":181057,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4386.449,"y":215.014,"z":-3908.106},"rot":{"x":4.636,"y":296.548,"z":344.038}},{"monsterId":0,"gadgetId":70540004,"configId":181039,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4403.533,"y":238.029,"z":-3884.514},"rot":{"x":24.605,"y":70.336,"z":14.791}},{"monsterId":0,"gadgetId":70540004,"configId":181038,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4403.698,"y":238.109,"z":-3884.572},"rot":{"x":24.605,"y":70.336,"z":14.791}},{"monsterId":0,"gadgetId":70520026,"configId":181064,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4358.939,"y":208.831,"z":-3907.117},"rot":{"x":0.0,"y":69.194,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":181063,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4360.882,"y":208.551,"z":-3908.74},"rot":{"x":0.0,"y":23.194,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":181062,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4359.959,"y":207.541,"z":-3906.312},"rot":{"x":0.0,"y":334.194,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":181019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4388.619,"y":204.938,"z":-3970.462},"rot":{"x":0.0,"y":156.625,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":181013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4386.513,"y":203.847,"z":-3971.64},"rot":{"x":0.0,"y":43.758,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":181018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4388.429,"y":204.526,"z":-3970.061},"rot":{"x":0.0,"y":156.625,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":181017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4388.188,"y":204.24,"z":-3970.825},"rot":{"x":0.0,"y":156.625,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":181015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4386.68,"y":204.545,"z":-3972.178},"rot":{"x":0.0,"y":43.758,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":181014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4387.124,"y":204.133,"z":-3972.159},"rot":{"x":0.0,"y":43.758,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":181055,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4413.35,"y":212.42,"z":-3998.04},"rot":{"x":0.0,"y":356.929,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":181005,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4428.182,"y":214.786,"z":-4010.064},"rot":{"x":0.0,"y":291.205,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":181020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4406.727,"y":209.959,"z":-3999.945},"rot":{"x":0.0,"y":352.908,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":181029,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":-4388.604,"y":202.67,"z":-4002.344},"rot":{"x":0.0,"y":202.275,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":181027,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":-4387.189,"y":202.649,"z":-4001.715},"rot":{"x":0.0,"y":338.941,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":181004,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4418.993,"y":213.486,"z":-4015.595},"rot":{"x":0.0,"y":135.885,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":181003,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4431.21,"y":218.241,"z":-4030.549},"rot":{"x":0.0,"y":96.391,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":181006,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4436.318,"y":217.16,"z":-4021.923},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":181031,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4444.165,"y":229.746,"z":-3980.656},"rot":{"x":0.0,"y":6.147,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":181032,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4444.145,"y":229.746,"z":-3980.465},"rot":{"x":0.0,"y":6.147,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":181026,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4453.12,"y":221.698,"z":-3986.771},"rot":{"x":0.0,"y":168.64,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":181024,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4454.897,"y":221.647,"z":-3987.14},"rot":{"x":0.0,"y":59.946,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":181023,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4453.327,"y":221.781,"z":-3985.083},"rot":{"x":0.0,"y":235.627,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":181021,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-4455.453,"y":221.588,"z":-3985.474},"rot":{"x":0.0,"y":158.747,"z":0.0}}]},{"sceneId":3,"groupId":133217182,"blockId":0,"pos":{"x":-4720.633,"y":0.0,"z":-4027.3982},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":182051,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4854.971,"y":199.379,"z":-4047.143},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":182050,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4861.028,"y":199.121,"z":-4048.675},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":182052,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4783.936,"y":199.21,"z":-4033.537},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":182053,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4788.944,"y":198.843,"z":-4035.053},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":182045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4749.016,"y":205.127,"z":-4081.19},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":182046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4715.452,"y":204.245,"z":-4063.236},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":182054,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-4762.625,"y":210.355,"z":-4093.783},"rot":{"x":300.316,"y":173.221,"z":6.555}},{"monsterId":0,"gadgetId":70520009,"configId":182043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4824.091,"y":205.147,"z":-4008.809},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":182039,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4804.795,"y":206.012,"z":-4003.761},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":182038,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4806.652,"y":207.784,"z":-4001.448},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":182044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4760.665,"y":202.223,"z":-4011.88},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":182040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4737.902,"y":204.742,"z":-4003.476},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":182010,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4687.685,"y":203.731,"z":-4065.745},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":182009,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4687.548,"y":203.931,"z":-4065.894},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520028,"configId":182019,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-4724.018,"y":204.99,"z":-4062.024},"rot":{"x":292.725,"y":162.07,"z":68.141}},{"monsterId":0,"gadgetId":70520033,"configId":182055,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4660.909,"y":202.246,"z":-4093.413},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":182007,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4670.467,"y":203.597,"z":-4083.759},"rot":{"x":21.666,"y":83.328,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":182006,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4670.66,"y":203.797,"z":-4083.82},"rot":{"x":0.0,"y":114.756,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":182069,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4671.664,"y":202.589,"z":-3994.393},"rot":{"x":21.666,"y":253.383,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":182068,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4671.484,"y":202.79,"z":-3994.3},"rot":{"x":0.0,"y":284.811,"z":354.199}},{"monsterId":0,"gadgetId":70520029,"configId":182057,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4671.881,"y":199.292,"z":-4011.439},"rot":{"x":0.0,"y":226.798,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":182030,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4756.034,"y":220.533,"z":-3989.469},"rot":{"x":0.0,"y":220.45,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":182032,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4751.474,"y":218.045,"z":-3991.469},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":182004,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4694.348,"y":201.612,"z":-3976.695},"rot":{"x":0.0,"y":113.487,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":182066,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4654.999,"y":202.412,"z":-3985.311},"rot":{"x":21.666,"y":280.689,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":182065,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4654.797,"y":202.613,"z":-3985.31},"rot":{"x":0.0,"y":312.117,"z":354.199}},{"monsterId":0,"gadgetId":70520029,"configId":182056,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4651.735,"y":198.819,"z":-4016.963},"rot":{"x":0.0,"y":316.578,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":182003,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4635.364,"y":201.757,"z":-3989.404},"rot":{"x":21.666,"y":185.876,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":182002,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4635.381,"y":201.957,"z":-3989.204},"rot":{"x":0.0,"y":217.304,"z":354.199}},{"monsterId":0,"gadgetId":70520033,"configId":182011,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4618.462,"y":200.268,"z":-4011.346},"rot":{"x":0.0,"y":262.042,"z":0.0}}]},{"sceneId":3,"groupId":133217183,"blockId":0,"pos":{"x":-4292.826,"y":0.0,"z":-3934.2625},"spawns":[{"monsterId":0,"gadgetId":70520033,"configId":183041,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4350.884,"y":200.954,"z":-4007.85},"rot":{"x":0.0,"y":143.719,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":183008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4298.925,"y":218.387,"z":-3849.088},"rot":{"x":344.93,"y":289.104,"z":344.876}},{"monsterId":0,"gadgetId":70540001,"configId":183007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4298.875,"y":218.011,"z":-3849.559},"rot":{"x":344.93,"y":289.104,"z":344.876}},{"monsterId":0,"gadgetId":70540001,"configId":183006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4299.674,"y":217.931,"z":-3849.278},"rot":{"x":344.93,"y":289.104,"z":344.876}},{"monsterId":0,"gadgetId":70540001,"configId":183004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4250.13,"y":203.216,"z":-3840.426},"rot":{"x":0.0,"y":64.411,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":183003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4250.538,"y":202.804,"z":-3840.252},"rot":{"x":0.0,"y":64.411,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":183002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4249.784,"y":202.518,"z":-3839.981},"rot":{"x":0.0,"y":64.411,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":183039,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4310.671,"y":203.276,"z":-3887.026},"rot":{"x":4.636,"y":296.548,"z":344.038}},{"monsterId":0,"gadgetId":70520035,"configId":183038,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4341.698,"y":202.786,"z":-3892.483},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":183027,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4341.563,"y":202.987,"z":-3892.632},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520005,"configId":183010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4331.921,"y":202.047,"z":-3905.527},"rot":{"x":0.0,"y":172.491,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":183009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4294.435,"y":216.675,"z":-3902.247},"rot":{"x":0.0,"y":357.448,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":183024,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4289.741,"y":215.629,"z":-3894.658},"rot":{"x":0.0,"y":273.166,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":183037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4256.149,"y":210.78,"z":-3899.833},"rot":{"x":358.44,"y":350.728,"z":355.666}},{"monsterId":0,"gadgetId":70540001,"configId":183031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4239.154,"y":202.726,"z":-3905.426},"rot":{"x":358.493,"y":236.553,"z":4.206}},{"monsterId":0,"gadgetId":70540001,"configId":183030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4238.754,"y":202.283,"z":-3905.523},"rot":{"x":358.493,"y":236.553,"z":4.206}},{"monsterId":0,"gadgetId":70540001,"configId":183029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4239.481,"y":202.025,"z":-3905.881},"rot":{"x":358.493,"y":236.553,"z":4.206}},{"monsterId":0,"gadgetId":70520033,"configId":183025,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4301.993,"y":219.448,"z":-3916.862},"rot":{"x":348.712,"y":226.849,"z":5.16}},{"monsterId":0,"gadgetId":70520025,"configId":183020,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4238.169,"y":199.695,"z":-3917.327},"rot":{"x":0.0,"y":340.628,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":183023,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4251.999,"y":197.923,"z":-3946.948},"rot":{"x":0.0,"y":124.119,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":183019,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4244.597,"y":199.796,"z":-3942.295},"rot":{"x":0.0,"y":124.119,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":183035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4302.563,"y":203.06,"z":-3956.916},"rot":{"x":0.0,"y":65.975,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":183034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4302.966,"y":202.648,"z":-3956.731},"rot":{"x":0.0,"y":65.975,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":183033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4302.205,"y":202.362,"z":-3956.481},"rot":{"x":0.0,"y":65.975,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":183018,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4327.57,"y":199.08,"z":-3987.344},"rot":{"x":0.0,"y":287.222,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":183017,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4311.035,"y":198.508,"z":-3984.269},"rot":{"x":0.0,"y":277.538,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":183015,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4306.626,"y":198.858,"z":-3991.763},"rot":{"x":0.0,"y":72.032,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":183014,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4324.058,"y":199.588,"z":-4009.484},"rot":{"x":0.0,"y":230.104,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":183016,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4310.218,"y":198.884,"z":-3994.83},"rot":{"x":0.0,"y":284.102,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":183013,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4313.769,"y":199.131,"z":-4029.109},"rot":{"x":0.0,"y":237.995,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":183036,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4303.002,"y":199.163,"z":-4050.511},"rot":{"x":0.0,"y":148.392,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":183012,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4319.189,"y":199.285,"z":-4057.883},"rot":{"x":0.0,"y":148.392,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":183011,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4320.922,"y":199.222,"z":-4064.249},"rot":{"x":0.0,"y":31.148,"z":0.0}}]},{"sceneId":3,"groupId":133211008,"blockId":0,"pos":{"x":-3771.519,"y":0.0,"z":-1094.886},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":8033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3827.518,"y":200.756,"z":-1273.176},"rot":{"x":4.452,"y":293.599,"z":0.969}},{"monsterId":0,"gadgetId":70520031,"configId":8029,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3831.854,"y":149.368,"z":-1113.27},"rot":{"x":358.046,"y":255.864,"z":359.569}},{"monsterId":0,"gadgetId":70520031,"configId":8027,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3831.783,"y":149.398,"z":-1115.559},"rot":{"x":358.55,"y":192.375,"z":2.429}},{"monsterId":0,"gadgetId":70520031,"configId":8023,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3823.722,"y":166.916,"z":-1120.718},"rot":{"x":332.784,"y":211.126,"z":23.413}},{"monsterId":0,"gadgetId":70520031,"configId":8021,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3824.699,"y":155.019,"z":-1073.404},"rot":{"x":0.575,"y":246.408,"z":17.128}},{"monsterId":0,"gadgetId":70520031,"configId":8019,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3831.629,"y":153.218,"z":-1086.979},"rot":{"x":334.612,"y":278.37,"z":4.342}},{"monsterId":0,"gadgetId":70520031,"configId":8015,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3803.462,"y":150.925,"z":-1072.115},"rot":{"x":359.41,"y":290.125,"z":18.761}},{"monsterId":0,"gadgetId":70520009,"configId":8032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3774.639,"y":200.149,"z":-1238.002},"rot":{"x":358.285,"y":73.394,"z":0.512}},{"monsterId":0,"gadgetId":70520005,"configId":8009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3638.85,"y":201.971,"z":-1130.49},"rot":{"x":349.343,"y":89.503,"z":355.701}},{"monsterId":0,"gadgetId":70520025,"configId":8013,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3654.284,"y":199.152,"z":-1154.904},"rot":{"x":3.8,"y":182.933,"z":355.73}},{"monsterId":0,"gadgetId":70520005,"configId":8008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3668.425,"y":200.351,"z":-1075.16},"rot":{"x":6.23,"y":342.96,"z":359.025}},{"monsterId":0,"gadgetId":70520025,"configId":8012,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3594.063,"y":198.762,"z":-1071.44},"rot":{"x":0.0,"y":132.517,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3820.578,"y":201.956,"z":-1042.255},"rot":{"x":356.536,"y":264.154,"z":347.985}},{"monsterId":0,"gadgetId":70540001,"configId":8003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3820.265,"y":201.605,"z":-1042.637},"rot":{"x":356.536,"y":264.154,"z":347.985}},{"monsterId":0,"gadgetId":70540001,"configId":8002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3821.077,"y":201.357,"z":-1042.699},"rot":{"x":356.536,"y":264.154,"z":347.985}},{"monsterId":0,"gadgetId":70520031,"configId":8017,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3798.793,"y":151.899,"z":-1070.021},"rot":{"x":10.691,"y":254.79,"z":11.294}},{"monsterId":0,"gadgetId":70520005,"configId":8006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3807.632,"y":202.143,"z":-1055.801},"rot":{"x":8.048,"y":13.131,"z":0.444}},{"monsterId":0,"gadgetId":70520009,"configId":8011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3799.523,"y":161.238,"z":-1031.458},"rot":{"x":9.061,"y":357.562,"z":348.829}},{"monsterId":0,"gadgetId":70520005,"configId":8005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3741.461,"y":204.714,"z":-1040.916},"rot":{"x":1.161,"y":251.108,"z":349.103}},{"monsterId":0,"gadgetId":70520005,"configId":8007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3716.122,"y":200.294,"z":-1046.718},"rot":{"x":0.0,"y":240.23,"z":0.0}}]},{"sceneId":3,"groupId":133211009,"blockId":0,"pos":{"x":-3926.3005,"y":0.0,"z":-1118.6952},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":9002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3865.042,"y":201.73,"z":-1205.67},"rot":{"x":358.916,"y":85.913,"z":357.387}},{"monsterId":0,"gadgetId":70520009,"configId":9016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3842.076,"y":202.121,"z":-1206.786},"rot":{"x":359.514,"y":68.399,"z":356.346}},{"monsterId":0,"gadgetId":70520005,"configId":9001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3913.663,"y":200.809,"z":-1160.324},"rot":{"x":359.28,"y":19.683,"z":354.059}},{"monsterId":0,"gadgetId":70520029,"configId":9021,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3865.888,"y":199.225,"z":-1163.664},"rot":{"x":352.995,"y":259.742,"z":351.396}},{"monsterId":0,"gadgetId":70520029,"configId":9020,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3855.099,"y":199.177,"z":-1167.815},"rot":{"x":4.872,"y":318.805,"z":353.399}},{"monsterId":0,"gadgetId":70520009,"configId":9019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3907.564,"y":200.465,"z":-1151.582},"rot":{"x":355.994,"y":281.862,"z":357.336}},{"monsterId":0,"gadgetId":70520005,"configId":9010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3925.061,"y":203.256,"z":-1074.087},"rot":{"x":4.007,"y":121.644,"z":10.153}},{"monsterId":0,"gadgetId":70510005,"configId":9027,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3979.44,"y":200.956,"z":-1058.742},"rot":{"x":5.049,"y":190.23,"z":357.388}},{"monsterId":0,"gadgetId":70520005,"configId":9008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4036.838,"y":201.17,"z":-1169.363},"rot":{"x":3.904,"y":50.983,"z":359.139}},{"monsterId":0,"gadgetId":70520009,"configId":9013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3867.6,"y":201.34,"z":-1182.238},"rot":{"x":1.366,"y":67.57,"z":3.306}},{"monsterId":0,"gadgetId":70520005,"configId":9017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3980.62,"y":200.229,"z":-1258.29},"rot":{"x":359.123,"y":340.935,"z":357.463}},{"monsterId":0,"gadgetId":70520009,"configId":9003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3943.44,"y":127.433,"z":-1026.624},"rot":{"x":357.776,"y":283.74,"z":1.297}},{"monsterId":0,"gadgetId":70510005,"configId":9025,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3994.36,"y":201.447,"z":-1047.75},"rot":{"x":352.903,"y":354.855,"z":353.364}},{"monsterId":0,"gadgetId":70520009,"configId":9012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3976.157,"y":210.834,"z":-1044.553},"rot":{"x":347.562,"y":231.145,"z":4.981}},{"monsterId":0,"gadgetId":70540001,"configId":9005,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3931.852,"y":178.582,"z":-1033.59},"rot":{"x":358.908,"y":266.28,"z":348.889}},{"monsterId":0,"gadgetId":70540001,"configId":9007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3931.361,"y":179.208,"z":-1033.177},"rot":{"x":358.908,"y":266.28,"z":348.889}},{"monsterId":0,"gadgetId":70540001,"configId":9006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3931.049,"y":178.863,"z":-1033.563},"rot":{"x":358.908,"y":266.28,"z":348.889}}]},{"sceneId":3,"groupId":133222275,"blockId":0,"pos":{"x":-4279.8994,"y":0.0,"z":-4475.2505},"spawns":[{"monsterId":0,"gadgetId":70520033,"configId":275006,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4248.552,"y":207.813,"z":-4462.397},"rot":{"x":0.0,"y":197.083,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":275008,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4295.229,"y":207.383,"z":-4480.456},"rot":{"x":0.0,"y":256.579,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":275007,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4295.917,"y":206.72,"z":-4482.899},"rot":{"x":0.0,"y":311.425,"z":0.0}}]},{"sceneId":3,"groupId":133223302,"blockId":0,"pos":{"x":-5968.4165,"y":0.0,"z":-2545.1401},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":302004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5975.494,"y":251.612,"z":-2540.081},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":302003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5965.949,"y":256.961,"z":-2545.095},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":302002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-5964.18,"y":254.686,"z":-2551.373},"rot":{"x":-0.001,"y":61.801,"z":345.833}},{"monsterId":0,"gadgetId":70520001,"configId":302001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-5968.043,"y":255.635,"z":-2544.012},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133223303,"blockId":0,"pos":{"x":-6245.578,"y":0.0,"z":-2913.7087},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":303002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6253.437,"y":238.511,"z":-2917.058},"rot":{"x":-0.001,"y":61.801,"z":345.833}},{"monsterId":0,"gadgetId":70590036,"configId":303003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6247.753,"y":239.236,"z":-2914.732},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":303004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6247.037,"y":239.088,"z":-2914.394},"rot":{"x":353.526,"y":268.007,"z":343.44}},{"monsterId":0,"gadgetId":70520002,"configId":303005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6240.821,"y":241.87,"z":-2910.516},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":303001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6238.843,"y":241.668,"z":-2911.845},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133223305,"blockId":0,"pos":{"x":-5791.2314,"y":0.0,"z":-2509.2395},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":305004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-5792.033,"y":205.273,"z":-2514.301},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":305005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-5793.44,"y":207.479,"z":-2505.953},"rot":{"x":0.0,"y":255.975,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":305002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5790.781,"y":204.537,"z":-2523.882},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":305003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-5790.402,"y":203.898,"z":-2502.153},"rot":{"x":0.0,"y":0.0,"z":338.796}},{"monsterId":0,"gadgetId":70520001,"configId":305001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-5789.501,"y":203.311,"z":-2499.908},"rot":{"x":0.0,"y":0.0,"z":329.532}}]},{"sceneId":3,"groupId":133222282,"blockId":0,"pos":{"x":-4690.631,"y":0.0,"z":-4227.5444},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":282004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4688.098,"y":123.455,"z":-4227.635},"rot":{"x":0.0,"y":340.711,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":282005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4693.125,"y":122.889,"z":-4225.904},"rot":{"x":0.0,"y":255.085,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":282006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4690.67,"y":121.99,"z":-4229.094},"rot":{"x":0.0,"y":30.34,"z":0.0}}]},{"sceneId":3,"groupId":133212043,"blockId":0,"pos":{"x":-3894.927,"y":0.0,"z":-2285.19},"spawns":[{"monsterId":0,"gadgetId":71700293,"configId":43006,"level":0,"poseId":0,"gatherItemId":100974,"pos":{"x":-3894.927,"y":248.164,"z":-2285.19},"rot":{"x":271.182,"y":76.486,"z":133.367}}]},{"sceneId":3,"groupId":133008278,"blockId":0,"pos":{"x":1186.7473,"y":0.0,"z":-663.49567},"spawns":[{"monsterId":0,"gadgetId":70590031,"configId":278003,"level":0,"poseId":0,"gatherItemId":107010,"pos":{"x":1356.847,"y":343.661,"z":-931.233},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590031,"configId":278039,"level":0,"poseId":0,"gatherItemId":107010,"pos":{"x":1261.079,"y":301.364,"z":-486.715},"rot":{"x":0.0,"y":289.303,"z":0.0}},{"monsterId":0,"gadgetId":70590031,"configId":278007,"level":0,"poseId":0,"gatherItemId":107010,"pos":{"x":942.316,"y":377.444,"z":-572.539},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133222286,"blockId":0,"pos":{"x":-4646.0874,"y":0.0,"z":-4289.473},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":286004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4645.232,"y":121.526,"z":-4289.758},"rot":{"x":0.0,"y":340.711,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":286005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4646.014,"y":121.439,"z":-4292.838},"rot":{"x":0.0,"y":255.085,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":286006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4647.015,"y":120.699,"z":-4285.823},"rot":{"x":0.0,"y":30.34,"z":0.0}}]},{"sceneId":3,"groupId":133223280,"blockId":0,"pos":{"x":-6190.76,"y":0.0,"z":-2502.2246},"spawns":[{"monsterId":0,"gadgetId":70520017,"configId":280015,"level":0,"poseId":0,"gatherItemId":100064,"pos":{"x":-6190.672,"y":220.779,"z":-2502.169},"rot":{"x":330.964,"y":303.075,"z":342.455}},{"monsterId":0,"gadgetId":70520017,"configId":280014,"level":0,"poseId":0,"gatherItemId":100064,"pos":{"x":-6190.848,"y":220.798,"z":-2502.28},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133223281,"blockId":0,"pos":{"x":-6054.244,"y":0.0,"z":-2659.1433},"spawns":[{"monsterId":0,"gadgetId":70520037,"configId":281023,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5969.243,"y":178.596,"z":-2571.391},"rot":{"x":2.917,"y":157.887,"z":7.144}},{"monsterId":0,"gadgetId":70520009,"configId":281039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5891.057,"y":203.258,"z":-2575.245},"rot":{"x":0.0,"y":322.296,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281022,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5928.242,"y":169.635,"z":-2618.378},"rot":{"x":0.0,"y":303.654,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281027,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5970.223,"y":170.107,"z":-2678.647},"rot":{"x":11.946,"y":90.227,"z":18.967}},{"monsterId":0,"gadgetId":70520037,"configId":281026,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5966.373,"y":169.648,"z":-2678.891},"rot":{"x":-0.003,"y":60.95,"z":18.92}},{"monsterId":0,"gadgetId":70520009,"configId":281006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5953.576,"y":200.382,"z":-2663.729},"rot":{"x":0.0,"y":355.795,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281024,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5966.133,"y":178.757,"z":-2584.659},"rot":{"x":-0.003,"y":60.95,"z":18.92}},{"monsterId":0,"gadgetId":70520037,"configId":281036,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5988.872,"y":200.401,"z":-2645.494},"rot":{"x":0.0,"y":0.0,"z":22.416}},{"monsterId":0,"gadgetId":70520037,"configId":281037,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5987.591,"y":200.339,"z":-2646.921},"rot":{"x":355.229,"y":340.623,"z":346.696}},{"monsterId":0,"gadgetId":70520037,"configId":281038,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5989.976,"y":200.848,"z":-2638.466},"rot":{"x":0.0,"y":0.0,"z":344.335}},{"monsterId":0,"gadgetId":70520009,"configId":281040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5974.652,"y":213.823,"z":-2615.053},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":281002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5975.215,"y":236.859,"z":-2604.899},"rot":{"x":0.0,"y":337.687,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":281008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6010.184,"y":205.509,"z":-2606.018},"rot":{"x":0.0,"y":124.686,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281028,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5959.565,"y":172.584,"z":-2697.845},"rot":{"x":11.946,"y":90.227,"z":18.967}},{"monsterId":0,"gadgetId":70520009,"configId":281010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6038.549,"y":204.633,"z":-2603.508},"rot":{"x":0.0,"y":120.958,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":281005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6049.361,"y":203.274,"z":-2588.071},"rot":{"x":0.0,"y":189.233,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":281004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6071.943,"y":200.425,"z":-2671.17},"rot":{"x":0.0,"y":187.792,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281032,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6071.943,"y":200.754,"z":-2637.686},"rot":{"x":345.911,"y":106.63,"z":1.324}},{"monsterId":0,"gadgetId":70520037,"configId":281031,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6067.613,"y":201.424,"z":-2632.863},"rot":{"x":0.002,"y":106.345,"z":15.351}},{"monsterId":0,"gadgetId":70520037,"configId":281030,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6066.042,"y":201.551,"z":-2632.982},"rot":{"x":11.073,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281029,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6066.049,"y":201.046,"z":-2637.218},"rot":{"x":358.912,"y":271.813,"z":30.981}},{"monsterId":0,"gadgetId":70520037,"configId":281025,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6071.156,"y":201.07,"z":-2635.084},"rot":{"x":14.86,"y":183.081,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281007,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6072.331,"y":201.152,"z":-2634.43},"rot":{"x":0.0,"y":0.0,"z":24.124}},{"monsterId":0,"gadgetId":70520037,"configId":281042,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6106.547,"y":202.724,"z":-2695.541},"rot":{"x":0.0,"y":11.67,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":281020,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6104.496,"y":209.213,"z":-2698.516},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281041,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6106.026,"y":202.921,"z":-2697.721},"rot":{"x":0.0,"y":269.455,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":281019,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6104.496,"y":209.212,"z":-2698.594},"rot":{"x":296.309,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":281012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6113.796,"y":201.307,"z":-2618.145},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":281013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6113.878,"y":201.593,"z":-2618.942},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":281014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6113.545,"y":202.005,"z":-2618.649},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281035,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6124.727,"y":201.606,"z":-2580.137},"rot":{"x":22.522,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281034,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6122.857,"y":201.833,"z":-2580.59},"rot":{"x":14.755,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281044,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6143.812,"y":201.608,"z":-2714.762},"rot":{"x":0.0,"y":128.62,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":281043,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6141.578,"y":201.823,"z":-2712.902},"rot":{"x":0.0,"y":228.997,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":281017,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6139.849,"y":207.44,"z":-2714.74},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":281016,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6139.849,"y":207.44,"z":-2714.932},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":281001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6133.585,"y":200.662,"z":-2702.887},"rot":{"x":0.0,"y":314.934,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":281003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6134.941,"y":202.223,"z":-2620.44},"rot":{"x":0.0,"y":304.219,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":281021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6098.75,"y":206.892,"z":-2749.673},"rot":{"x":0.0,"y":303.515,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":281033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6106.692,"y":223.797,"z":-2762.535},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":281046,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6051.554,"y":198.862,"z":-2766.303},"rot":{"x":0.0,"y":81.622,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":281045,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6049.985,"y":198.606,"z":-2765.523},"rot":{"x":0.0,"y":157.656,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":281009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6075.669,"y":202.818,"z":-2812.98},"rot":{"x":0.0,"y":198.573,"z":0.0}}]},{"sceneId":3,"groupId":133103471,"blockId":0,"pos":{"x":699.2885,"y":0.0,"z":1892.507},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":471004,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":699.382,"y":409.265,"z":1891.07},"rot":{"x":0.0,"y":63.445,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":471002,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":699.195,"y":409.237,"z":1893.944},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133223282,"blockId":0,"pos":{"x":-6075.235,"y":0.0,"z":-2880.6694},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":282010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6092.723,"y":207.262,"z":-2823.207},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":282009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6093.056,"y":206.85,"z":-2823.5},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":282008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6092.974,"y":206.564,"z":-2822.703},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":282001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6113.853,"y":205.188,"z":-2836.102},"rot":{"x":0.0,"y":217.156,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":282025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6028.501,"y":188.355,"z":-2864.077},"rot":{"x":0.0,"y":337.949,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":282024,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6125.672,"y":205.084,"z":-2882.283},"rot":{"x":0.0,"y":13.158,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":282021,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6127.958,"y":204.663,"z":-2874.165},"rot":{"x":349.748,"y":10.26,"z":0.165}},{"monsterId":0,"gadgetId":70520037,"configId":282020,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6124.367,"y":205.572,"z":-2874.441},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":282006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6131.909,"y":204.032,"z":-2872.329},"rot":{"x":0.0,"y":161.265,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":282003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6096.909,"y":208.08,"z":-2878.096},"rot":{"x":0.0,"y":233.928,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":282019,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6063.989,"y":208.483,"z":-2873.651},"rot":{"x":334.533,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":282005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6068.6,"y":208.81,"z":-2877.249},"rot":{"x":0.0,"y":290.637,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":282016,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6061.332,"y":217.424,"z":-2878.417},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":282017,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6061.332,"y":217.424,"z":-2878.225},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":282018,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6060.624,"y":208.353,"z":-2872.497},"rot":{"x":3.156,"y":27.268,"z":346.987}},{"monsterId":0,"gadgetId":70520009,"configId":282002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5993.281,"y":226.127,"z":-2876.98},"rot":{"x":0.0,"y":94.905,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":282014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6036.104,"y":207.72,"z":-2904.434},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":282013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6036.438,"y":207.308,"z":-2904.727},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":282012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6036.355,"y":207.022,"z":-2903.93},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":282004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6083.643,"y":221.301,"z":-2960.906},"rot":{"x":0.0,"y":15.737,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":282023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6032.752,"y":226.773,"z":-2957.944},"rot":{"x":0.0,"y":53.861,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":282022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6092.813,"y":215.339,"z":-2934.862},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133222258,"blockId":0,"pos":{"x":-4299.5684,"y":0.0,"z":-4259.408},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":258002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4295.643,"y":202.923,"z":-4261.566},"rot":{"x":0.0,"y":114.543,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":258001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4303.494,"y":204.319,"z":-4257.251},"rot":{"x":0.0,"y":253.932,"z":0.0}}]},{"sceneId":3,"groupId":133223283,"blockId":0,"pos":{"x":-5809.2676,"y":0.0,"z":-2641.7815},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":283002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5809.509,"y":210.955,"z":-2569.972},"rot":{"x":0.0,"y":161.654,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":283004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5829.438,"y":206.544,"z":-2583.57},"rot":{"x":0.0,"y":123.894,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":283003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5783.743,"y":209.688,"z":-2583.729},"rot":{"x":0.0,"y":87.974,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":283006,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-5798.422,"y":198.266,"z":-2649.224},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":283005,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-5802.042,"y":198.271,"z":-2650.419},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":283010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-5815.107,"y":205.834,"z":-2680.569},"rot":{"x":0.0,"y":31.463,"z":341.528}},{"monsterId":0,"gadgetId":70540001,"configId":283009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-5815.44,"y":205.422,"z":-2680.862},"rot":{"x":0.0,"y":31.463,"z":341.528}},{"monsterId":0,"gadgetId":70540001,"configId":283008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-5815.358,"y":205.136,"z":-2680.065},"rot":{"x":0.0,"y":31.463,"z":341.528}},{"monsterId":0,"gadgetId":70520009,"configId":283001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5814.342,"y":200.607,"z":-2697.623},"rot":{"x":0.0,"y":208.186,"z":0.0}}]},{"sceneId":3,"groupId":133223284,"blockId":0,"pos":{"x":-6051.0645,"y":0.0,"z":-2492.8164},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":284016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6134.834,"y":221.736,"z":-2481.901},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":284015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6140.023,"y":220.478,"z":-2451.06},"rot":{"x":0.0,"y":59.447,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":284018,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6124.024,"y":201.106,"z":-2538.112},"rot":{"x":0.0,"y":304.753,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":284017,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6120.467,"y":201.808,"z":-2539.273},"rot":{"x":0.0,"y":0.0,"z":16.501}},{"monsterId":0,"gadgetId":70520005,"configId":284023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6114.791,"y":200.978,"z":-2512.695},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":284022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6110.249,"y":205.022,"z":-2483.215},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":284021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6110.582,"y":204.61,"z":-2483.508},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":284020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6110.5,"y":204.324,"z":-2482.71},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":284003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6104.965,"y":208.918,"z":-2474.333},"rot":{"x":0.0,"y":332.036,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":284005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6110.33,"y":217.69,"z":-2458.334},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":284014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6070.967,"y":203.103,"z":-2539.191},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":284013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6071.3,"y":202.691,"z":-2539.484},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":284012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6071.219,"y":202.405,"z":-2538.687},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":284033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6059.107,"y":212.842,"z":-2536.647},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":284006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6051.75,"y":200.545,"z":-2493.847},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":284031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6047.339,"y":202.878,"z":-2482.903},"rot":{"x":0.0,"y":48.659,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":284030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6047.672,"y":202.466,"z":-2483.196},"rot":{"x":0.0,"y":48.659,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":284029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6047.59,"y":202.18,"z":-2482.399},"rot":{"x":0.0,"y":48.659,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":284026,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6049.966,"y":198.441,"z":-2454.988},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":284027,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6049.263,"y":198.859,"z":-2451.384},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":284007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6004.849,"y":211.79,"z":-2492.053},"rot":{"x":0.0,"y":113.146,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":284002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-5995.634,"y":220.053,"z":-2505.119},"rot":{"x":0.0,"y":226.376,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":284032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6009.994,"y":212.68,"z":-2557.063},"rot":{"x":0.0,"y":318.754,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":284008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5988.945,"y":201.581,"z":-2435.921},"rot":{"x":0.0,"y":45.486,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":284025,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-5975.122,"y":198.441,"z":-2409.535},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":284024,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-5976.683,"y":198.712,"z":-2410.947},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":284004,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5958.789,"y":181.004,"z":-2542.988},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":284001,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-5962.342,"y":180.853,"z":-2540.79},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":284010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5970.867,"y":203.723,"z":-2481.268},"rot":{"x":0.0,"y":181.243,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":284009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-5941.747,"y":205.273,"z":-2500.956},"rot":{"x":0.0,"y":357.471,"z":0.0}}]},{"sceneId":3,"groupId":133223285,"blockId":0,"pos":{"x":-5812.1196,"y":0.0,"z":-2510.9727},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":285002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5834.098,"y":209.54,"z":-2479.333},"rot":{"x":0.0,"y":304.014,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":285001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5824.192,"y":216.961,"z":-2542.613},"rot":{"x":0.0,"y":267.766,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":285003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-5778.069,"y":200.96,"z":-2510.972},"rot":{"x":0.0,"y":333.505,"z":0.0}}]},{"sceneId":3,"groupId":133217142,"blockId":0,"pos":{"x":-4310.269,"y":0.0,"z":-3868.0344},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":142002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4309.573,"y":203.151,"z":-3869.667},"rot":{"x":7.712,"y":2.584,"z":3.982}},{"monsterId":0,"gadgetId":70520002,"configId":142004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4309.436,"y":203.58,"z":-3872.599},"rot":{"x":350.123,"y":120.488,"z":2.712}},{"monsterId":0,"gadgetId":70520002,"configId":142005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4311.797,"y":201.765,"z":-3861.838},"rot":{"x":10.651,"y":316.483,"z":359.652}}]},{"sceneId":3,"groupId":133223287,"blockId":0,"pos":{"x":-6012.3813,"y":0.0,"z":-2768.0444},"spawns":[{"monsterId":0,"gadgetId":70520037,"configId":287001,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6008.92,"y":164.831,"z":-2769.803},"rot":{"x":9.442,"y":1.804,"z":10.865}},{"monsterId":0,"gadgetId":70520037,"configId":287002,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6011.327,"y":165.15,"z":-2771.177},"rot":{"x":0.0,"y":0.0,"z":14.011}},{"monsterId":0,"gadgetId":70520037,"configId":287003,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6013.317,"y":164.743,"z":-2765.988},"rot":{"x":34.627,"y":107.61,"z":-0.002}},{"monsterId":0,"gadgetId":70520037,"configId":287004,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6013.223,"y":165.226,"z":-2769.468},"rot":{"x":0.0,"y":92.399,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":287005,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6015.119,"y":165.037,"z":-2763.787},"rot":{"x":3.719,"y":309.597,"z":-0.001}}]},{"sceneId":3,"groupId":155005365,"blockId":0,"pos":{"x":412.82492,"y":0.0,"z":349.451},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":365015,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":621.921,"y":191.499,"z":501.605},"rot":{"x":342.267,"y":344.695,"z":12.153}},{"monsterId":0,"gadgetId":70520001,"configId":365014,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":622.549,"y":191.452,"z":501.501},"rot":{"x":0.664,"y":25.727,"z":338.04}},{"monsterId":0,"gadgetId":70520001,"configId":365013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":623.37,"y":191.432,"z":501.348},"rot":{"x":8.059,"y":56.736,"z":354.545}},{"monsterId":0,"gadgetId":70520001,"configId":365007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":396.807,"y":249.771,"z":367.339},"rot":{"x":18.542,"y":0.904,"z":1.303}},{"monsterId":0,"gadgetId":70520001,"configId":365005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":397.696,"y":249.966,"z":367.104},"rot":{"x":29.167,"y":314.607,"z":332.797}},{"monsterId":0,"gadgetId":70520001,"configId":365010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":406.525,"y":250.816,"z":364.494},"rot":{"x":340.71,"y":232.943,"z":337.435}},{"monsterId":0,"gadgetId":70520001,"configId":365009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":407.262,"y":251.241,"z":363.796},"rot":{"x":37.368,"y":336.159,"z":341.863}},{"monsterId":0,"gadgetId":70520001,"configId":365008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":411.767,"y":251.418,"z":361.105},"rot":{"x":329.897,"y":245.769,"z":338.613}},{"monsterId":0,"gadgetId":70520001,"configId":365006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":412.492,"y":251.638,"z":360.694},"rot":{"x":33.523,"y":344.127,"z":351.5}},{"monsterId":0,"gadgetId":70520001,"configId":365004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":395.468,"y":309.203,"z":250.481},"rot":{"x":342.968,"y":323.849,"z":337.44}},{"monsterId":0,"gadgetId":70520001,"configId":365003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":394.546,"y":309.284,"z":240.118},"rot":{"x":33.784,"y":121.023,"z":357.997}},{"monsterId":0,"gadgetId":70520001,"configId":365001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":395.76,"y":309.212,"z":249.835},"rot":{"x":351.35,"y":234.887,"z":10.425}},{"monsterId":0,"gadgetId":70520001,"configId":365002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":394.07,"y":309.222,"z":239.503},"rot":{"x":345.466,"y":34.705,"z":354.12}},{"monsterId":0,"gadgetId":70520001,"configId":365012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":156.142,"y":307.982,"z":286.676},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":365011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":155.999,"y":307.79,"z":286.166},"rot":{"x":353.748,"y":25.02,"z":24.304}}]},{"sceneId":3,"groupId":133007204,"blockId":0,"pos":{"x":2565.899,"y":0.0,"z":367.84775},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":885,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2563.929,"y":201.029,"z":365.161},"rot":{"x":0.0,"y":305.547,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":887,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2568.352,"y":201.509,"z":366.027},"rot":{"x":0.0,"y":305.547,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":886,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2567.841,"y":201.294,"z":370.536},"rot":{"x":0.0,"y":305.547,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":884,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2563.474,"y":200.86,"z":369.667},"rot":{"x":0.0,"y":221.78,"z":0.0}}]},{"sceneId":3,"groupId":133212025,"blockId":0,"pos":{"x":-3920.4731,"y":0.0,"z":-2607.6016},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":25003,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3947.294,"y":199.285,"z":-2565.86},"rot":{"x":0.0,"y":32.94,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":25002,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3949.057,"y":199.085,"z":-2568.147},"rot":{"x":0.0,"y":165.65,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":25004,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3946.675,"y":198.188,"z":-2575.077},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":25007,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3843.117,"y":199.189,"z":-2655.997},"rot":{"x":0.0,"y":260.908,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":25001,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3841.787,"y":198.198,"z":-2662.557},"rot":{"x":0.0,"y":284.25,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":25005,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3958.392,"y":199.208,"z":-2605.998},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":25006,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3956.99,"y":206.842,"z":-2619.575},"rot":{"x":0.0,"y":254.709,"z":0.0}}]},{"sceneId":3,"groupId":133211003,"blockId":0,"pos":{"x":-3533.7996,"y":0.0,"z":-1189.972},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":3009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3511.112,"y":200.388,"z":-1183.989},"rot":{"x":359.771,"y":230.833,"z":1.206}},{"monsterId":0,"gadgetId":70520025,"configId":3010,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3484.182,"y":199.746,"z":-1102.755},"rot":{"x":0.857,"y":92.398,"z":0.932}},{"monsterId":0,"gadgetId":70520025,"configId":3011,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3571.855,"y":199.458,"z":-1239.397},"rot":{"x":5.914,"y":171.529,"z":357.322}},{"monsterId":0,"gadgetId":70540001,"configId":3008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3545.367,"y":204.122,"z":-1204.703},"rot":{"x":2.34,"y":121.643,"z":359.503}},{"monsterId":0,"gadgetId":70540001,"configId":3007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3545.454,"y":203.725,"z":-1204.254},"rot":{"x":2.34,"y":121.643,"z":359.503}},{"monsterId":0,"gadgetId":70540001,"configId":3006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3544.828,"y":203.406,"z":-1204.734},"rot":{"x":2.34,"y":121.643,"z":359.503}}]},{"sceneId":3,"groupId":133211006,"blockId":0,"pos":{"x":-3642.0144,"y":0.0,"z":-2011.3242},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":6042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3679.914,"y":227.316,"z":-2034.294},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3680.247,"y":226.904,"z":-2034.587},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3680.165,"y":226.618,"z":-2033.79},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3686.725,"y":227.162,"z":-2041.633},"rot":{"x":0.0,"y":182.94,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3654.148,"y":228.979,"z":-2033.119},"rot":{"x":0.0,"y":290.566,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3653.991,"y":228.567,"z":-2033.533},"rot":{"x":0.0,"y":290.566,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3654.708,"y":228.281,"z":-2033.177},"rot":{"x":0.0,"y":290.566,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":6045,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3598.042,"y":246.09,"z":-2038.43},"rot":{"x":0.0,"y":129.866,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":6044,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3598.219,"y":246.09,"z":-2038.354},"rot":{"x":0.0,"y":129.866,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":6032,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3619.443,"y":225.972,"z":-2013.924},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":6017,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3593.386,"y":223.603,"z":-2020.849},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":6016,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3592.559,"y":223.323,"z":-2023.24},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":6015,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3594.5,"y":222.313,"z":-2021.516},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":6022,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3698.09,"y":198.439,"z":-1992.511},"rot":{"x":0.0,"y":322.67,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3659.03,"y":222.4,"z":-2006.86},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":6023,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3699.332,"y":198.491,"z":-1985.762},"rot":{"x":0.0,"y":261.34,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3682.685,"y":203.576,"z":-1976.607},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3654.982,"y":221.799,"z":-1989.474},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":6031,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3603.34,"y":213.756,"z":-1969.713},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3611.533,"y":211.28,"z":-1952.111},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":6030,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3587.264,"y":215.419,"z":-1964.327},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133211007,"blockId":0,"pos":{"x":-3547.8047,"y":0.0,"z":-1980.1775},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":7001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3579.803,"y":213.974,"z":-2005.169},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":7006,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3564.823,"y":209.061,"z":-1962.261},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":7002,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3528.811,"y":198.345,"z":-1997.529},"rot":{"x":0.0,"y":41.56,"z":0.0}},{"monsterId":0,"gadgetId":70520027,"configId":7003,"level":0,"poseId":0,"gatherItemId":101203,"pos":{"x":-3517.781,"y":204.811,"z":-1955.751},"rot":{"x":1.358,"y":359.563,"z":324.356}}]},{"sceneId":3,"groupId":133004130,"blockId":0,"pos":{"x":2379.934,"y":0.0,"z":-317.8635},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":798,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2377.935,"y":295.699,"z":-317.846},"rot":{"x":0.0,"y":82.707,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":799,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2379.936,"y":295.733,"z":-315.878},"rot":{"x":0.0,"y":48.156,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":796,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2381.932,"y":295.93,"z":-317.852},"rot":{"x":0.0,"y":327.809,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":797,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2379.934,"y":295.727,"z":-319.878},"rot":{"x":0.0,"y":50.016,"z":0.0}}]},{"sceneId":3,"groupId":133106555,"blockId":0,"pos":{"x":-630.53796,"y":0.0,"z":1869.9102},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":555006,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-648.624,"y":149.383,"z":1893.833},"rot":{"x":0.299,"y":18.562,"z":0.71}},{"monsterId":0,"gadgetId":70540001,"configId":555010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-638.153,"y":144.63,"z":1871.574},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":555009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-638.486,"y":144.218,"z":1871.281},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":555008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-638.404,"y":143.932,"z":1872.078},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":555011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-625.067,"y":150.543,"z":1876.77},"rot":{"x":359.696,"y":0.019,"z":352.701}},{"monsterId":0,"gadgetId":70540026,"configId":555013,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-612.099,"y":153.433,"z":1849.645},"rot":{"x":15.797,"y":44.806,"z":15.131}},{"monsterId":0,"gadgetId":70540026,"configId":555012,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-612.932,"y":152.488,"z":1854.189},"rot":{"x":328.935,"y":336.469,"z":12.665}}]},{"sceneId":3,"groupId":133003130,"blockId":0,"pos":{"x":2517.542,"y":0.0,"z":-1472.93},"spawns":[{"monsterId":0,"gadgetId":70540021,"configId":2601,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2517.542,"y":271.076,"z":-1472.93},"rot":{"x":3.916,"y":359.918,"z":359.468}}]},{"sceneId":3,"groupId":133220206,"blockId":0,"pos":{"x":-2705.743,"y":0.0,"z":-4207.634},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":206024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2788.599,"y":218.175,"z":-4262.132},"rot":{"x":0.0,"y":277.956,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2597.254,"y":226.336,"z":-4246.205},"rot":{"x":0.0,"y":314.934,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206037,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2790.382,"y":214.087,"z":-4296.36},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206036,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2789.554,"y":213.807,"z":-4298.752},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206035,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2791.496,"y":212.797,"z":-4297.027},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":206040,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2796.507,"y":200.676,"z":-4231.187},"rot":{"x":0.0,"y":185.741,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2751.353,"y":215.935,"z":-4215.613},"rot":{"x":0.0,"y":11.424,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2712.811,"y":216.157,"z":-4223.119},"rot":{"x":0.0,"y":175.367,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2704.05,"y":216.5,"z":-4213.714},"rot":{"x":0.0,"y":147.957,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2703.923,"y":216.088,"z":-4213.289},"rot":{"x":0.0,"y":147.957,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2703.57,"y":215.802,"z":-4214.008},"rot":{"x":0.0,"y":147.957,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":206038,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2651.302,"y":210.721,"z":-4188.493},"rot":{"x":0.0,"y":274.762,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2627.864,"y":219.354,"z":-4177.266},"rot":{"x":0.0,"y":54.089,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2620.289,"y":208.817,"z":-4104.771},"rot":{"x":0.0,"y":273.859,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2580.85,"y":218.658,"z":-4154.958},"rot":{"x":0.0,"y":91.282,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2581.135,"y":218.246,"z":-4154.619},"rot":{"x":0.0,"y":91.282,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206058,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2580.34,"y":217.96,"z":-4154.719},"rot":{"x":0.0,"y":91.282,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2572.604,"y":221.105,"z":-4161.16},"rot":{"x":346.552,"y":86.335,"z":22.335}},{"monsterId":0,"gadgetId":70520002,"configId":206065,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-2566.938,"y":223.337,"z":-4166.165},"rot":{"x":38.142,"y":356.862,"z":350.94}},{"monsterId":0,"gadgetId":70590036,"configId":206005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2564.244,"y":225.388,"z":-4171.768},"rot":{"x":14.895,"y":0.919,"z":7.018}},{"monsterId":0,"gadgetId":70520009,"configId":206022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2734.542,"y":207.333,"z":-4149.836},"rot":{"x":0.0,"y":55.197,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206072,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2755.396,"y":208.057,"z":-4147.117},"rot":{"x":0.0,"y":0.0,"z":59.38}},{"monsterId":0,"gadgetId":70540004,"configId":206010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2770.137,"y":211.382,"z":-4142.593},"rot":{"x":0.0,"y":51.091,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206074,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2769.493,"y":208.205,"z":-4102.257},"rot":{"x":90.0,"y":311.014,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206073,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2769.539,"y":207.317,"z":-4103.093},"rot":{"x":0.001,"y":335.565,"z":331.089}},{"monsterId":0,"gadgetId":70590036,"configId":206068,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2733.13,"y":204.255,"z":-4160.467},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2708.606,"y":209.932,"z":-4171.875},"rot":{"x":0.0,"y":314.214,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":206081,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2774.28,"y":213.126,"z":-4096.035},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":206080,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2774.28,"y":213.126,"z":-4096.227},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":206008,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2776.286,"y":210.189,"z":-4111.706},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":206041,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2804.506,"y":205.781,"z":-4110.946},"rot":{"x":0.0,"y":89.8,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2805.102,"y":205.502,"z":-4099.859},"rot":{"x":0.0,"y":170.398,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2815.956,"y":207.346,"z":-4147.269},"rot":{"x":0.0,"y":190.105,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206070,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2803.635,"y":210.587,"z":-4188.396},"rot":{"x":0.0,"y":321.572,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206069,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2801.501,"y":210.307,"z":-4189.755},"rot":{"x":0.0,"y":275.572,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":206067,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2792.745,"y":204.827,"z":-4189.945},"rot":{"x":0.895,"y":0.0,"z":335.788}},{"monsterId":0,"gadgetId":70520026,"configId":206042,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2804.094,"y":209.297,"z":-4189.61},"rot":{"x":0.0,"y":226.572,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":206066,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2755.867,"y":207.213,"z":-4194.8},"rot":{"x":15.864,"y":295.257,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206033,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2598.648,"y":227.375,"z":-4208.514},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206032,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2597.821,"y":227.095,"z":-4210.906},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206031,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2599.762,"y":226.085,"z":-4209.181},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206078,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2679.859,"y":207.714,"z":-4113.186},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206075,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2731.9,"y":208.211,"z":-4113.011},"rot":{"x":0.0,"y":0.0,"z":90.0}},{"monsterId":0,"gadgetId":70520005,"configId":206027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2717.947,"y":206.896,"z":-4123.304},"rot":{"x":0.0,"y":82.738,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2672.555,"y":221.818,"z":-4258.266},"rot":{"x":0.0,"y":310.185,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":206076,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-2732.015,"y":208.23,"z":-4112.566},"rot":{"x":77.242,"y":180.0,"z":180.0}},{"monsterId":0,"gadgetId":70540004,"configId":206003,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2733.4,"y":211.93,"z":-4117.206},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":206002,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-2733.4,"y":211.93,"z":-4117.398},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2724.53,"y":226.394,"z":-4286.953},"rot":{"x":0.0,"y":44.482,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206052,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2625.03,"y":214.074,"z":-4274.568},"rot":{"x":0.0,"y":0.693,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206051,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2625.366,"y":213.662,"z":-4274.857},"rot":{"x":0.0,"y":0.693,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2625.275,"y":213.376,"z":-4274.061},"rot":{"x":0.0,"y":0.693,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":206039,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2760.48,"y":215.801,"z":-4304.65},"rot":{"x":0.0,"y":154.647,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2668.122,"y":234.659,"z":-4311.704},"rot":{"x":0.0,"y":308.795,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":206043,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2624.146,"y":238.354,"z":-4310.572},"rot":{"x":0.0,"y":143.351,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-2620.63,"y":231.663,"z":-4295.694},"rot":{"x":0.0,"y":32.066,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":206064,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2734.221,"y":215.474,"z":-4329.457},"rot":{"x":2.146,"y":310.409,"z":2.998}},{"monsterId":0,"gadgetId":70590036,"configId":206063,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2734.572,"y":215.706,"z":-4323.388},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":206062,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2732.32,"y":215.84,"z":-4324.753},"rot":{"x":351.186,"y":359.45,"z":7.125}},{"monsterId":0,"gadgetId":70520028,"configId":206077,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-2744.738,"y":222.17,"z":-4279.467},"rot":{"x":334.256,"y":198.973,"z":341.143}},{"monsterId":0,"gadgetId":70540001,"configId":206048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2700.591,"y":238.397,"z":-4342.087},"rot":{"x":0.0,"y":254.411,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2700.219,"y":237.985,"z":-4342.329},"rot":{"x":0.0,"y":254.411,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":206046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-2701.009,"y":237.699,"z":-4342.464},"rot":{"x":0.0,"y":254.411,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-2624.823,"y":249.124,"z":-4350.953},"rot":{"x":0.0,"y":193.391,"z":0.0}}]},{"sceneId":3,"groupId":155005341,"blockId":0,"pos":{"x":472.0475,"y":0.0,"z":377.1315},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":341003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":471.012,"y":181.502,"z":365.119},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":341002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":473.083,"y":182.559,"z":389.144},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133106511,"blockId":0,"pos":{"x":-481.67722,"y":0.0,"z":1898.12},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":511015,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-515.951,"y":181.905,"z":1902.45},"rot":{"x":333.575,"y":278.007,"z":52.789}},{"monsterId":0,"gadgetId":70520003,"configId":511014,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-517.019,"y":181.887,"z":1901.599},"rot":{"x":348.841,"y":2.192,"z":354.199}},{"monsterId":0,"gadgetId":70520009,"configId":511016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-497.887,"y":280.997,"z":1882.064},"rot":{"x":30.636,"y":170.851,"z":338.381}},{"monsterId":0,"gadgetId":70520003,"configId":511013,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-496.183,"y":254.916,"z":1951.088},"rot":{"x":353.574,"y":108.83,"z":350.352}},{"monsterId":0,"gadgetId":70520003,"configId":511012,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-499.501,"y":254.042,"z":1955.666},"rot":{"x":355.765,"y":359.484,"z":13.889}},{"monsterId":0,"gadgetId":70520005,"configId":511017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-483.571,"y":275.774,"z":1865.563},"rot":{"x":340.186,"y":311.899,"z":38.101}},{"monsterId":0,"gadgetId":70520003,"configId":511007,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-474.169,"y":139.461,"z":1884.962},"rot":{"x":351.116,"y":0.692,"z":351.104}},{"monsterId":0,"gadgetId":70520002,"configId":511005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-477.833,"y":144.273,"z":1903.687},"rot":{"x":9.475,"y":358.172,"z":338.207}},{"monsterId":0,"gadgetId":70520001,"configId":511002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-480.998,"y":145.669,"z":1906.563},"rot":{"x":352.881,"y":0.374,"z":320.526}},{"monsterId":0,"gadgetId":70520003,"configId":511006,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-479.671,"y":146.277,"z":1913.97},"rot":{"x":332.2,"y":358.084,"z":7.731}},{"monsterId":0,"gadgetId":70520002,"configId":511004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-483.498,"y":146.278,"z":1911.187},"rot":{"x":7.164,"y":0.604,"z":323.407}},{"monsterId":0,"gadgetId":70520001,"configId":511003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-473.038,"y":146.579,"z":1912.636},"rot":{"x":357.003,"y":286.368,"z":23.792}},{"monsterId":0,"gadgetId":70520001,"configId":511001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-473.428,"y":147.187,"z":1914.407},"rot":{"x":343.655,"y":359.558,"z":3.079}},{"monsterId":0,"gadgetId":70520005,"configId":511018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-458.259,"y":271.739,"z":1850.162},"rot":{"x":323.885,"y":341.77,"z":25.421}},{"monsterId":0,"gadgetId":70520003,"configId":511008,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-469.822,"y":139.779,"z":1886.818},"rot":{"x":22.724,"y":221.274,"z":348.927}},{"monsterId":0,"gadgetId":70520005,"configId":511019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-426.008,"y":258.24,"z":1827.098},"rot":{"x":342.584,"y":312.42,"z":37.871}}]},{"sceneId":3,"groupId":155005340,"blockId":0,"pos":{"x":485.33463,"y":0.0,"z":687.7391},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":340002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":468.188,"y":188.438,"z":743.367},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":340008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":504.038,"y":188.616,"z":753.221},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":340003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":453.766,"y":183.913,"z":721.631},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":340009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":480.649,"y":187.299,"z":726.746},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":340001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":465.742,"y":187.985,"z":701.974},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":340005,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":494.854,"y":172.136,"z":678.238},"rot":{"x":0.0,"y":234.113,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":340007,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":505.39,"y":171.791,"z":662.145},"rot":{"x":0.0,"y":253.994,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":340006,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":483.852,"y":172.241,"z":642.152},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":340010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":503.102,"y":209.454,"z":631.811},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":340004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":493.765,"y":207.948,"z":616.106},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133213009,"blockId":0,"pos":{"x":-3451.864,"y":0.0,"z":-3266.3015},"spawns":[{"monsterId":0,"gadgetId":70590041,"configId":9024,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-3630.486,"y":234.929,"z":-3254.946},"rot":{"x":0.0,"y":295.074,"z":0.0}},{"monsterId":0,"gadgetId":70590041,"configId":9027,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-3273.242,"y":202.101,"z":-3277.657},"rot":{"x":0.0,"y":295.074,"z":0.0}}]},{"sceneId":3,"groupId":133001036,"blockId":0,"pos":{"x":1169.2023,"y":0.0,"z":-1148.5258},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":36011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1221.283,"y":311.917,"z":-1097.191},"rot":{"x":0.0,"y":311.167,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1221.209,"y":312.159,"z":-1098.336},"rot":{"x":16.111,"y":18.133,"z":22.137}},{"monsterId":0,"gadgetId":70540005,"configId":36016,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1197.194,"y":311.929,"z":-1085.544},"rot":{"x":0.0,"y":349.902,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1170.122,"y":303.066,"z":-1129.659},"rot":{"x":0.0,"y":308.392,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1178.39,"y":344.02,"z":-1031.215},"rot":{"x":0.0,"y":212.854,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1196.475,"y":292.042,"z":-1139.6},"rot":{"x":0.0,"y":265.124,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1193.745,"y":292.891,"z":-1142.16},"rot":{"x":0.0,"y":81.021,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1129.866,"y":348.515,"z":-1055.578},"rot":{"x":0.0,"y":309.228,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1112.837,"y":275.079,"z":-1121.458},"rot":{"x":0.0,"y":310.675,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1080.785,"y":300.405,"z":-1139.793},"rot":{"x":0.0,"y":58.501,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1056.528,"y":316.249,"z":-1117.393},"rot":{"x":0.0,"y":309.368,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1076.835,"y":200.532,"z":-1191.537},"rot":{"x":0.0,"y":110.246,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1098.079,"y":200.614,"z":-1176.462},"rot":{"x":0.0,"y":213.389,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1094.256,"y":199.231,"z":-1237.597},"rot":{"x":0.0,"y":6.336,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":36001,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1260.081,"y":312.229,"z":-1273.345},"rot":{"x":25.729,"y":219.092,"z":342.392}},{"monsterId":0,"gadgetId":70540005,"configId":36004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1255.371,"y":313.163,"z":-1264.688},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1152.857,"y":199.865,"z":-1180.889},"rot":{"x":0.0,"y":57.238,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":36014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1269.122,"y":274.212,"z":-1175.558},"rot":{"x":0.0,"y":208.385,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36006,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1249.809,"y":275.945,"z":-1163.987},"rot":{"x":356.308,"y":114.463,"z":337.056}}]},{"sceneId":3,"groupId":155005342,"blockId":0,"pos":{"x":775.9375,"y":0.0,"z":590.768},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":342002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":770.79,"y":215.001,"z":582.709},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":342001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":781.085,"y":215.286,"z":598.827},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155005337,"blockId":0,"pos":{"x":565.0691,"y":0.0,"z":828.79785},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":337001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":513.906,"y":161.128,"z":915.079},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":337005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":528.658,"y":213.125,"z":854.925},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":337010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":539.066,"y":218.722,"z":883.419},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":337002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":533.753,"y":164.685,"z":895.888},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":337011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":548.371,"y":216.91,"z":832.073},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":337004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":527.654,"y":208.739,"z":810.262},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":337008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":539.65,"y":191.294,"z":792.457},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":337016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":573.213,"y":192.948,"z":788.461},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":337007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":537.402,"y":204.215,"z":771.149},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":337015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":592.189,"y":240.985,"z":768.921},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":337006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":598.144,"y":225.118,"z":808.217},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":337013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":589.543,"y":231.738,"z":853.597},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":337012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":593.255,"y":237.618,"z":886.763},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":337003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":606.182,"y":242.478,"z":774.925},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":337017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":600.844,"y":188.516,"z":812.716},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":337009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":619.275,"y":173.479,"z":811.915},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133102410,"blockId":0,"pos":{"x":1694.5156,"y":0.0,"z":707.2474},"spawns":[{"monsterId":0,"gadgetId":70590021,"configId":410015,"level":0,"poseId":0,"gatherItemId":107003,"pos":{"x":1830.011,"y":247.529,"z":461.575},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590021,"configId":410017,"level":0,"poseId":0,"gatherItemId":107003,"pos":{"x":1511.965,"y":213.689,"z":786.366},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590021,"configId":410018,"level":0,"poseId":0,"gatherItemId":107003,"pos":{"x":1741.571,"y":229.561,"z":873.801},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133001033,"blockId":0,"pos":{"x":1983.5507,"y":0.0,"z":-1584.4857},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":33004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1910.896,"y":199.685,"z":-1550.124},"rot":{"x":2.361,"y":81.866,"z":2.122}},{"monsterId":0,"gadgetId":70520009,"configId":33001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1947.727,"y":206.952,"z":-1551.252},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":33010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1916.874,"y":199.485,"z":-1556.716},"rot":{"x":332.07,"y":281.875,"z":23.32}},{"monsterId":0,"gadgetId":70520001,"configId":33009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1921.247,"y":198.38,"z":-1563.552},"rot":{"x":20.849,"y":307.179,"z":73.91}},{"monsterId":0,"gadgetId":70520001,"configId":33002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1924.686,"y":206.967,"z":-1553.649},"rot":{"x":17.119,"y":149.642,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":33003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1950.862,"y":206.138,"z":-1574.674},"rot":{"x":17.119,"y":149.642,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":33011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1974.462,"y":221.449,"z":-1568.192},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":33016,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2001.298,"y":219.72,"z":-1593.371},"rot":{"x":0.0,"y":111.866,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":33008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2004.866,"y":222.554,"z":-1581.126},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":33007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2004.533,"y":222.142,"z":-1581.419},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":33006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2004.615,"y":221.856,"z":-1580.622},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":33015,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2020.611,"y":203.713,"z":-1616.775},"rot":{"x":338.638,"y":17.709,"z":5.182}},{"monsterId":0,"gadgetId":70520001,"configId":33014,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2020.874,"y":201.659,"z":-1619.858},"rot":{"x":338.638,"y":17.709,"z":5.182}},{"monsterId":0,"gadgetId":70520009,"configId":33013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2045.076,"y":223.86,"z":-1576.302},"rot":{"x":4.792,"y":183.585,"z":354.95}},{"monsterId":0,"gadgetId":70520009,"configId":33012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2041.959,"y":223.713,"z":-1582.859},"rot":{"x":358.181,"y":145.206,"z":355.823}},{"monsterId":0,"gadgetId":70520005,"configId":33017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2046.224,"y":220.313,"z":-1701.279},"rot":{"x":0.0,"y":161.0,"z":0.0}}]},{"sceneId":3,"groupId":155005339,"blockId":0,"pos":{"x":638.09216,"y":0.0,"z":502.4667},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":339016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":555.513,"y":225.782,"z":500.123},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":339005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":552.185,"y":192.318,"z":500.626},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":339003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":620.672,"y":232.606,"z":507.165},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":339014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":710.277,"y":256.311,"z":511.473},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":339013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":727.618,"y":246.824,"z":508.387},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":339006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":662.288,"y":192.625,"z":487.026},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133001035,"blockId":0,"pos":{"x":1419.937,"y":0.0,"z":-1140.0604},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":35003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1516.586,"y":292.875,"z":-1164.281},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1518.704,"y":293.317,"z":-1156.28},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1514.822,"y":270.226,"z":-1127.356},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":35044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1525.325,"y":267.315,"z":-1060.406},"rot":{"x":0.0,"y":34.945,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":35038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1317.112,"y":268.242,"z":-1138.609},"rot":{"x":0.0,"y":149.469,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1418.657,"y":305.631,"z":-1237.042},"rot":{"x":0.0,"y":125.579,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":35009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1416.115,"y":307.161,"z":-1249.695},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":35021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1428.356,"y":306.649,"z":-1261.188},"rot":{"x":0.0,"y":227.475,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1450.661,"y":294.123,"z":-1257.434},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":35025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1456.231,"y":309.552,"z":-1222.591},"rot":{"x":0.0,"y":295.484,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":35024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1456.352,"y":309.14,"z":-1223.017},"rot":{"x":0.0,"y":295.484,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":35023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1455.668,"y":308.854,"z":-1222.6},"rot":{"x":0.0,"y":295.484,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":35042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1385.05,"y":272.62,"z":-1143.951},"rot":{"x":0.0,"y":62.188,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1489.112,"y":268.676,"z":-1134.068},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":35040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1491.635,"y":269.272,"z":-1109.576},"rot":{"x":0.0,"y":157.752,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35031,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1418.506,"y":279.546,"z":-1059.523},"rot":{"x":334.476,"y":218.268,"z":23.383}},{"monsterId":0,"gadgetId":70520024,"configId":35046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1417.521,"y":283.723,"z":-1039.577},"rot":{"x":0.0,"y":329.095,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35032,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1378.824,"y":288.943,"z":-1029.139},"rot":{"x":338.892,"y":230.458,"z":358.622}},{"monsterId":0,"gadgetId":70520024,"configId":35033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1358.521,"y":288.607,"z":-1073.242},"rot":{"x":0.0,"y":101.005,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":35037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1359.677,"y":292.219,"z":-1050.857},"rot":{"x":0.0,"y":14.368,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35035,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1404.481,"y":271.098,"z":-1118.775},"rot":{"x":14.972,"y":124.386,"z":5.916}},{"monsterId":0,"gadgetId":70520024,"configId":35039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1419.59,"y":267.4,"z":-1119.371},"rot":{"x":0.0,"y":278.106,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":35047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1318.481,"y":294.358,"z":-1052.133},"rot":{"x":0.0,"y":329.095,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":35041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1301.949,"y":301.596,"z":-1082.767},"rot":{"x":0.0,"y":253.929,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":35043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1280.487,"y":274.49,"z":-1168.032},"rot":{"x":0.0,"y":173.829,"z":0.0}}]},{"sceneId":3,"groupId":155005338,"blockId":0,"pos":{"x":626.46954,"y":0.0,"z":620.8274},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":338040,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":592.197,"y":240.726,"z":767.036},"rot":{"x":0.0,"y":276.568,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338045,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":587.007,"y":219.953,"z":755.127},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":513.139,"y":198.974,"z":727.354},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338046,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":610.41,"y":227.937,"z":726.338},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":562.854,"y":219.831,"z":711.983},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338028,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":512.964,"y":190.193,"z":684.984},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":521.89,"y":192.451,"z":675.767},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":338026,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":523.21,"y":191.571,"z":659.538},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338029,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":549.727,"y":194.118,"z":649.891},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":550.697,"y":197.253,"z":630.744},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":612.326,"y":256.155,"z":616.558},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":605.431,"y":220.337,"z":641.443},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":608.051,"y":233.61,"z":687.326},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":623.608,"y":231.528,"z":667.909},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338047,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":629.437,"y":235.617,"z":695.976},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338038,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":624.084,"y":231.752,"z":705.537},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":630.649,"y":238.315,"z":730.515},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338039,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":633.595,"y":244.544,"z":752.268},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":652.798,"y":257.736,"z":613.513},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":658.318,"y":238.932,"z":681.5},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":670.088,"y":263.713,"z":622.881},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":662.775,"y":240.774,"z":693.047},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338030,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":524.766,"y":197.781,"z":587.776},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":557.194,"y":215.363,"z":582.547},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":595.166,"y":248.586,"z":584.438},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":580.958,"y":218.173,"z":598.821},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338041,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":673.655,"y":244.681,"z":596.502},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":619.542,"y":255.6,"z":576.489},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338031,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":542.783,"y":190.626,"z":549.713},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":551.553,"y":193.197,"z":548.428},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338034,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":613.514,"y":254.573,"z":558.63},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338033,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":624.926,"y":258.713,"z":548.298},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338035,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":642.918,"y":259.976,"z":555.186},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":513.158,"y":197.198,"z":532.039},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338032,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":575.306,"y":232.698,"z":522.782},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":574.429,"y":233.115,"z":538.229},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":615.715,"y":257.785,"z":536.1},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":640.903,"y":257.414,"z":514.408},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338043,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":684.756,"y":242.512,"z":539.339},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":683.127,"y":242.101,"z":577.293},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338037,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":685.72,"y":268.269,"z":648.552},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338042,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":710.177,"y":241.722,"z":565.866},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":735.167,"y":246.715,"z":580.67},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":725.212,"y":207.056,"z":636.309},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338051,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":746.815,"y":251.183,"z":544.949},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":338044,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":741.16,"y":212.768,"z":599.053},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":751.023,"y":209.337,"z":648.404},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":767.399,"y":250.383,"z":561.239},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":338005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":765.852,"y":211.473,"z":597.518},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":338025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":745.327,"y":221.43,"z":514.561},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133001029,"blockId":0,"pos":{"x":1408.3032,"y":0.0,"z":-1904.0569},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":29074,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1533.753,"y":331.522,"z":-2026.64},"rot":{"x":0.0,"y":52.913,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29026,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1443.463,"y":311.5,"z":-1930.72},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29024,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1442.349,"y":310.21,"z":-1931.387},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29088,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1462.224,"y":306.794,"z":-1925.618},"rot":{"x":0.0,"y":318.763,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29030,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1502.033,"y":310.876,"z":-1931.949},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29078,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1393.69,"y":330.916,"z":-2040.804},"rot":{"x":0.0,"y":223.33,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29077,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1391.246,"y":331.457,"z":-1963.44},"rot":{"x":0.0,"y":310.123,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29064,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1432.47,"y":286.954,"z":-1885.245},"rot":{"x":0.0,"y":218.02,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29073,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1445.749,"y":284.508,"z":-1872.518},"rot":{"x":0.0,"y":201.66,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29068,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1444.275,"y":286.309,"z":-1882.637},"rot":{"x":0.0,"y":242.042,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29062,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1385.987,"y":322.111,"z":-1975.25},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29042,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1374.711,"y":323.603,"z":-1982.898},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1370.601,"y":317.308,"z":-1932.239},"rot":{"x":8.296,"y":15.263,"z":332.131}},{"monsterId":0,"gadgetId":70520005,"configId":29086,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1383.336,"y":314.245,"z":-1923.754},"rot":{"x":0.0,"y":76.415,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29090,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1367.474,"y":330.933,"z":-2029.35},"rot":{"x":0.0,"y":185.75,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1367.859,"y":317.167,"z":-1929.45},"rot":{"x":340.437,"y":199.418,"z":11.477}},{"monsterId":0,"gadgetId":70520009,"configId":29002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1360.272,"y":316.412,"z":-1922.181},"rot":{"x":0.0,"y":36.111,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29041,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1357.78,"y":303.601,"z":-1896.372},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29040,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1406.174,"y":302.395,"z":-1863.622},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":29075,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1412.048,"y":302.737,"z":-1866.914},"rot":{"x":0.0,"y":185.12,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1423.236,"y":303.847,"z":-1866.231},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1422.903,"y":303.436,"z":-1866.524},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1422.985,"y":303.149,"z":-1865.727},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29038,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1454.842,"y":281.689,"z":-1853.966},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29092,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1360.316,"y":293.27,"z":-1840.958},"rot":{"x":0.0,"y":267.163,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29070,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1392.179,"y":288.373,"z":-1834.815},"rot":{"x":0.0,"y":94.905,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29039,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1402.973,"y":301.32,"z":-1851.67},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29081,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1417.601,"y":290.632,"z":-1837.707},"rot":{"x":0.0,"y":181.366,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29069,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1417.629,"y":291.181,"z":-1840.459},"rot":{"x":0.0,"y":282.593,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29065,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1427.177,"y":287.581,"z":-1851.727},"rot":{"x":0.0,"y":346.016,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29071,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1440.077,"y":283.42,"z":-1850.988},"rot":{"x":0.0,"y":254.676,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29066,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1447.97,"y":280.898,"z":-1844.392},"rot":{"x":0.0,"y":48.098,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29063,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1460.649,"y":280.29,"z":-1844.098},"rot":{"x":0.0,"y":52.913,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29037,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1450.717,"y":281.419,"z":-1846.075},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29079,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1332.092,"y":332.978,"z":-1986.31},"rot":{"x":0.0,"y":113.714,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1347.582,"y":306.153,"z":-1894.089},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1345.641,"y":305.143,"z":-1892.364},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29022,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1346.755,"y":306.433,"z":-1891.697},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1328.091,"y":286.644,"z":-1818.685},"rot":{"x":0.0,"y":259.986,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1362.009,"y":285.588,"z":-1818.246},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1359.275,"y":284.481,"z":-1814.867},"rot":{"x":13.421,"y":84.993,"z":29.225}},{"monsterId":0,"gadgetId":70520001,"configId":29003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1359.482,"y":283.64,"z":-1812.73},"rot":{"x":27.264,"y":352.158,"z":6.12}},{"monsterId":0,"gadgetId":70520009,"configId":29080,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1410.703,"y":286.225,"z":-1814.751},"rot":{"x":0.0,"y":334.659,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29018,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1420.73,"y":289.397,"z":-1814.56},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1419.616,"y":288.107,"z":-1815.227},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1421.557,"y":289.117,"z":-1816.952},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1433.967,"y":281.0,"z":-1819.337},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1433.634,"y":280.588,"z":-1819.63},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1433.716,"y":280.302,"z":-1818.833},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29072,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1457.486,"y":278.395,"z":-1830.989},"rot":{"x":0.0,"y":54.574,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29091,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1304.768,"y":323.515,"z":-1891.856},"rot":{"x":0.0,"y":263.945,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29084,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1307.466,"y":322.165,"z":-1877.892},"rot":{"x":0.0,"y":265.139,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29085,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1305.821,"y":306.502,"z":-1816.686},"rot":{"x":0.0,"y":310.185,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29067,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1332.849,"y":283.176,"z":-1803.304},"rot":{"x":0.0,"y":188.87,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29035,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1334.354,"y":282.788,"z":-1803.224},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29013,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1331.643,"y":284.644,"z":-1793.409},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29082,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1401.49,"y":285.229,"z":-1811.117},"rot":{"x":0.0,"y":0.693,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1329.702,"y":283.634,"z":-1791.684},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29014,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1330.816,"y":284.924,"z":-1791.017},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":29076,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1419.561,"y":310.884,"z":-1939.544},"rot":{"x":0.0,"y":252.959,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29045,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1464.137,"y":312.285,"z":-1954.193},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29053,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1421.313,"y":321.925,"z":-1972.153},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29052,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1422.14,"y":321.645,"z":-1974.545},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29051,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1420.199,"y":320.635,"z":-1972.82},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29087,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1426.243,"y":325.658,"z":-2025.74},"rot":{"x":0.0,"y":93.629,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29083,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1476.666,"y":329.408,"z":-2012.512},"rot":{"x":0.0,"y":309.227,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29089,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1427.718,"y":329.113,"z":-2043.267},"rot":{"x":0.0,"y":253.104,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29061,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1478.292,"y":331.207,"z":-2045.376},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1477.959,"y":330.795,"z":-2045.669},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1478.041,"y":330.509,"z":-2044.872},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29049,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1347.076,"y":333.794,"z":-2032.133},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29048,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1347.903,"y":333.514,"z":-2034.525},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29047,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1345.962,"y":332.504,"z":-2032.8},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29044,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1495.221,"y":310.913,"z":-1962.835},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29043,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1514.661,"y":311.026,"z":-1955.538},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29034,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1491.615,"y":333.284,"z":-1999.023},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29033,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1492.442,"y":333.004,"z":-2001.415},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29032,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1490.501,"y":331.994,"z":-1999.69},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133001028,"blockId":0,"pos":{"x":1212.3292,"y":0.0,"z":-1636.517},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":28038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1266.081,"y":268.923,"z":-1588.991},"rot":{"x":0.0,"y":309.455,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1260.438,"y":256.379,"z":-1541.139},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1273.42,"y":275.421,"z":-1724.125},"rot":{"x":0.0,"y":57.962,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1265.871,"y":261.747,"z":-1723.46},"rot":{"x":0.0,"y":163.19,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1254.101,"y":258.335,"z":-1677.977},"rot":{"x":0.0,"y":228.24,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1240.126,"y":263.447,"z":-1710.945},"rot":{"x":0.0,"y":261.149,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1238.207,"y":259.858,"z":-1684.878},"rot":{"x":0.0,"y":261.149,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1243.722,"y":260.885,"z":-1661.563},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1241.667,"y":261.289,"z":-1651.139},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1244.786,"y":261.348,"z":-1645.173},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1244.726,"y":271.696,"z":-1618.589},"rot":{"x":0.0,"y":76.105,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1225.277,"y":270.49,"z":-1716.641},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1226.104,"y":270.21,"z":-1719.033},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28018,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1224.163,"y":269.2,"z":-1717.308},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1216.961,"y":267.862,"z":-1668.18},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1217.788,"y":267.582,"z":-1670.572},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28014,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1215.847,"y":266.572,"z":-1668.847},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1212.008,"y":266.391,"z":-1665.229},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1192.969,"y":308.802,"z":-1755.737},"rot":{"x":0.0,"y":262.838,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1172.413,"y":306.354,"z":-1728.356},"rot":{"x":0.0,"y":263.645,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1190.438,"y":284.524,"z":-1646.766},"rot":{"x":0.0,"y":42.316,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1133.523,"y":273.604,"z":-1613.61},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":28044,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1145.311,"y":299.585,"z":-1558.996},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28043,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1141.051,"y":300.231,"z":-1565.065},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1197.905,"y":259.036,"z":-1553.605},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1218.202,"y":259.364,"z":-1556.702},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1176.242,"y":303.826,"z":-1696.049},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28026,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1182.391,"y":285.059,"z":-1675.935},"rot":{"x":0.0,"y":162.93,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":28028,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1203.389,"y":268.064,"z":-1679.142},"rot":{"x":0.0,"y":317.586,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1207.988,"y":266.374,"z":-1672.828},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":28027,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1192.421,"y":284.627,"z":-1652.897},"rot":{"x":0.0,"y":333.426,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28025,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1190.726,"y":285.032,"z":-1669.49},"rot":{"x":0.0,"y":14.958,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1197.384,"y":269.121,"z":-1600.425},"rot":{"x":0.0,"y":294.058,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28022,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1241.225,"y":260.915,"z":-1549.88},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1237.865,"y":258.749,"z":-1547.994},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1233.335,"y":258.827,"z":-1547.029},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28023,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1243.166,"y":261.925,"z":-1551.605},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28024,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1242.339,"y":262.205,"z":-1549.213},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1176.562,"y":295.926,"z":-1582.535},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1148.055,"y":299.537,"z":-1545.697},"rot":{"x":0.0,"y":298.351,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28042,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1129.31,"y":301.476,"z":-1543.849},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133001030,"blockId":0,"pos":{"x":1188.0269,"y":0.0,"z":-1407.5314},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":30032,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1045.571,"y":200.349,"z":-1291.052},"rot":{"x":0.0,"y":100.668,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":30019,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1154.282,"y":301.889,"z":-1459.861},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":30014,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1185.018,"y":294.444,"z":-1465.943},"rot":{"x":0.0,"y":214.181,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":30015,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1188.565,"y":293.616,"z":-1470.234},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1135.58,"y":312.344,"z":-1410.513},"rot":{"x":0.0,"y":52.635,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1135.145,"y":311.932,"z":-1410.426},"rot":{"x":0.0,"y":52.635,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1135.828,"y":311.646,"z":-1410.007},"rot":{"x":0.0,"y":52.635,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1153.236,"y":306.222,"z":-1406.71},"rot":{"x":0.0,"y":218.471,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":30020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1178.503,"y":298.717,"z":-1430.464},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1171.802,"y":316.2,"z":-1377.559},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1171.469,"y":315.788,"z":-1377.852},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1171.551,"y":315.502,"z":-1377.055},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":30002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1226.043,"y":255.245,"z":-1429.279},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":30001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1211.07,"y":258.645,"z":-1427.095},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1220.255,"y":306.711,"z":-1358.872},"rot":{"x":0.0,"y":294.058,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":30006,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1243.068,"y":259.956,"z":-1412.474},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":30007,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1242.241,"y":260.236,"z":-1410.082},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":30005,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1241.127,"y":258.946,"z":-1410.749},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":30012,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1235.675,"y":300.206,"z":-1354.63},"rot":{"x":0.0,"y":59.075,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":30023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1265.801,"y":311.376,"z":-1310.361},"rot":{"x":0.0,"y":341.659,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":30011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1201.717,"y":258.11,"z":-1480.15},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":30010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1202.544,"y":257.83,"z":-1482.542},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":30009,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1200.603,"y":256.82,"z":-1480.817},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":30003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1193.273,"y":273.534,"z":-1426.245},"rot":{"x":46.496,"y":133.703,"z":331.242}},{"monsterId":0,"gadgetId":70520009,"configId":30022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1190.704,"y":312.376,"z":-1317.313},"rot":{"x":0.0,"y":309.455,"z":0.0}}]},{"sceneId":3,"groupId":133004097,"blockId":0,"pos":{"x":2279.5,"y":0.0,"z":-239.05624},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":373,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2279.521,"y":271.978,"z":-237.138},"rot":{"x":0.0,"y":257.088,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":372,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2279.414,"y":271.824,"z":-240.873},"rot":{"x":0.0,"y":87.575,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":370,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2277.6,"y":271.827,"z":-239.074},"rot":{"x":0.0,"y":151.344,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":371,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2281.465,"y":271.898,"z":-239.14},"rot":{"x":0.0,"y":287.017,"z":0.0}}]},{"sceneId":3,"groupId":133001025,"blockId":0,"pos":{"x":1672.0013,"y":0.0,"z":-1375.7573},"spawns":[{"monsterId":0,"gadgetId":70520008,"configId":25027,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1791.125,"y":194.901,"z":-1425.788},"rot":{"x":0.0,"y":165.058,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25045,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1769.185,"y":207.965,"z":-1372.552},"rot":{"x":347.125,"y":179.422,"z":9.488}},{"monsterId":0,"gadgetId":70520001,"configId":25043,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1774.165,"y":203.905,"z":-1373.558},"rot":{"x":6.45,"y":73.246,"z":325.835}},{"monsterId":0,"gadgetId":70520001,"configId":25041,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1769.76,"y":204.213,"z":-1379.507},"rot":{"x":14.07,"y":227.4,"z":3.5}},{"monsterId":0,"gadgetId":70520001,"configId":25044,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1780.577,"y":203.21,"z":-1369.141},"rot":{"x":345.105,"y":359.918,"z":342.784}},{"monsterId":0,"gadgetId":70520001,"configId":25042,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1768.33,"y":207.278,"z":-1365.572},"rot":{"x":17.119,"y":149.642,"z":21.968}},{"monsterId":0,"gadgetId":70520001,"configId":25046,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1772.433,"y":205.499,"z":-1368.721},"rot":{"x":35.117,"y":95.582,"z":6.043}},{"monsterId":0,"gadgetId":70520009,"configId":25026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1774.626,"y":206.681,"z":-1357.703},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25031,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1757.681,"y":215.053,"z":-1284.631},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25030,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1758.508,"y":214.773,"z":-1287.023},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1756.567,"y":213.763,"z":-1285.298},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25064,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1785.572,"y":204.698,"z":-1289.788},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1720.795,"y":213.943,"z":-1343.383},"rot":{"x":0.0,"y":162.138,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25066,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1706.159,"y":232.582,"z":-1343.039},"rot":{"x":337.703,"y":268.356,"z":6.98}},{"monsterId":0,"gadgetId":70520001,"configId":25056,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1678.963,"y":234.348,"z":-1380.696},"rot":{"x":337.367,"y":208.997,"z":21.645}},{"monsterId":0,"gadgetId":70520009,"configId":25055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1686.231,"y":230.676,"z":-1374.355},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25057,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1668.271,"y":244.659,"z":-1363.383},"rot":{"x":0.0,"y":213.379,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1674.562,"y":242.746,"z":-1336.182},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25065,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1683.238,"y":241.95,"z":-1336.165},"rot":{"x":346.832,"y":41.38,"z":337.289}},{"monsterId":0,"gadgetId":70540021,"configId":25024,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1653.585,"y":257.371,"z":-1372.694},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25025,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1652.758,"y":257.651,"z":-1370.302},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25023,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1651.644,"y":256.361,"z":-1370.969},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1666.72,"y":246.36,"z":-1334.292},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1666.387,"y":245.948,"z":-1334.585},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1666.469,"y":245.662,"z":-1333.788},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1663.316,"y":251.051,"z":-1325.667},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1660.911,"y":255.708,"z":-1315.489},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1658.97,"y":254.698,"z":-1313.764},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1660.084,"y":255.988,"z":-1313.097},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25058,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1661.904,"y":253.906,"z":-1307.143},"rot":{"x":20.756,"y":194.872,"z":276.688}},{"monsterId":0,"gadgetId":70520001,"configId":25062,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1752.84,"y":210.021,"z":-1341.654},"rot":{"x":349.267,"y":288.072,"z":330.117}},{"monsterId":0,"gadgetId":70540021,"configId":25040,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1636.672,"y":250.417,"z":-1293.503},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25038,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1635.558,"y":249.127,"z":-1294.17},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25039,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1637.499,"y":250.137,"z":-1295.895},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1610.716,"y":252.516,"z":-1291.359},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1631.288,"y":253.177,"z":-1384.698},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25049,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1564.764,"y":246.943,"z":-1383.064},"rot":{"x":345.105,"y":359.918,"z":342.784}},{"monsterId":0,"gadgetId":70520001,"configId":25052,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1561.216,"y":247.625,"z":-1377.421},"rot":{"x":338.091,"y":324.707,"z":12.967}},{"monsterId":0,"gadgetId":70520001,"configId":25047,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1560.207,"y":247.702,"z":-1375.898},"rot":{"x":345.105,"y":359.918,"z":342.784}},{"monsterId":0,"gadgetId":70540005,"configId":25068,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1549.568,"y":255.721,"z":-1366.644},"rot":{"x":0.0,"y":147.466,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25048,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1567.325,"y":253.433,"z":-1369.232},"rot":{"x":3.912,"y":257.148,"z":14.393}},{"monsterId":0,"gadgetId":70520013,"configId":25069,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1643.667,"y":275.989,"z":-1516.104},"rot":{"x":0.0,"y":210.68,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1680.449,"y":199.617,"z":-1535.693},"rot":{"x":11.663,"y":251.924,"z":9.953}},{"monsterId":0,"gadgetId":70520001,"configId":25004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1685.787,"y":219.827,"z":-1488.772},"rot":{"x":7.797,"y":64.326,"z":356.445}},{"monsterId":0,"gadgetId":70520001,"configId":25003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1689.039,"y":202.099,"z":-1533.289},"rot":{"x":5.107,"y":263.2,"z":15.823}},{"monsterId":0,"gadgetId":70520004,"configId":25063,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1765.241,"y":202.726,"z":-1308.19},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1601.244,"y":254.758,"z":-1322.74},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1764.937,"y":208.546,"z":-1357.356},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1630.973,"y":258.162,"z":-1417.176},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1652.344,"y":256.717,"z":-1421.819},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1668.094,"y":258.079,"z":-1427.812},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1611.624,"y":255.666,"z":-1419.878},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1664.012,"y":258.987,"z":-1437.228},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1674.686,"y":257.057,"z":-1446.873},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1605.026,"y":253.36,"z":-1421.35},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25067,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1598.385,"y":253.432,"z":-1363.747},"rot":{"x":0.0,"y":115.486,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":25071,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1578.612,"y":248.111,"z":-1385.626},"rot":{"x":0.0,"y":346.048,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25053,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1572.663,"y":247.79,"z":-1380.343},"rot":{"x":350.637,"y":283.219,"z":3.573}},{"monsterId":0,"gadgetId":70520001,"configId":25050,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1576.11,"y":249.873,"z":-1377.786},"rot":{"x":8.699,"y":137.79,"z":14.356}},{"monsterId":0,"gadgetId":70520001,"configId":25054,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1574.235,"y":253.09,"z":-1365.258},"rot":{"x":359.68,"y":317.211,"z":356.847}},{"monsterId":0,"gadgetId":70520001,"configId":25051,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1575.877,"y":253.606,"z":-1370.466},"rot":{"x":345.105,"y":359.918,"z":359.044}},{"monsterId":0,"gadgetId":70520001,"configId":25007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1690.506,"y":220.343,"z":-1466.086},"rot":{"x":9.217,"y":98.706,"z":3.276}},{"monsterId":0,"gadgetId":70520001,"configId":25006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1690.276,"y":220.481,"z":-1469.107},"rot":{"x":4.589,"y":148.133,"z":13.519}},{"monsterId":0,"gadgetId":70520013,"configId":25070,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1647.838,"y":274.35,"z":-1486.13},"rot":{"x":0.0,"y":135.75,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1697.391,"y":216.776,"z":-1488.31},"rot":{"x":341.723,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":25036,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1765.929,"y":194.632,"z":-1491.005},"rot":{"x":0.0,"y":175.013,"z":0.0}}]},{"sceneId":3,"groupId":133001024,"blockId":0,"pos":{"x":1391.9761,"y":0.0,"z":-1669.0284},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":24016,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1311.932,"y":284.128,"z":-1775.156},"rot":{"x":1.995,"y":137.589,"z":12.461}},{"monsterId":0,"gadgetId":70540021,"configId":24076,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1320.164,"y":284.371,"z":-1778.882},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24017,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1312.657,"y":284.361,"z":-1777.627},"rot":{"x":0.146,"y":192.124,"z":36.153}},{"monsterId":0,"gadgetId":70540021,"configId":24077,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1322.105,"y":285.381,"z":-1780.607},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24078,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1321.278,"y":285.661,"z":-1778.215},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1332.323,"y":277.786,"z":-1773.834},"rot":{"x":0.0,"y":261.149,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24133,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1425.912,"y":272.883,"z":-1785.354},"rot":{"x":0.0,"y":89.78,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24082,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1424.86,"y":273.903,"z":-1788.832},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24101,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1442.937,"y":240.665,"z":-1545.026},"rot":{"x":0.0,"y":10.759,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24098,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1433.012,"y":238.958,"z":-1541.127},"rot":{"x":0.0,"y":318.483,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24095,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1445.27,"y":250.57,"z":-1546.057},"rot":{"x":0.0,"y":1.37,"z":13.03}},{"monsterId":0,"gadgetId":70540004,"configId":24094,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1445.265,"y":250.57,"z":-1546.249},"rot":{"x":0.0,"y":1.37,"z":13.03}},{"monsterId":0,"gadgetId":70520013,"configId":24135,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1515.9,"y":272.086,"z":-1536.841},"rot":{"x":0.0,"y":268.632,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24066,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1334.32,"y":244.717,"z":-1541.429},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24064,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1333.206,"y":243.427,"z":-1542.096},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24065,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1335.147,"y":244.437,"z":-1543.821},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1338.562,"y":236.965,"z":-1563.569},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24102,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1332.755,"y":237.064,"z":-1568.16},"rot":{"x":0.0,"y":254.723,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24100,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1427.912,"y":239.109,"z":-1562.917},"rot":{"x":0.0,"y":208.282,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24042,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1492.556,"y":253.545,"z":-1568.593},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24040,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1491.442,"y":252.255,"z":-1569.26},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24041,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1493.383,"y":253.265,"z":-1570.984},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1300.706,"y":249.576,"z":-1558.612},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1329.148,"y":250.917,"z":-1583.652},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24074,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1457.414,"y":244.447,"z":-1576.528},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24072,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1456.3,"y":243.157,"z":-1577.195},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24073,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1458.241,"y":244.167,"z":-1578.92},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24099,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1392.225,"y":237.42,"z":-1596.856},"rot":{"x":0.0,"y":264.35,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24092,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1397.33,"y":246.79,"z":-1607.264},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24091,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1397.33,"y":246.79,"z":-1607.456},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24034,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1407.661,"y":242.024,"z":-1606.23},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24032,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1406.547,"y":240.734,"z":-1606.897},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24033,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1408.488,"y":241.744,"z":-1608.622},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24124,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1289.127,"y":273.779,"z":-1625.422},"rot":{"x":0.0,"y":106.406,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24114,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1292.372,"y":273.008,"z":-1621.884},"rot":{"x":0.0,"y":316.174,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24113,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1304.169,"y":273.222,"z":-1625.766},"rot":{"x":0.0,"y":158.073,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24108,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1325.708,"y":273.577,"z":-1622.969},"rot":{"x":0.0,"y":125.608,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24110,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1328.734,"y":273.017,"z":-1616.017},"rot":{"x":0.0,"y":119.148,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1396.567,"y":242.675,"z":-1623.712},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1406.366,"y":240.978,"z":-1616.596},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24097,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1412.308,"y":242.489,"z":-1626.785},"rot":{"x":0.0,"y":63.987,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1411.888,"y":241.743,"z":-1623.04},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24103,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1512.687,"y":244.392,"z":-1568.836},"rot":{"x":0.0,"y":223.635,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24120,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1508.785,"y":261.212,"z":-1696.304},"rot":{"x":0.0,"y":118.553,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24081,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1512.302,"y":261.471,"z":-1703.743},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24038,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1513.76,"y":247.34,"z":-1573.923},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24037,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1514.587,"y":247.06,"z":-1576.315},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24036,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1512.646,"y":246.05,"z":-1574.59},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24119,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1469.345,"y":266.718,"z":-1745.41},"rot":{"x":0.0,"y":161.654,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24112,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1474.427,"y":267.588,"z":-1747.189},"rot":{"x":0.0,"y":139.68,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24050,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1468.989,"y":266.722,"z":-1714.68},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24049,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1469.816,"y":266.442,"z":-1717.072},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24107,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1475.445,"y":265.899,"z":-1727.401},"rot":{"x":0.0,"y":78.731,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24137,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1477.451,"y":258.783,"z":-1687.755},"rot":{"x":0.0,"y":4.355,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24126,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1486.133,"y":246.475,"z":-1630.109},"rot":{"x":0.0,"y":344.753,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24141,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1469.537,"y":267.864,"z":-1755.027},"rot":{"x":0.0,"y":199.481,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24130,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1482.718,"y":268.67,"z":-1755.136},"rot":{"x":0.0,"y":312.431,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24096,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1409.733,"y":268.749,"z":-1659.06},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24136,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1407.117,"y":271.469,"z":-1764.153},"rot":{"x":0.0,"y":30.913,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1393.464,"y":272.54,"z":-1760.325},"rot":{"x":6.421,"y":107.421,"z":12.085}},{"monsterId":0,"gadgetId":70520001,"configId":24002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1394.366,"y":272.718,"z":-1763.275},"rot":{"x":6.731,"y":97.318,"z":3.547}},{"monsterId":0,"gadgetId":70540005,"configId":24118,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1393.323,"y":261.565,"z":-1714.606},"rot":{"x":0.0,"y":147.957,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24111,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1404.46,"y":262.842,"z":-1714.281},"rot":{"x":0.0,"y":207.428,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24085,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1397.563,"y":267.145,"z":-1700.332},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1401.975,"y":268.477,"z":-1699.899},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1401.643,"y":268.065,"z":-1700.192},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1401.724,"y":267.779,"z":-1699.395},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24117,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1368.145,"y":263.979,"z":-1742.576},"rot":{"x":0.0,"y":38.567,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24139,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1382.242,"y":272.954,"z":-1687.442},"rot":{"x":0.0,"y":14.368,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24089,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1383.842,"y":272.555,"z":-1647.109},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24088,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1384.669,"y":272.275,"z":-1649.501},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24087,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1382.728,"y":271.265,"z":-1647.776},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":24134,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1281.669,"y":302.343,"z":-1758.413},"rot":{"x":0.0,"y":120.824,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24084,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1431.883,"y":270.958,"z":-1772.932},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24105,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1439.492,"y":273.258,"z":-1786.809},"rot":{"x":0.0,"y":197.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24083,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1447.23,"y":273.091,"z":-1788.662},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24122,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1507.042,"y":244.911,"z":-1572.257},"rot":{"x":0.0,"y":158.957,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24070,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1490.165,"y":248.59,"z":-1619.972},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24069,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1490.992,"y":248.31,"z":-1622.364},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24068,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1489.051,"y":247.3,"z":-1620.639},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1504.802,"y":244.273,"z":-1630.66},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24128,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1460.158,"y":268.218,"z":-1626.818},"rot":{"x":0.0,"y":147.055,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1298.198,"y":261.0,"z":-1714.279},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24062,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1294.988,"y":263.589,"z":-1647.868},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24061,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1295.815,"y":263.309,"z":-1650.26},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24060,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1293.874,"y":262.299,"z":-1648.535},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24109,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1327.115,"y":275.947,"z":-1739.563},"rot":{"x":0.0,"y":62.614,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24115,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1318.171,"y":273.744,"z":-1723.853},"rot":{"x":0.0,"y":63.388,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24053,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1314.76,"y":277.778,"z":-1731.626},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24052,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1312.819,"y":276.768,"z":-1729.901},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24054,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1313.933,"y":278.058,"z":-1729.234},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24019,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1326.774,"y":274.496,"z":-1731.181},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1323.455,"y":260.615,"z":-1709.273},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1315.699,"y":254.647,"z":-1688.559},"rot":{"x":0.0,"y":261.149,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24058,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1311.006,"y":257.17,"z":-1659.808},"rot":{"x":0.0,"y":74.482,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24057,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1308.923,"y":256.89,"z":-1661.245},"rot":{"x":0.0,"y":74.482,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1320.678,"y":254.419,"z":-1671.168},"rot":{"x":0.0,"y":261.149,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24056,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1310.066,"y":255.88,"z":-1658.913},"rot":{"x":0.0,"y":74.482,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24140,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1342.128,"y":264.826,"z":-1735.418},"rot":{"x":0.0,"y":185.455,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1329.552,"y":276.644,"z":-1736.349},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1329.219,"y":276.232,"z":-1736.642},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24127,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1334.834,"y":275.68,"z":-1743.695},"rot":{"x":0.0,"y":164.683,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1329.301,"y":275.946,"z":-1735.845},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24129,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1330.742,"y":259.333,"z":-1705.727},"rot":{"x":0.0,"y":291.301,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24116,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1357.153,"y":268.157,"z":-1754.411},"rot":{"x":0.0,"y":38.786,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1359.048,"y":269.039,"z":-1756.243},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1350.293,"y":269.462,"z":-1758.009},"rot":{"x":0.0,"y":154.33,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24132,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1364.873,"y":263.837,"z":-1744.552},"rot":{"x":0.0,"y":346.048,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1363.833,"y":267.434,"z":-1751.926},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24138,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1362.172,"y":254.713,"z":-1711.491},"rot":{"x":0.0,"y":17.915,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1360.334,"y":255.992,"z":-1678.557},"rot":{"x":0.0,"y":268.032,"z":0.0}}]},{"sceneId":3,"groupId":133001027,"blockId":0,"pos":{"x":1381.217,"y":0.0,"z":-1434.1262},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":27013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1357.086,"y":238.936,"z":-1490.119},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1350.548,"y":241.119,"z":-1488.035},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1360.84,"y":238.972,"z":-1469.702},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":27002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1354.067,"y":256.758,"z":-1448.589},"rot":{"x":10.067,"y":124.135,"z":355.233}},{"monsterId":0,"gadgetId":70520001,"configId":27001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1360.119,"y":256.498,"z":-1444.273},"rot":{"x":17.119,"y":149.642,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1333.527,"y":248.337,"z":-1501.467},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1333.194,"y":247.925,"z":-1501.76},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1333.725,"y":246.422,"z":-1511.583},"rot":{"x":0.0,"y":12.556,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1328.975,"y":247.247,"z":-1503.634},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1331.707,"y":247.096,"z":-1503.675},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1333.276,"y":247.639,"z":-1500.963},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27077,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1347.471,"y":288.448,"z":-1385.697},"rot":{"x":0.0,"y":298.351,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27037,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1324.189,"y":250.664,"z":-1509.144},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27036,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1325.016,"y":250.384,"z":-1511.536},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27035,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1323.075,"y":249.374,"z":-1509.811},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":27069,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1313.99,"y":269.252,"z":-1448.942},"rot":{"x":0.0,"y":194.764,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27045,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1297.568,"y":258.424,"z":-1512.21},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27043,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1296.453,"y":257.134,"z":-1512.877},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27044,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1298.395,"y":258.144,"z":-1514.602},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27041,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1291.892,"y":259.47,"z":-1467.168},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27039,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1290.778,"y":258.18,"z":-1467.835},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27040,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1292.719,"y":259.19,"z":-1469.56},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":27078,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1304.404,"y":290.391,"z":-1363.498},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27071,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1318.567,"y":307.431,"z":-1299.058},"rot":{"x":0.0,"y":341.081,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27065,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1421.858,"y":295.702,"z":-1318.681},"rot":{"x":0.0,"y":317.939,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27081,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1418.288,"y":303.404,"z":-1293.138},"rot":{"x":0.0,"y":29.763,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27066,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1445.632,"y":293.162,"z":-1282.812},"rot":{"x":0.0,"y":7.106,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27082,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1466.206,"y":287.821,"z":-1328.528},"rot":{"x":0.0,"y":224.34,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27053,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1461.657,"y":287.835,"z":-1301.833},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":27070,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1494.622,"y":243.463,"z":-1419.918},"rot":{"x":0.0,"y":275.608,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27086,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1488.743,"y":241.056,"z":-1400.006},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27085,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1488.41,"y":240.644,"z":-1400.299},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27084,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1488.492,"y":240.358,"z":-1399.502},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27049,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1448.354,"y":244.447,"z":-1520.485},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27048,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1449.181,"y":244.167,"z":-1522.877},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":27052,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1436.482,"y":246.374,"z":-1524.344},"rot":{"x":0.0,"y":258.772,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":27051,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1436.67,"y":246.374,"z":-1524.306},"rot":{"x":0.0,"y":258.772,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27047,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1447.24,"y":243.157,"z":-1521.152},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27033,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1436.276,"y":244.326,"z":-1481.871},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1439.103,"y":241.305,"z":-1484.016},"rot":{"x":0.0,"y":261.149,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1428.609,"y":237.055,"z":-1491.921},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27032,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1437.103,"y":244.046,"z":-1484.263},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1435.057,"y":240.853,"z":-1489.717},"rot":{"x":0.0,"y":261.149,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27031,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1435.162,"y":243.036,"z":-1482.538},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1425.5,"y":238.409,"z":-1528.439},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1394.667,"y":241.818,"z":-1458.124},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27028,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1395.494,"y":241.538,"z":-1460.516},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27027,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1393.553,"y":240.528,"z":-1458.791},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1387.932,"y":235.986,"z":-1474.381},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27014,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1375.765,"y":236.413,"z":-1487.092},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":27024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1373.323,"y":243.592,"z":-1465.521},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1387.694,"y":239.374,"z":-1460.401},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":27025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1373.323,"y":243.592,"z":-1465.329},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1373.638,"y":237.878,"z":-1468.073},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1382.316,"y":242.346,"z":-1451.753},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":27003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1368.191,"y":256.2,"z":-1439.779},"rot":{"x":35.518,"y":161.81,"z":5.325}},{"monsterId":0,"gadgetId":70540005,"configId":27064,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1421.857,"y":281.679,"z":-1393.666},"rot":{"x":0.0,"y":63.201,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1435.121,"y":279.5,"z":-1386.112},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27075,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1283.866,"y":289.582,"z":-1384.195},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27074,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1283.533,"y":289.17,"z":-1384.488},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27073,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1283.615,"y":288.884,"z":-1383.691},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27076,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1297.229,"y":289.63,"z":-1376.421},"rot":{"x":0.0,"y":298.351,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":27080,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1324.602,"y":290.039,"z":-1375.064},"rot":{"x":0.0,"y":318.236,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":27079,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1324.191,"y":290.182,"z":-1374.148},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27067,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1385.597,"y":289.919,"z":-1355.158},"rot":{"x":0.0,"y":254.57,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1400.891,"y":293.553,"z":-1352.917},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27058,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1424.321,"y":284.581,"z":-1357.927},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27056,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1425.879,"y":281.333,"z":-1370.473},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27059,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1430.942,"y":285.192,"z":-1351.901},"rot":{"x":17.767,"y":134.995,"z":3.01}},{"monsterId":0,"gadgetId":70520009,"configId":27057,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1449.957,"y":277.589,"z":-1365.396},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27068,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1461.558,"y":279.896,"z":-1338.927},"rot":{"x":0.0,"y":259.986,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27063,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1378.013,"y":316.754,"z":-1317.447},"rot":{"x":0.0,"y":102.08,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27062,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1379.936,"y":316.013,"z":-1314.344},"rot":{"x":0.0,"y":45.162,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1382.854,"y":316.491,"z":-1316.93},"rot":{"x":0.0,"y":305.634,"z":0.0}}]},{"sceneId":3,"groupId":133001026,"blockId":0,"pos":{"x":1608.0529,"y":0.0,"z":-1596.832},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":26002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1591.16,"y":258.856,"z":-1537.696},"rot":{"x":14.07,"y":221.232,"z":3.5}},{"monsterId":0,"gadgetId":70520001,"configId":26001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1591.99,"y":258.512,"z":-1539.16},"rot":{"x":10.688,"y":107.898,"z":3.732}},{"monsterId":0,"gadgetId":70540021,"configId":26021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1605.572,"y":248.955,"z":-1564.642},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1606.399,"y":248.675,"z":-1567.034},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1595.58,"y":246.234,"z":-1552.798},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1604.458,"y":247.665,"z":-1565.309},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1604.763,"y":246.109,"z":-1557.837},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26024,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1617.914,"y":248.17,"z":-1569.471},"rot":{"x":0.0,"y":292.445,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26023,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1615.579,"y":247.16,"z":-1570.606},"rot":{"x":0.0,"y":292.445,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26025,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1615.388,"y":248.45,"z":-1569.322},"rot":{"x":0.0,"y":292.445,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1613.172,"y":246.62,"z":-1555.871},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1624.879,"y":248.681,"z":-1595.625},"rot":{"x":0.0,"y":50.176,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1624.961,"y":247.671,"z":-1593.03},"rot":{"x":0.0,"y":50.176,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1626.186,"y":248.961,"z":-1593.458},"rot":{"x":0.0,"y":50.176,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":26027,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1632.222,"y":246.043,"z":-1598.37},"rot":{"x":0.0,"y":214.348,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1636.889,"y":245.209,"z":-1607.007},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1645.061,"y":244.564,"z":-1593.279},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1587.006,"y":250.585,"z":-1663.143},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1579.194,"y":249.042,"z":-1665.169},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":26026,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1600.499,"y":246.227,"z":-1670.719},"rot":{"x":0.0,"y":18.554,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26013,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1588.12,"y":251.875,"z":-1662.476},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1589.278,"y":248.985,"z":-1670.246},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":26012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1588.947,"y":251.595,"z":-1664.868},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155005325,"blockId":0,"pos":{"x":208.008,"y":0.0,"z":434.2705},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":325001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":224.246,"y":292.373,"z":422.58},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":325002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":191.77,"y":295.302,"z":445.961},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155005324,"blockId":0,"pos":{"x":562.18463,"y":0.0,"z":810.28284},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":324015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":459.417,"y":196.671,"z":832.605},"rot":{"x":351.571,"y":358.899,"z":14.859}},{"monsterId":0,"gadgetId":70520009,"configId":324008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":560.293,"y":218.204,"z":820.627},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":569.589,"y":232.187,"z":907.275},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":546.84,"y":217.78,"z":809.705},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":451.818,"y":189.931,"z":789.707},"rot":{"x":355.223,"y":359.287,"z":16.976}},{"monsterId":0,"gadgetId":70520009,"configId":324017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":551.214,"y":208.113,"z":771.152},"rot":{"x":1.559,"y":0.211,"z":15.418}},{"monsterId":0,"gadgetId":70520009,"configId":324005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":589.614,"y":241.068,"z":772.825},"rot":{"x":355.842,"y":359.728,"z":7.481}},{"monsterId":0,"gadgetId":70520009,"configId":324007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":587.703,"y":220.158,"z":800.017},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":596.02,"y":229.284,"z":820.306},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":589.703,"y":237.962,"z":896.95},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":584.259,"y":242.508,"z":926.363},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":534.111,"y":216.143,"z":712.644},"rot":{"x":2.712,"y":0.174,"z":7.339}},{"monsterId":0,"gadgetId":70520009,"configId":324006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":687.82,"y":272.243,"z":673.501},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133002079,"blockId":0,"pos":{"x":1884.4584,"y":0.0,"z":-885.7012},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":1040,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1885.325,"y":241.134,"z":-888.679},"rot":{"x":0.0,"y":118.037,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":1034,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1886.415,"y":240.909,"z":-883.064},"rot":{"x":0.0,"y":118.037,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":1035,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1883.787,"y":240.524,"z":-882.441},"rot":{"x":0.0,"y":118.037,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":1036,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1882.982,"y":240.617,"z":-885.515},"rot":{"x":0.0,"y":118.037,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":1037,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1882.395,"y":240.71,"z":-888.315},"rot":{"x":0.0,"y":118.037,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":1039,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1885.846,"y":241.047,"z":-886.193},"rot":{"x":0.0,"y":118.037,"z":0.0}}]},{"sceneId":3,"groupId":133001042,"blockId":0,"pos":{"x":1539.2898,"y":0.0,"z":-2025.5813},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":42005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1537.608,"y":331.482,"z":-2035.654},"rot":{"x":0.0,"y":52.913,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":42004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1538.037,"y":331.553,"z":-2034.255},"rot":{"x":0.0,"y":52.913,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":42003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1538.674,"y":331.995,"z":-2022.744},"rot":{"x":0.0,"y":52.913,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":42002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1539.66,"y":332.032,"z":-2023.141},"rot":{"x":0.0,"y":52.913,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":42001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1542.47,"y":332.725,"z":-2012.112},"rot":{"x":14.88,"y":252.514,"z":10.287}}]},{"sceneId":3,"groupId":133002029,"blockId":0,"pos":{"x":1391.3031,"y":0.0,"z":-898.70215},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":29009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1430.039,"y":312.45,"z":-833.613},"rot":{"x":0.0,"y":316.33,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29016,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1484.915,"y":267.456,"z":-776.926},"rot":{"x":0.0,"y":56.274,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":29005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1499.183,"y":266.266,"z":-997.668},"rot":{"x":0.0,"y":342.716,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":29020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1452.058,"y":276.918,"z":-1023.209},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29015,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1455.858,"y":281.437,"z":-1004.049},"rot":{"x":328.831,"y":19.201,"z":333.166}},{"monsterId":0,"gadgetId":70520024,"configId":29008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1409.908,"y":333.065,"z":-932.231},"rot":{"x":0.0,"y":214.894,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":29003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1385.349,"y":333.246,"z":-948.019},"rot":{"x":0.0,"y":25.695,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":29011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1359.415,"y":342.311,"z":-939.077},"rot":{"x":0.0,"y":241.95,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29013,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1321.821,"y":298.697,"z":-1006.727},"rot":{"x":0.0,"y":129.101,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1324.098,"y":297.982,"z":-1008.724},"rot":{"x":0.0,"y":359.625,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":29014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1324.222,"y":318.192,"z":-832.314},"rot":{"x":0.0,"y":325.062,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":29006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1309.554,"y":344.622,"z":-851.261},"rot":{"x":0.0,"y":296.6,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":29017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1334.609,"y":352.276,"z":-925.279},"rot":{"x":0.0,"y":267.106,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29018,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1346.789,"y":310.919,"z":-813.956},"rot":{"x":0.0,"y":108.787,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29019,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1297.852,"y":324.258,"z":-797.428},"rot":{"x":0.0,"y":122.481,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29012,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1304.024,"y":321.815,"z":-789.439},"rot":{"x":0.0,"y":59.322,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1303.39,"y":321.922,"z":-789.039},"rot":{"x":0.0,"y":292.248,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1517.437,"y":272.013,"z":-861.723},"rot":{"x":0.0,"y":228.802,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":29010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1479.247,"y":306.069,"z":-924.411},"rot":{"x":0.0,"y":46.829,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":29002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1486.294,"y":304.325,"z":-918.951},"rot":{"x":0.0,"y":271.244,"z":0.0}}]},{"sceneId":3,"groupId":133002028,"blockId":0,"pos":{"x":1143.1624,"y":0.0,"z":-652.7317},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":28015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1137.375,"y":295.951,"z":-532.79},"rot":{"x":0.0,"y":110.494,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1235.194,"y":384.056,"z":-758.088},"rot":{"x":0.0,"y":345.435,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28012,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1157.053,"y":400.977,"z":-724.811},"rot":{"x":13.853,"y":81.93,"z":39.494}},{"monsterId":0,"gadgetId":70520024,"configId":28003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1205.928,"y":388.197,"z":-723.994},"rot":{"x":0.0,"y":115.715,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1172.762,"y":400.232,"z":-707.092},"rot":{"x":0.0,"y":84.285,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1132.942,"y":416.721,"z":-719.128},"rot":{"x":0.0,"y":213.476,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1097.116,"y":411.645,"z":-716.388},"rot":{"x":0.0,"y":115.113,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1082.087,"y":413.708,"z":-719.219},"rot":{"x":0.0,"y":275.729,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1087.136,"y":402.332,"z":-660.215},"rot":{"x":0.0,"y":31.471,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1033.685,"y":392.096,"z":-694.461},"rot":{"x":0.0,"y":158.86,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1031.754,"y":384.065,"z":-670.144},"rot":{"x":0.0,"y":212.434,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1049.079,"y":372.483,"z":-622.608},"rot":{"x":0.0,"y":324.604,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1235.402,"y":286.667,"z":-547.881},"rot":{"x":0.0,"y":57.678,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1190.479,"y":285.767,"z":-517.318},"rot":{"x":0.0,"y":60.445,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1206.989,"y":299.225,"z":-572.601},"rot":{"x":0.0,"y":10.003,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1235.617,"y":294.085,"z":-556.969},"rot":{"x":0.0,"y":248.524,"z":0.0}}]},{"sceneId":3,"groupId":133214001,"blockId":0,"pos":{"x":-4106.7075,"y":0.0,"z":-803.55347},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":1001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4108.745,"y":200.086,"z":-813.508},"rot":{"x":0.516,"y":144.828,"z":0.732}},{"monsterId":0,"gadgetId":70520025,"configId":1006,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4104.67,"y":198.117,"z":-793.599},"rot":{"x":340.919,"y":183.874,"z":348.704}}]},{"sceneId":3,"groupId":133214002,"blockId":0,"pos":{"x":-4097.049,"y":0.0,"z":-707.532},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":2001,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4097.049,"y":198.95,"z":-707.532},"rot":{"x":0.0,"y":79.192,"z":0.0}}]},{"sceneId":3,"groupId":133002030,"blockId":0,"pos":{"x":1142.6981,"y":0.0,"z":-70.18094},"spawns":[{"monsterId":0,"gadgetId":70540021,"configId":30010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1260.218,"y":203.893,"z":-101.608},"rot":{"x":4.454,"y":0.174,"z":4.467}},{"monsterId":0,"gadgetId":70540021,"configId":30009,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1261.057,"y":203.865,"z":-104.012},"rot":{"x":4.454,"y":0.174,"z":4.467}},{"monsterId":0,"gadgetId":70540021,"configId":30008,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1259.206,"y":202.576,"z":-102.377},"rot":{"x":4.454,"y":0.174,"z":4.467}},{"monsterId":0,"gadgetId":70520005,"configId":30006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1239.92,"y":203.108,"z":-59.937},"rot":{"x":2.679,"y":359.916,"z":356.424}},{"monsterId":0,"gadgetId":70520005,"configId":30005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1238.334,"y":203.221,"z":-60.693},"rot":{"x":0.894,"y":359.972,"z":356.424}},{"monsterId":0,"gadgetId":70520005,"configId":30004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1238.991,"y":203.197,"z":-61.764},"rot":{"x":0.894,"y":359.972,"z":356.424}},{"monsterId":0,"gadgetId":70540003,"configId":30027,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1063.336,"y":211.552,"z":-64.803},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":30026,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1064.163,"y":211.272,"z":-67.195},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":30025,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1062.222,"y":210.262,"z":-65.47},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1054.56,"y":209.165,"z":-37.119},"rot":{"x":0.0,"y":354.561,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":30019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1097.794,"y":200.994,"z":-207.849},"rot":{"x":4.46,"y":233.677,"z":6.038}},{"monsterId":0,"gadgetId":70520005,"configId":30029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1031.195,"y":209.195,"z":-27.179},"rot":{"x":0.0,"y":53.802,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1090.02,"y":207.536,"z":-30.973},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1089.687,"y":207.124,"z":-31.266},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1089.769,"y":206.838,"z":-30.469},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133002025,"blockId":0,"pos":{"x":1157.8893,"y":0.0,"z":-913.7896},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":25012,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1220.435,"y":345.305,"z":-997.304},"rot":{"x":0.0,"y":58.083,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1215.5,"y":342.312,"z":-1011.547},"rot":{"x":1.995,"y":32.582,"z":326.437}},{"monsterId":0,"gadgetId":70540005,"configId":25015,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1037.74,"y":408.224,"z":-1022.013},"rot":{"x":0.0,"y":223.635,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1037.575,"y":407.831,"z":-1023.783},"rot":{"x":0.0,"y":155.526,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":25007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1115.355,"y":403.866,"z":-908.102},"rot":{"x":0.0,"y":64.569,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":25013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1176.111,"y":482.127,"z":-899.135},"rot":{"x":0.0,"y":244.422,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1025.048,"y":331.621,"z":-971.913},"rot":{"x":0.0,"y":260.358,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":25005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1074.889,"y":470.17,"z":-814.69},"rot":{"x":0.0,"y":338.04,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":25006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1120.04,"y":408.878,"z":-1002.935},"rot":{"x":0.0,"y":254.57,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":25004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1152.624,"y":381.539,"z":-995.696},"rot":{"x":0.0,"y":254.78,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":25002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1249.904,"y":380.933,"z":-920.739},"rot":{"x":0.0,"y":222.857,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25014,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1221.488,"y":375.096,"z":-792.638},"rot":{"x":0.0,"y":355.725,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25008,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1215.751,"y":376.67,"z":-775.563},"rot":{"x":13.116,"y":117.324,"z":350.132}},{"monsterId":0,"gadgetId":70520024,"configId":25009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1234.676,"y":374.284,"z":-786.097},"rot":{"x":0.0,"y":283.024,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":25003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1271.204,"y":341.854,"z":-784.688},"rot":{"x":0.0,"y":18.184,"z":0.0}}]},{"sceneId":3,"groupId":133002024,"blockId":0,"pos":{"x":1916.868,"y":0.0,"z":-393.34735},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":24036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1798.108,"y":215.524,"z":-490.26},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1892.574,"y":249.951,"z":-478.752},"rot":{"x":0.0,"y":181.345,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24073,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1925.359,"y":255.895,"z":-501.899},"rot":{"x":0.0,"y":136.946,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":24015,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1926.888,"y":256.305,"z":-500.398},"rot":{"x":0.0,"y":247.925,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24078,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2039.447,"y":249.204,"z":-473.78},"rot":{"x":0.0,"y":135.299,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24077,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2039.587,"y":249.186,"z":-473.987},"rot":{"x":0.0,"y":33.353,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24076,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2039.289,"y":249.302,"z":-474.087},"rot":{"x":0.0,"y":264.241,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24075,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2040.2,"y":248.942,"z":-473.119},"rot":{"x":0.0,"y":33.353,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24070,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2028.828,"y":248.576,"z":-484.451},"rot":{"x":0.0,"y":33.353,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24072,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1929.272,"y":251.148,"z":-467.881},"rot":{"x":0.0,"y":349.371,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24043,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1936.54,"y":252.989,"z":-458.055},"rot":{"x":0.0,"y":45.904,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24067,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2026.258,"y":252.532,"z":-457.322},"rot":{"x":0.0,"y":105.537,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24069,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1943.673,"y":253.508,"z":-441.418},"rot":{"x":0.0,"y":197.607,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":24014,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2024.524,"y":252.543,"z":-449.148},"rot":{"x":0.0,"y":105.537,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24065,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1939.867,"y":249.347,"z":-420.133},"rot":{"x":0.0,"y":161.526,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24044,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1939.895,"y":250.541,"z":-425.68},"rot":{"x":0.0,"y":45.904,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24071,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2013.431,"y":251.551,"z":-430.991},"rot":{"x":0.0,"y":134.52,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24054,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1922.958,"y":246.274,"z":-399.372},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24064,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1962.389,"y":232.452,"z":-393.619},"rot":{"x":26.574,"y":206.534,"z":344.505}},{"monsterId":0,"gadgetId":70520001,"configId":24063,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1964.521,"y":234.812,"z":-393.967},"rot":{"x":358.499,"y":192.12,"z":344.793}},{"monsterId":0,"gadgetId":70520009,"configId":24002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2040.591,"y":258.295,"z":-397.483},"rot":{"x":0.0,"y":91.367,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24032,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1889.284,"y":236.252,"z":-415.047},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1902.783,"y":245.31,"z":-427.016},"rot":{"x":0.0,"y":167.458,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24066,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1904.35,"y":245.168,"z":-414.5},"rot":{"x":0.0,"y":35.247,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24033,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1889.284,"y":236.252,"z":-414.855},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24045,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1897.508,"y":245.475,"z":-429.19},"rot":{"x":0.0,"y":45.904,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1892.699,"y":223.506,"z":-395.523},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24009,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1906.261,"y":249.495,"z":-376.992},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24008,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1907.089,"y":249.215,"z":-379.384},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24007,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1905.147,"y":248.205,"z":-377.659},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24056,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1915.843,"y":248.019,"z":-374.256},"rot":{"x":0.0,"y":173.442,"z":344.391}},{"monsterId":0,"gadgetId":70520009,"configId":24003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1937.172,"y":229.179,"z":-378.358},"rot":{"x":0.0,"y":260.358,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24061,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1959.142,"y":231.726,"z":-387.673},"rot":{"x":1.767,"y":173.116,"z":335.278}},{"monsterId":0,"gadgetId":70520001,"configId":24060,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1954.609,"y":230.858,"z":-383.196},"rot":{"x":355.033,"y":228.487,"z":28.02}},{"monsterId":0,"gadgetId":70540005,"configId":24068,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1934.855,"y":242.216,"z":-352.18},"rot":{"x":0.0,"y":101.499,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24062,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1963.082,"y":235.966,"z":-371.33},"rot":{"x":3.956,"y":233.224,"z":340.349}},{"monsterId":0,"gadgetId":70520005,"configId":24079,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2003.144,"y":260.845,"z":-356.344},"rot":{"x":0.0,"y":129.312,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2006.342,"y":262.915,"z":-360.549},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24018,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2007.169,"y":262.635,"z":-362.941},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2005.228,"y":261.626,"z":-361.216},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24074,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1939.287,"y":241.365,"z":-345.462},"rot":{"x":0.0,"y":23.476,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24027,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1946.215,"y":246.092,"z":-339.761},"rot":{"x":2.162,"y":109.054,"z":4.837}},{"monsterId":0,"gadgetId":70520001,"configId":24028,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1941.78,"y":243.531,"z":-333.626},"rot":{"x":2.162,"y":109.054,"z":4.837}},{"monsterId":0,"gadgetId":70520013,"configId":24013,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1931.997,"y":241.601,"z":-349.748},"rot":{"x":0.0,"y":39.015,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2010.027,"y":257.93,"z":-335.449},"rot":{"x":0.0,"y":239.612,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2045.785,"y":259.419,"z":-339.485},"rot":{"x":0.0,"y":61.601,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24041,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1918.521,"y":236.0,"z":-297.745},"rot":{"x":0.984,"y":125.683,"z":327.077}},{"monsterId":0,"gadgetId":70520001,"configId":24040,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1918.928,"y":236.238,"z":-298.6},"rot":{"x":9.6,"y":183.024,"z":338.122}},{"monsterId":0,"gadgetId":70520001,"configId":24039,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1915.356,"y":235.853,"z":-287.68},"rot":{"x":349.227,"y":116.039,"z":314.627}},{"monsterId":0,"gadgetId":70540021,"configId":24023,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1899.906,"y":237.312,"z":-314.499},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24022,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1900.733,"y":237.032,"z":-316.891},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1898.792,"y":236.022,"z":-315.166},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1898.47,"y":234.229,"z":-309.61},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24046,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1874.071,"y":244.631,"z":-459.379},"rot":{"x":0.0,"y":45.904,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24012,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1879.896,"y":228.155,"z":-383.913},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24011,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1879.896,"y":228.155,"z":-384.105},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24035,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1850.987,"y":225.827,"z":-420.203},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24052,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1852.436,"y":224.836,"z":-407.932},"rot":{"x":8.631,"y":196.044,"z":343.255}},{"monsterId":0,"gadgetId":70520005,"configId":24024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1851.278,"y":218.69,"z":-311.911},"rot":{"x":0.0,"y":317.376,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1846.012,"y":228.181,"z":-444.319},"rot":{"x":0.0,"y":173.442,"z":1.063}},{"monsterId":0,"gadgetId":70520009,"configId":24005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1841.492,"y":216.671,"z":-366.464},"rot":{"x":0.0,"y":260.358,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1834.963,"y":209.928,"z":-332.807},"rot":{"x":0.0,"y":260.358,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24051,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1837.565,"y":202.546,"z":-287.53},"rot":{"x":0.112,"y":0.027,"z":357.15}},{"monsterId":0,"gadgetId":70520005,"configId":24053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1813.439,"y":216.879,"z":-349.972},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1825.112,"y":204.926,"z":-318.418},"rot":{"x":352.082,"y":176.015,"z":341.937}},{"monsterId":0,"gadgetId":70540003,"configId":24059,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1796.827,"y":222.272,"z":-410.01},"rot":{"x":9.493,"y":329.142,"z":350.026}},{"monsterId":0,"gadgetId":70540003,"configId":24058,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1796.846,"y":222.383,"z":-409.722},"rot":{"x":64.33,"y":213.799,"z":243.114}},{"monsterId":0,"gadgetId":70540003,"configId":24057,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1797.479,"y":222.386,"z":-409.529},"rot":{"x":64.33,"y":213.799,"z":321.483}},{"monsterId":0,"gadgetId":70520001,"configId":24042,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1793.344,"y":215.588,"z":-464.107},"rot":{"x":352.226,"y":138.406,"z":337.437}},{"monsterId":0,"gadgetId":70520001,"configId":24049,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1844.919,"y":227.717,"z":-461.992},"rot":{"x":325.956,"y":178.421,"z":6.558}},{"monsterId":0,"gadgetId":70520001,"configId":24038,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1844.838,"y":241.943,"z":-466.437},"rot":{"x":357.751,"y":158.152,"z":4.797}},{"monsterId":0,"gadgetId":70520005,"configId":24055,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1800.298,"y":213.386,"z":-265.587},"rot":{"x":0.0,"y":207.254,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24029,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1812.115,"y":204.471,"z":-267.677},"rot":{"x":354.703,"y":223.69,"z":359.944}},{"monsterId":0,"gadgetId":70520001,"configId":24048,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1853.432,"y":244.265,"z":-497.957},"rot":{"x":325.956,"y":178.421,"z":6.558}}]},{"sceneId":3,"groupId":133002027,"blockId":0,"pos":{"x":1145.868,"y":0.0,"z":-384.99277},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":27022,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1133.058,"y":326.04,"z":-499.596},"rot":{"x":0.0,"y":17.001,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1146.567,"y":322.847,"z":-497.73},"rot":{"x":0.0,"y":351.242,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1278.545,"y":282.298,"z":-449.425},"rot":{"x":0.0,"y":185.455,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27023,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1044.668,"y":287.539,"z":-436.369},"rot":{"x":0.0,"y":12.658,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1047.701,"y":264.91,"z":-372.947},"rot":{"x":0.0,"y":310.675,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1059.652,"y":261.906,"z":-370.44},"rot":{"x":0.0,"y":63.623,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27028,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1080.012,"y":254.006,"z":-345.77},"rot":{"x":0.0,"y":196.847,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":27008,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1075.11,"y":243.161,"z":-305.235},"rot":{"x":0.0,"y":56.102,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1088.56,"y":255.308,"z":-345.866},"rot":{"x":0.0,"y":134.584,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":27009,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1092.294,"y":242.953,"z":-294.386},"rot":{"x":0.0,"y":268.749,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1111.03,"y":261.4,"z":-386.649},"rot":{"x":0.0,"y":296.495,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1120.677,"y":245.715,"z":-294.53},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1135.919,"y":280.655,"z":-434.749},"rot":{"x":0.0,"y":148.055,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1147.932,"y":271.152,"z":-414.623},"rot":{"x":0.0,"y":286.567,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27027,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1138.718,"y":277.794,"z":-424.678},"rot":{"x":0.0,"y":331.404,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1136.869,"y":246.389,"z":-314.589},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1136.536,"y":245.977,"z":-314.882},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1136.618,"y":245.691,"z":-314.085},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1156.802,"y":246.64,"z":-332.135},"rot":{"x":0.0,"y":73.258,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1183.323,"y":251.965,"z":-363.167},"rot":{"x":0.0,"y":95.281,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1185.557,"y":247.791,"z":-344.337},"rot":{"x":0.0,"y":235.931,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1188.493,"y":275.192,"z":-437.557},"rot":{"x":0.0,"y":291.376,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1189.807,"y":266.825,"z":-413.606},"rot":{"x":0.0,"y":148.055,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1201.903,"y":270.372,"z":-424.937},"rot":{"x":0.0,"y":212.434,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1206.16,"y":253.375,"z":-376.728},"rot":{"x":0.0,"y":290.223,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1271.759,"y":255.588,"z":-390.314},"rot":{"x":0.0,"y":197.128,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":27020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1244.17,"y":307.552,"z":-495.476},"rot":{"x":0.0,"y":92.538,"z":0.0}}]},{"sceneId":3,"groupId":133106472,"blockId":0,"pos":{"x":-574.908,"y":0.0,"z":1921.802},"spawns":[{"monsterId":0,"gadgetId":70510015,"configId":472013,"level":0,"poseId":0,"gatherItemId":101642,"pos":{"x":-574.908,"y":272.888,"z":1921.802},"rot":{"x":329.198,"y":13.605,"z":11.81}}]},{"sceneId":3,"groupId":133002026,"blockId":0,"pos":{"x":1963.6862,"y":0.0,"z":-128.39162},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":26025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1950.802,"y":215.265,"z":-178.806},"rot":{"x":0.0,"y":85.517,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26020,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1950.019,"y":236.419,"z":-190.258},"rot":{"x":0.0,"y":142.03,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":26008,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1948.418,"y":232.836,"z":-182.958},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":26007,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1948.418,"y":232.836,"z":-183.149},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1984.793,"y":261.825,"z":-177.005},"rot":{"x":0.0,"y":315.727,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26019,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2026.778,"y":265.76,"z":-184.689},"rot":{"x":0.0,"y":346.522,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26027,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1981.814,"y":221.828,"z":-166.707},"rot":{"x":0.0,"y":94.448,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26021,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1987.596,"y":225.337,"z":-159.456},"rot":{"x":0.0,"y":172.493,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1978.168,"y":216.251,"z":-159.311},"rot":{"x":0.0,"y":173.442,"z":344.391}},{"monsterId":0,"gadgetId":70520004,"configId":26014,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1856.513,"y":204.065,"z":-248.575},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":26015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1883.38,"y":202.272,"z":-190.299},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1936.101,"y":236.656,"z":-134.355},"rot":{"x":0.0,"y":9.115,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":26002,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1953.468,"y":233.989,"z":-137.188},"rot":{"x":0.0,"y":240.793,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":26023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1983.646,"y":212.686,"z":-124.246},"rot":{"x":0.0,"y":116.467,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26018,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2023.95,"y":267.119,"z":-148.668},"rot":{"x":0.0,"y":284.18,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":26001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2035.197,"y":270.133,"z":-124.341},"rot":{"x":0.0,"y":260.358,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":26012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2005.429,"y":209.854,"z":-84.258},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":26011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2005.096,"y":209.442,"z":-84.551},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":26010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2005.178,"y":209.156,"z":-83.754},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":26028,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2003.307,"y":210.175,"z":-65.832},"rot":{"x":0.0,"y":80.541,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1982.481,"y":237.458,"z":-47.294},"rot":{"x":0.0,"y":59.849,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2028.433,"y":206.489,"z":-39.181},"rot":{"x":0.0,"y":110.272,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26022,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2041.673,"y":205.371,"z":-22.117},"rot":{"x":0.0,"y":297.164,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":26016,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1854.779,"y":202.588,"z":-77.175},"rot":{"x":5.999,"y":270.217,"z":24.171}},{"monsterId":0,"gadgetId":70520001,"configId":26005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1852.25,"y":203.071,"z":-72.484},"rot":{"x":2.162,"y":109.054,"z":333.164}},{"monsterId":0,"gadgetId":70520001,"configId":26004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1848.149,"y":202.042,"z":-71.525},"rot":{"x":351.302,"y":119.107,"z":316.852}}]},{"sceneId":3,"groupId":133002021,"blockId":0,"pos":{"x":1707.9286,"y":0.0,"z":-678.3898},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":21052,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1539.576,"y":267.019,"z":-640.205},"rot":{"x":0.0,"y":229.632,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":21001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1572.57,"y":271.993,"z":-691.345},"rot":{"x":0.0,"y":75.362,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":21031,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1642.261,"y":267.042,"z":-666.167},"rot":{"x":357.751,"y":158.152,"z":4.797}},{"monsterId":0,"gadgetId":70520001,"configId":21030,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1642.714,"y":267.379,"z":-669.761},"rot":{"x":357.751,"y":158.152,"z":4.797}},{"monsterId":0,"gadgetId":70540005,"configId":21047,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1627.425,"y":267.508,"z":-743.408},"rot":{"x":0.0,"y":233.844,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":21024,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1616.245,"y":268.034,"z":-748.562},"rot":{"x":2.162,"y":109.054,"z":4.837}},{"monsterId":0,"gadgetId":70520001,"configId":21023,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1614.626,"y":268.87,"z":-751.318},"rot":{"x":22.34,"y":50.208,"z":332.303}},{"monsterId":0,"gadgetId":70520001,"configId":21027,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1662.372,"y":266.832,"z":-737.244},"rot":{"x":7.916,"y":168.213,"z":358.104}},{"monsterId":0,"gadgetId":70520001,"configId":21025,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1655.934,"y":266.526,"z":-736.304},"rot":{"x":9.681,"y":201.689,"z":10.917}},{"monsterId":0,"gadgetId":70520001,"configId":21026,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1663.915,"y":266.764,"z":-737.592},"rot":{"x":354.58,"y":129.416,"z":331.566}},{"monsterId":0,"gadgetId":70540005,"configId":21046,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1704.574,"y":256.558,"z":-727.343},"rot":{"x":0.0,"y":50.455,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":21028,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1701.692,"y":257.401,"z":-724.49},"rot":{"x":356.251,"y":295.147,"z":344.404}},{"monsterId":0,"gadgetId":70540005,"configId":21048,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1696.401,"y":267.299,"z":-648.96},"rot":{"x":0.0,"y":161.166,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":21042,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1692.411,"y":265.567,"z":-637.301},"rot":{"x":0.0,"y":177.281,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":21049,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1701.779,"y":255.413,"z":-574.939},"rot":{"x":0.0,"y":236.306,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1711.384,"y":257.809,"z":-727.895},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1711.302,"y":258.095,"z":-728.692},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1711.635,"y":258.507,"z":-728.399},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":21051,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1716.714,"y":232.628,"z":-639.388},"rot":{"x":0.0,"y":162.107,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":21043,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1710.59,"y":235.362,"z":-599.319},"rot":{"x":0.0,"y":312.955,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1738.731,"y":247.584,"z":-715.533},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1738.398,"y":247.172,"z":-715.826},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1738.48,"y":246.886,"z":-715.029},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":21014,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1753.895,"y":246.49,"z":-746.998},"rot":{"x":0.0,"y":79.53,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":21003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1765.732,"y":241.828,"z":-715.172},"rot":{"x":0.0,"y":18.457,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1762.231,"y":248.851,"z":-692.065},"rot":{"x":8.479,"y":216.65,"z":2.046}},{"monsterId":0,"gadgetId":70520004,"configId":21002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1755.416,"y":243.391,"z":-702.724},"rot":{"x":0.0,"y":219.43,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":21016,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1762.496,"y":248.628,"z":-648.824},"rot":{"x":0.0,"y":64.274,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":21033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1758.662,"y":233.503,"z":-615.729},"rot":{"x":325.956,"y":178.421,"z":6.558}},{"monsterId":0,"gadgetId":70540005,"configId":21044,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1755.79,"y":229.973,"z":-593.75},"rot":{"x":0.0,"y":96.974,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1773.257,"y":245.949,"z":-750.907},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1768.78,"y":249.238,"z":-694.146},"rot":{"x":8.479,"y":216.65,"z":2.046}},{"monsterId":0,"gadgetId":70520009,"configId":21004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1777.565,"y":245.565,"z":-658.01},"rot":{"x":0.0,"y":18.457,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":21050,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1784.38,"y":248.767,"z":-639.155},"rot":{"x":0.0,"y":3.763,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":21045,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1769.201,"y":248.063,"z":-641.588},"rot":{"x":0.0,"y":288.083,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":21015,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1775.798,"y":247.628,"z":-632.46},"rot":{"x":0.0,"y":192.075,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":21017,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1781.195,"y":248.423,"z":-637.461},"rot":{"x":0.0,"y":295.786,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1780.349,"y":247.431,"z":-627.823},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1743.964,"y":259.263,"z":-759.83},"rot":{"x":0.538,"y":207.254,"z":16.743}},{"monsterId":0,"gadgetId":70540001,"configId":21009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1757.937,"y":246.514,"z":-761.576},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1757.604,"y":246.102,"z":-761.869},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1757.686,"y":245.816,"z":-761.072},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1672.401,"y":251.678,"z":-558.8},"rot":{"x":341.225,"y":160.489,"z":2.158}},{"monsterId":0,"gadgetId":70520001,"configId":21022,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1613.829,"y":266.869,"z":-764.452},"rot":{"x":325.956,"y":178.421,"z":6.558}},{"monsterId":0,"gadgetId":70520001,"configId":21037,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1694.654,"y":231.498,"z":-540.084},"rot":{"x":3.801,"y":183.091,"z":7.284}},{"monsterId":0,"gadgetId":70520001,"configId":21036,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1693.554,"y":222.603,"z":-528.981},"rot":{"x":325.956,"y":178.421,"z":6.558}},{"monsterId":0,"gadgetId":70520001,"configId":21035,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1694.757,"y":222.519,"z":-529.303},"rot":{"x":354.016,"y":205.416,"z":38.092}},{"monsterId":0,"gadgetId":70520001,"configId":21034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1662.91,"y":221.279,"z":-515.343},"rot":{"x":354.016,"y":205.416,"z":38.092}},{"monsterId":0,"gadgetId":70520009,"configId":21005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1602.741,"y":287.133,"z":-757.957},"rot":{"x":0.0,"y":218.753,"z":0.0}}]},{"sceneId":3,"groupId":133002020,"blockId":0,"pos":{"x":1431.9083,"y":0.0,"z":-619.65967},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":20010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1384.015,"y":299.37,"z":-753.27},"rot":{"x":0.0,"y":337.577,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1389.829,"y":276.655,"z":-667.269},"rot":{"x":0.0,"y":268.006,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1467.128,"y":268.1,"z":-695.612},"rot":{"x":0.0,"y":279.755,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1339.102,"y":271.567,"z":-631.613},"rot":{"x":0.0,"y":30.071,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":20011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1424.933,"y":267.653,"z":-630.18},"rot":{"x":0.0,"y":0.391,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":20009,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1485.526,"y":268.181,"z":-721.42},"rot":{"x":0.0,"y":353.44,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":20019,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1473.526,"y":267.443,"z":-655.383},"rot":{"x":0.0,"y":296.69,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1339.822,"y":270.203,"z":-600.971},"rot":{"x":0.0,"y":237.43,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":20004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1492.223,"y":268.186,"z":-593.574},"rot":{"x":0.0,"y":230.201,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1521.738,"y":267.196,"z":-655.028},"rot":{"x":0.0,"y":280.885,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1514.135,"y":266.712,"z":-612.209},"rot":{"x":0.0,"y":29.836,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1535.526,"y":267.403,"z":-718.433},"rot":{"x":0.0,"y":293.833,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1392.142,"y":267.322,"z":-585.141},"rot":{"x":0.0,"y":112.427,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1496.313,"y":267.764,"z":-590.81},"rot":{"x":0.0,"y":118.553,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":20007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1358.673,"y":267.859,"z":-579.347},"rot":{"x":0.0,"y":267.163,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":20003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1354.326,"y":270.432,"z":-564.652},"rot":{"x":0.0,"y":223.635,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1351.215,"y":270.019,"z":-546.236},"rot":{"x":0.0,"y":102.589,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1405.302,"y":266.731,"z":-526.94},"rot":{"x":0.0,"y":113.171,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1444.378,"y":266.487,"z":-517.587},"rot":{"x":0.0,"y":248.593,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":20017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1468.31,"y":270.813,"z":-547.519},"rot":{"x":0.0,"y":211.477,"z":0.0}}]},{"sceneId":3,"groupId":133002023,"blockId":0,"pos":{"x":1905.6559,"y":0.0,"z":-660.2501},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":23075,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1960.796,"y":223.151,"z":-622.894},"rot":{"x":8.479,"y":216.65,"z":2.046}},{"monsterId":0,"gadgetId":70520005,"configId":23053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1847.912,"y":248.717,"z":-657.327},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":23086,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1969.771,"y":223.359,"z":-621.803},"rot":{"x":0.0,"y":105.201,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23091,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1972.547,"y":266.255,"z":-557.667},"rot":{"x":0.0,"y":278.855,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2006.913,"y":232.988,"z":-645.373},"rot":{"x":0.0,"y":306.892,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2006.671,"y":243.395,"z":-566.652},"rot":{"x":0.0,"y":285.518,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2016.377,"y":239.458,"z":-611.394},"rot":{"x":0.0,"y":306.892,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1849.232,"y":248.116,"z":-673.795},"rot":{"x":0.0,"y":347.8,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1977.693,"y":226.924,"z":-674.548},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1977.361,"y":226.512,"z":-674.841},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1977.443,"y":226.226,"z":-674.044},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23079,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2044.997,"y":237.702,"z":-636.172},"rot":{"x":5.922,"y":187.197,"z":13.955}},{"monsterId":0,"gadgetId":70520001,"configId":23077,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2032.409,"y":237.726,"z":-635.396},"rot":{"x":341.885,"y":104.341,"z":352.005}},{"monsterId":0,"gadgetId":70520001,"configId":23080,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2043.397,"y":242.27,"z":-629.684},"rot":{"x":321.039,"y":231.174,"z":8.571}},{"monsterId":0,"gadgetId":70520001,"configId":23078,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2037.307,"y":240.385,"z":-626.181},"rot":{"x":341.885,"y":104.341,"z":352.005}},{"monsterId":0,"gadgetId":70520005,"configId":23048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2024.543,"y":226.788,"z":-706.788},"rot":{"x":0.0,"y":256.409,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":23090,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1897.381,"y":252.975,"z":-535.171},"rot":{"x":0.0,"y":45.906,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23071,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1800.837,"y":239.505,"z":-747.191},"rot":{"x":8.604,"y":182.927,"z":5.492}},{"monsterId":0,"gadgetId":70520005,"configId":23076,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1799.949,"y":243.196,"z":-716.408},"rot":{"x":8.479,"y":216.65,"z":2.046}},{"monsterId":0,"gadgetId":70520009,"configId":23010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1792.325,"y":245.569,"z":-676.699},"rot":{"x":0.0,"y":18.457,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23049,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1800.226,"y":247.505,"z":-614.552},"rot":{"x":345.558,"y":9.115,"z":0.633}},{"monsterId":0,"gadgetId":70540001,"configId":23019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1797.932,"y":247.105,"z":-602.718},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1797.599,"y":246.693,"z":-603.011},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1797.681,"y":246.407,"z":-602.214},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1812.758,"y":240.645,"z":-757.89},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23082,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1826.921,"y":234.075,"z":-759.459},"rot":{"x":355.033,"y":228.487,"z":28.02}},{"monsterId":0,"gadgetId":70540001,"configId":23022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1812.425,"y":240.233,"z":-758.183},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1812.507,"y":239.947,"z":-757.386},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":23085,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1820.909,"y":244.348,"z":-729.716},"rot":{"x":0.0,"y":326.756,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23084,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1842.311,"y":230.863,"z":-749.995},"rot":{"x":13.297,"y":148.852,"z":7.297}},{"monsterId":0,"gadgetId":70540021,"configId":23064,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1838.506,"y":249.925,"z":-733.472},"rot":{"x":1.414,"y":0.166,"z":13.409}},{"monsterId":0,"gadgetId":70520001,"configId":23081,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1838.372,"y":232.4,"z":-749.94},"rot":{"x":11.24,"y":77.021,"z":331.902}},{"monsterId":0,"gadgetId":70540021,"configId":23065,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1837.679,"y":250.205,"z":-731.08},"rot":{"x":1.414,"y":0.166,"z":13.409}},{"monsterId":0,"gadgetId":70540021,"configId":23063,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1836.565,"y":248.915,"z":-731.747},"rot":{"x":1.414,"y":0.166,"z":13.409}},{"monsterId":0,"gadgetId":70520004,"configId":23004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1840.277,"y":247.632,"z":-723.677},"rot":{"x":0.0,"y":347.8,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23083,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1849.345,"y":230.53,"z":-764.764},"rot":{"x":334.042,"y":202.546,"z":332.813}},{"monsterId":0,"gadgetId":70520004,"configId":23072,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1863.121,"y":222.893,"z":-735.421},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23061,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1881.042,"y":238.808,"z":-767.756},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1880.709,"y":238.396,"z":-768.049},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1880.791,"y":238.11,"z":-767.252},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23051,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1914.131,"y":210.737,"z":-717.456},"rot":{"x":2.162,"y":109.054,"z":4.837}},{"monsterId":0,"gadgetId":70520009,"configId":23047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1930.915,"y":204.25,"z":-758.608},"rot":{"x":358.934,"y":0.001,"z":359.96}},{"monsterId":0,"gadgetId":70520004,"configId":23006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1954.103,"y":207.481,"z":-762.785},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":23039,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1953.455,"y":211.656,"z":-743.74},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":23038,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1953.455,"y":211.656,"z":-743.932},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23070,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1966.936,"y":223.253,"z":-738.206},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":23042,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1976.88,"y":213.554,"z":-763.013},"rot":{"x":0.0,"y":0.0,"z":343.9}},{"monsterId":0,"gadgetId":70540004,"configId":23041,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1976.88,"y":213.554,"z":-763.205},"rot":{"x":0.0,"y":0.0,"z":343.9}},{"monsterId":0,"gadgetId":70540005,"configId":23087,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2001.258,"y":216.6,"z":-747.78},"rot":{"x":0.0,"y":217.048,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1915.761,"y":247.852,"z":-621.537},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1915.428,"y":247.44,"z":-621.83},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1915.51,"y":247.154,"z":-621.033},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1936.646,"y":215.771,"z":-619.745},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1936.313,"y":215.359,"z":-620.038},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1936.395,"y":215.073,"z":-619.241},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23036,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2023.533,"y":216.632,"z":-764.12},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23035,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2024.36,"y":216.352,"z":-766.512},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23034,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2022.419,"y":215.342,"z":-764.787},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":23028,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2019.93,"y":213.946,"z":-767.833},"rot":{"x":0.0,"y":26.836,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1851.924,"y":250.09,"z":-600.914},"rot":{"x":0.0,"y":193.167,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1912.777,"y":248.769,"z":-609.733},"rot":{"x":0.0,"y":277.87,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1875.336,"y":251.219,"z":-590.924},"rot":{"x":0.0,"y":172.509,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1914.939,"y":253.64,"z":-583.085},"rot":{"x":0.0,"y":42.968,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1917.776,"y":254.228,"z":-589.631},"rot":{"x":0.0,"y":181.809,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1912.209,"y":252.81,"z":-585.503},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1873.973,"y":254.085,"z":-563.761},"rot":{"x":0.0,"y":148.19,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1882.654,"y":253.611,"z":-559.749},"rot":{"x":0.0,"y":347.8,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":23088,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1909.386,"y":253.226,"z":-555.457},"rot":{"x":0.0,"y":358.758,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23073,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1883.311,"y":248.109,"z":-532.256},"rot":{"x":325.956,"y":178.421,"z":6.558}},{"monsterId":0,"gadgetId":70540005,"configId":23089,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1920.216,"y":254.217,"z":-541.551},"rot":{"x":0.0,"y":5.804,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1870.258,"y":247.791,"z":-516.866},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1869.925,"y":247.379,"z":-517.159},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1870.007,"y":247.093,"z":-516.362},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":23052,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1807.099,"y":243.36,"z":-549.278},"rot":{"x":356.479,"y":213.799,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":23069,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1809.613,"y":246.239,"z":-546.703},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":23068,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1810.44,"y":245.959,"z":-549.095},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":23067,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1808.499,"y":244.949,"z":-547.37},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23074,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1830.14,"y":248.079,"z":-547.838},"rot":{"x":0.0,"y":172.509,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2038.504,"y":210.0,"z":-732.799},"rot":{"x":0.0,"y":233.423,"z":0.0}}]},{"sceneId":3,"groupId":133002022,"blockId":0,"pos":{"x":1926.5625,"y":0.0,"z":-902.4192},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":22058,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1933.901,"y":224.505,"z":-956.94},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":22059,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1934.22,"y":224.184,"z":-954.779},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":22060,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1936.015,"y":224.067,"z":-954.564},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":22061,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1936.271,"y":224.477,"z":-957.07},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1961.159,"y":219.144,"z":-957.578},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1974.845,"y":220.465,"z":-952.877},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22055,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2006.094,"y":211.345,"z":-968.292},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1999.438,"y":212.409,"z":-955.163},"rot":{"x":0.0,"y":10.188,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22082,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1901.049,"y":244.739,"z":-957.403},"rot":{"x":0.0,"y":161.803,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22081,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1901.308,"y":244.74,"z":-959.875},"rot":{"x":0.0,"y":230.498,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22075,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1904.228,"y":244.333,"z":-958.784},"rot":{"x":0.0,"y":266.201,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":22064,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1898.163,"y":224.77,"z":-938.289},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":22063,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1901.151,"y":224.758,"z":-939.997},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":22065,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1899.956,"y":224.473,"z":-937.599},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1899.812,"y":244.373,"z":-944.95},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":22062,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1899.021,"y":225.218,"z":-940.333},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1901.95,"y":230.44,"z":-918.301},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22040,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1892.048,"y":226.923,"z":-898.312},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":22022,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1892.637,"y":248.641,"z":-863.995},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":22021,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1892.637,"y":248.641,"z":-864.187},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1898.434,"y":239.019,"z":-805.432},"rot":{"x":0.0,"y":260.358,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22077,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1866.098,"y":238.406,"z":-800.617},"rot":{"x":0.0,"y":124.188,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":22057,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1806.326,"y":233.98,"z":-846.744},"rot":{"x":61.369,"y":86.712,"z":31.438}},{"monsterId":0,"gadgetId":70540003,"configId":22056,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1807.256,"y":234.183,"z":-845.879},"rot":{"x":64.33,"y":213.799,"z":321.483}},{"monsterId":0,"gadgetId":70540003,"configId":22052,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1811.004,"y":237.725,"z":-841.776},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":22051,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1811.831,"y":237.445,"z":-844.168},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":22050,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1809.89,"y":236.435,"z":-842.443},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22030,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1847.512,"y":239.646,"z":-867.281},"rot":{"x":0.0,"y":132.442,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":22024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1867.363,"y":242.995,"z":-862.762},"rot":{"x":335.906,"y":13.871,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22031,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1848.263,"y":239.699,"z":-866.556},"rot":{"x":0.0,"y":91.853,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":22025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1867.405,"y":243.074,"z":-862.591},"rot":{"x":335.906,"y":13.871,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1908.229,"y":214.832,"z":-802.959},"rot":{"x":0.0,"y":279.863,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":22039,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1921.929,"y":206.493,"z":-768.264},"rot":{"x":356.479,"y":213.799,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":22038,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1922.484,"y":205.268,"z":-768.921},"rot":{"x":356.479,"y":213.799,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1980.661,"y":208.142,"z":-776.521},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22080,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1939.823,"y":244.837,"z":-1007.791},"rot":{"x":0.0,"y":212.221,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2021.793,"y":214.791,"z":-1007.113},"rot":{"x":0.0,"y":57.198,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1924.788,"y":241.257,"z":-986.09},"rot":{"x":0.0,"y":185.568,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1912.155,"y":242.505,"z":-974.952},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22054,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2027.494,"y":210.269,"z":-989.674},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22053,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2011.75,"y":213.159,"z":-984.6},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22073,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1861.922,"y":248.671,"z":-964.186},"rot":{"x":4.983,"y":274.597,"z":358.74}},{"monsterId":0,"gadgetId":70540005,"configId":22079,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1816.369,"y":242.205,"z":-984.837},"rot":{"x":0.0,"y":352.695,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1815.954,"y":237.13,"z":-955.524},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1909.948,"y":224.075,"z":-945.903},"rot":{"x":0.0,"y":78.623,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1981.406,"y":212.675,"z":-938.236},"rot":{"x":0.0,"y":236.344,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":22018,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1980.24,"y":218.577,"z":-933.257},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":22019,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1980.24,"y":218.577,"z":-933.065},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1916.813,"y":224.01,"z":-918.609},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":22035,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1964.834,"y":218.413,"z":-929.899},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22072,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1875.227,"y":232.666,"z":-907.877},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22071,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1947.381,"y":221.174,"z":-909.045},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1825.735,"y":233.623,"z":-872.709},"rot":{"x":0.0,"y":306.892,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1849.804,"y":237.81,"z":-886.19},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1849.471,"y":237.398,"z":-886.483},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1849.553,"y":237.112,"z":-885.686},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":22034,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1917.624,"y":226.426,"z":-877.486},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":22033,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1918.316,"y":226.54,"z":-875.505},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":22032,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1919.433,"y":226.583,"z":-877.104},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":22002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1992.621,"y":212.814,"z":-935.546},"rot":{"x":0.0,"y":103.4,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2015.253,"y":212.055,"z":-943.14},"rot":{"x":0.0,"y":261.15,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2015.594,"y":211.643,"z":-943.424},"rot":{"x":0.0,"y":261.15,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2014.794,"y":211.357,"z":-943.466},"rot":{"x":0.0,"y":261.15,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22070,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1972.924,"y":218.302,"z":-915.663},"rot":{"x":344.032,"y":242.343,"z":347.661}},{"monsterId":0,"gadgetId":70520005,"configId":22067,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2003.393,"y":207.486,"z":-893.302},"rot":{"x":0.0,"y":239.612,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22066,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2024.255,"y":204.922,"z":-891.401},"rot":{"x":0.0,"y":239.612,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22074,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1954.34,"y":214.949,"z":-871.52},"rot":{"x":0.538,"y":207.254,"z":16.743}},{"monsterId":0,"gadgetId":70520005,"configId":22069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1956.778,"y":219.358,"z":-860.757},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22068,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1990.736,"y":207.043,"z":-855.793},"rot":{"x":14.878,"y":6.387,"z":355.955}},{"monsterId":0,"gadgetId":70520005,"configId":22037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1948.119,"y":211.422,"z":-839.159},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":22044,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2024.45,"y":206.924,"z":-848.817},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":22043,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2025.277,"y":206.644,"z":-851.21},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":22042,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2023.336,"y":205.634,"z":-849.484},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22076,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2029.824,"y":209.524,"z":-826.7},"rot":{"x":0.0,"y":58.478,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22078,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2041.82,"y":204.569,"z":-798.015},"rot":{"x":0.0,"y":91.202,"z":0.0}}]},{"sceneId":3,"groupId":133002017,"blockId":0,"pos":{"x":1404.388,"y":0.0,"z":-349.48795},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":17010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1343.271,"y":289.28,"z":-454.186},"rot":{"x":342.633,"y":62.97,"z":328.29}},{"monsterId":0,"gadgetId":70520024,"configId":17014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1359.958,"y":271.68,"z":-495.599},"rot":{"x":0.0,"y":217.237,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":17008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1442.286,"y":269.18,"z":-501.667},"rot":{"x":0.0,"y":35.51,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":17011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1340.807,"y":289.857,"z":-451.629},"rot":{"x":341.143,"y":347.878,"z":6.548}},{"monsterId":0,"gadgetId":70520024,"configId":17013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1329.891,"y":290.186,"z":-423.83},"rot":{"x":0.0,"y":60.639,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":17007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1410.203,"y":285.854,"z":-425.108},"rot":{"x":0.0,"y":233.117,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1502.975,"y":235.122,"z":-400.505},"rot":{"x":0.0,"y":252.024,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":17009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1367.903,"y":276.648,"z":-386.378},"rot":{"x":0.0,"y":299.647,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1415.461,"y":236.548,"z":-296.484},"rot":{"x":0.0,"y":98.458,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1478.099,"y":242.443,"z":-308.872},"rot":{"x":0.0,"y":325.304,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1519.473,"y":235.862,"z":-309.263},"rot":{"x":0.0,"y":304.739,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1484.665,"y":241.299,"z":-283.821},"rot":{"x":0.0,"y":331.687,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1520.458,"y":242.78,"z":-265.309},"rot":{"x":0.0,"y":312.226,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":17020,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1364.935,"y":156.88,"z":-307.645},"rot":{"x":0.0,"y":79.664,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":17018,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1367.442,"y":156.88,"z":-302.67},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":17016,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1366.259,"y":156.88,"z":-295.939},"rot":{"x":0.0,"y":207.103,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":17012,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1387.174,"y":240.056,"z":-326.851},"rot":{"x":0.0,"y":207.647,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":17022,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1385.334,"y":157.218,"z":-295.285},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":17030,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1371.928,"y":156.88,"z":-260.216},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":17028,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1370.604,"y":156.88,"z":-268.395},"rot":{"x":0.0,"y":86.896,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":17021,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1363.021,"y":158.846,"z":-279.595},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133002016,"blockId":0,"pos":{"x":1633.6508,"y":0.0,"z":-92.43277},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":16096,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1541.934,"y":260.974,"z":-25.537},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":16088,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1587.044,"y":260.184,"z":-29.534},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16094,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1579.22,"y":258.74,"z":-10.004},"rot":{"x":359.372,"y":0.032,"z":355.24}},{"monsterId":0,"gadgetId":70520004,"configId":16044,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1578.209,"y":261.229,"z":-49.719},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":16095,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1549.707,"y":263.462,"z":-54.303},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":16045,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1557.944,"y":258.348,"z":-69.158},"rot":{"x":0.0,"y":41.733,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":16097,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1547.937,"y":271.5,"z":-80.127},"rot":{"x":345.994,"y":359.778,"z":1.806}},{"monsterId":0,"gadgetId":70520004,"configId":16047,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1579.559,"y":225.25,"z":-221.617},"rot":{"x":0.0,"y":262.567,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1583.193,"y":234.697,"z":-192.767},"rot":{"x":0.0,"y":78.474,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16025,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1571.945,"y":236.262,"z":-180.893},"rot":{"x":349.391,"y":359.751,"z":2.684}},{"monsterId":0,"gadgetId":70540021,"configId":16024,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1572.795,"y":235.585,"z":-183.196},"rot":{"x":354.561,"y":313.548,"z":9.506}},{"monsterId":0,"gadgetId":70540021,"configId":16023,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1570.895,"y":234.821,"z":-181.306},"rot":{"x":3.549,"y":265.322,"z":10.354}},{"monsterId":0,"gadgetId":70520005,"configId":16039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1590.696,"y":236.622,"z":-157.144},"rot":{"x":0.0,"y":7.132,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16064,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1629.589,"y":241.968,"z":-168.581},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16063,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1629.256,"y":241.556,"z":-168.874},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16062,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1629.338,"y":241.27,"z":-168.077},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":16048,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1542.448,"y":234.171,"z":-139.963},"rot":{"x":0.0,"y":153.407,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":16008,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1557.985,"y":233.832,"z":-134.164},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":16006,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1554.009,"y":233.716,"z":-138.105},"rot":{"x":0.0,"y":243.637,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":16002,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1555.268,"y":233.593,"z":-142.253},"rot":{"x":0.0,"y":114.374,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":16004,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1565.487,"y":233.683,"z":-139.773},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16071,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1617.608,"y":245.149,"z":-133.142},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":16046,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1651.853,"y":244.139,"z":-151.554},"rot":{"x":0.0,"y":97.3,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16072,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1616.781,"y":245.429,"z":-130.75},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16070,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1615.667,"y":244.139,"z":-131.417},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1655.479,"y":247.181,"z":-127.123},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":16032,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1564.663,"y":246.188,"z":-96.927},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1607.516,"y":247.225,"z":-99.175},"rot":{"x":0.0,"y":311.779,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1595.004,"y":242.159,"z":-110.423},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1594.922,"y":242.445,"z":-111.22},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1595.255,"y":242.857,"z":-110.927},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16027,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1607.271,"y":245.935,"z":-100.45},"rot":{"x":0.0,"y":311.779,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16028,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1609.851,"y":246.945,"z":-100.152},"rot":{"x":0.0,"y":311.779,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1568.556,"y":250.367,"z":-72.794},"rot":{"x":0.0,"y":59.079,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1568.134,"y":249.955,"z":-72.659},"rot":{"x":0.0,"y":59.079,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1568.859,"y":249.669,"z":-72.32},"rot":{"x":0.0,"y":59.079,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1634.842,"y":255.747,"z":-85.574},"rot":{"x":0.0,"y":161.456,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16086,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1591.629,"y":262.153,"z":-52.183},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16087,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1591.962,"y":262.565,"z":-51.89},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16085,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1591.711,"y":261.867,"z":-51.386},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1627.767,"y":267.878,"z":-51.464},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1627.434,"y":267.466,"z":-51.757},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1627.516,"y":267.18,"z":-50.96},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1617.485,"y":267.802,"z":-33.82},"rot":{"x":4.841,"y":222.928,"z":4.826}},{"monsterId":0,"gadgetId":70520009,"configId":16090,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1645.242,"y":267.276,"z":-36.902},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":16089,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1606.408,"y":265.431,"z":-25.916},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":16031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1590.712,"y":248.308,"z":-25.473},"rot":{"x":9.342,"y":0.703,"z":8.59}},{"monsterId":0,"gadgetId":70540001,"configId":16083,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1612.12,"y":266.924,"z":-22.205},"rot":{"x":355.496,"y":0.067,"z":358.303}},{"monsterId":0,"gadgetId":70540001,"configId":16082,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1611.774,"y":266.5,"z":-22.465},"rot":{"x":355.496,"y":0.067,"z":358.303}},{"monsterId":0,"gadgetId":70540001,"configId":16081,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1611.849,"y":266.275,"z":-21.648},"rot":{"x":355.496,"y":0.067,"z":358.303}},{"monsterId":0,"gadgetId":70520001,"configId":16092,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1642.523,"y":265.273,"z":-23.726},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":16073,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1641.74,"y":265.706,"z":-18.047},"rot":{"x":350.287,"y":48.609,"z":8.454}},{"monsterId":0,"gadgetId":70520001,"configId":16030,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1644.065,"y":265.059,"z":-21.494},"rot":{"x":350.822,"y":72.024,"z":0.001}},{"monsterId":0,"gadgetId":70520005,"configId":16078,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1653.95,"y":270.494,"z":-4.651},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":16033,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1670.607,"y":254.052,"z":-92.964},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":16034,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1678.856,"y":264.4,"z":-68.13},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16079,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1670.622,"y":270.789,"z":-19.079},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16075,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1684.14,"y":279.218,"z":-4.846},"rot":{"x":13.92,"y":266.679,"z":13.684}},{"monsterId":0,"gadgetId":70540021,"configId":16076,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1685.86,"y":280.166,"z":-6.822},"rot":{"x":359.114,"y":313.848,"z":19.406}},{"monsterId":0,"gadgetId":70540021,"configId":16077,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1684.924,"y":280.846,"z":-4.554},"rot":{"x":345.539,"y":358.33,"z":13.111}},{"monsterId":0,"gadgetId":70520005,"configId":16093,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1704.973,"y":269.715,"z":-53.284},"rot":{"x":346.484,"y":358.952,"z":8.829}},{"monsterId":0,"gadgetId":70520009,"configId":16091,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1716.863,"y":280.868,"z":-17.883},"rot":{"x":345.529,"y":358.422,"z":12.383}},{"monsterId":0,"gadgetId":70520004,"configId":16036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1754.117,"y":273.491,"z":-64.973},"rot":{"x":0.0,"y":100.568,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":16035,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1752.361,"y":272.243,"z":-67.304},"rot":{"x":0.0,"y":293.049,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":16052,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1773.285,"y":200.0,"z":-41.345},"rot":{"x":0.0,"y":282.094,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1703.524,"y":201.788,"z":-237.309},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":16050,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1779.864,"y":200.0,"z":-53.93},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1690.245,"y":206.082,"z":-226.905},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1691.563,"y":205.936,"z":-225.838},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1689.492,"y":206.371,"z":-225.441},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1708.889,"y":201.051,"z":-219.057},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16068,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1693.752,"y":258.73,"z":-100.575},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16067,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1694.579,"y":258.45,"z":-102.967},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":16066,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1692.638,"y":257.44,"z":-101.242},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":16042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1711.0,"y":254.535,"z":-117.034},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":16043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1713.092,"y":259.938,"z":-96.18},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1743.712,"y":268.597,"z":-82.349},"rot":{"x":346.189,"y":359.477,"z":5.427}},{"monsterId":0,"gadgetId":70540001,"configId":16059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1743.379,"y":268.185,"z":-82.642},"rot":{"x":346.189,"y":359.477,"z":5.427}},{"monsterId":0,"gadgetId":70540001,"configId":16058,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1743.461,"y":267.899,"z":-81.845},"rot":{"x":346.189,"y":359.477,"z":5.427}}]},{"sceneId":3,"groupId":133002019,"blockId":0,"pos":{"x":1491.2954,"y":0.0,"z":-131.80936},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":19060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1416.257,"y":208.264,"z":-1.716},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1419.347,"y":205.807,"z":-24.921},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1438.642,"y":205.436,"z":-16.345},"rot":{"x":344.279,"y":0.428,"z":1.607}},{"monsterId":0,"gadgetId":70520004,"configId":19004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1479.139,"y":209.972,"z":-19.565},"rot":{"x":14.227,"y":2.182,"z":17.355}},{"monsterId":0,"gadgetId":70540021,"configId":19046,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1512.814,"y":269.796,"z":-23.831},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19044,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1511.7,"y":268.506,"z":-24.498},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19045,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1513.641,"y":269.516,"z":-26.223},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1455.154,"y":211.046,"z":-50.745},"rot":{"x":346.898,"y":358.055,"z":16.814}},{"monsterId":0,"gadgetId":70520004,"configId":19003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1460.429,"y":205.78,"z":-33.23},"rot":{"x":24.096,"y":5.769,"z":26.567}},{"monsterId":0,"gadgetId":70520009,"configId":19006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1473.145,"y":243.55,"z":-50.232},"rot":{"x":2.395,"y":0.139,"z":6.631}},{"monsterId":0,"gadgetId":70520009,"configId":19008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1507.007,"y":267.466,"z":-37.592},"rot":{"x":2.624,"y":0.216,"z":9.404}},{"monsterId":0,"gadgetId":70520005,"configId":19013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1442.146,"y":205.719,"z":-57.68},"rot":{"x":342.034,"y":355.464,"z":28.132}},{"monsterId":0,"gadgetId":70520009,"configId":19015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1506.423,"y":268.767,"z":-69.798},"rot":{"x":356.044,"y":359.3,"z":20.06}},{"monsterId":0,"gadgetId":70520005,"configId":19011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1528.523,"y":272.155,"z":-61.148},"rot":{"x":358.806,"y":359.965,"z":3.374}},{"monsterId":0,"gadgetId":70520005,"configId":19009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1497.78,"y":265.589,"z":-79.624},"rot":{"x":358.052,"y":359.684,"z":18.43}},{"monsterId":0,"gadgetId":70520005,"configId":19010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1516.802,"y":271.232,"z":-78.254},"rot":{"x":357.931,"y":359.775,"z":12.402}},{"monsterId":0,"gadgetId":70520009,"configId":19012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1448.381,"y":202.2,"z":-101.113},"rot":{"x":347.534,"y":358.038,"z":17.82}},{"monsterId":0,"gadgetId":70520005,"configId":19038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1486.867,"y":261.871,"z":-108.915},"rot":{"x":354.483,"y":88.052,"z":355.131}},{"monsterId":0,"gadgetId":70520005,"configId":19036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1487.138,"y":261.682,"z":-111.335},"rot":{"x":4.393,"y":279.978,"z":5.903}},{"monsterId":0,"gadgetId":70520005,"configId":19037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1488.794,"y":261.959,"z":-110.006},"rot":{"x":353.01,"y":25.43,"z":2.76}},{"monsterId":0,"gadgetId":70540001,"configId":19050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1513.01,"y":271.048,"z":-92.884},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1512.677,"y":270.636,"z":-93.177},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1512.759,"y":270.35,"z":-92.38},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1530.743,"y":267.401,"z":-98.846},"rot":{"x":345.466,"y":359.653,"z":2.718}},{"monsterId":0,"gadgetId":70520009,"configId":19007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1473.71,"y":239.622,"z":-113.638},"rot":{"x":346.899,"y":358.636,"z":11.84}},{"monsterId":0,"gadgetId":70540021,"configId":19042,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1504.639,"y":263.113,"z":-131.159},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19040,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1503.525,"y":261.823,"z":-131.826},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1496.132,"y":259.568,"z":-129.433},"rot":{"x":349.358,"y":359.253,"z":8.008}},{"monsterId":0,"gadgetId":70520005,"configId":19018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1517.217,"y":260.938,"z":-126.563},"rot":{"x":357.651,"y":86.462,"z":347.251}},{"monsterId":0,"gadgetId":70520005,"configId":19017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1533.273,"y":262.993,"z":-119.48},"rot":{"x":353.632,"y":0.149,"z":357.318}},{"monsterId":0,"gadgetId":70540021,"configId":19041,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1505.466,"y":262.833,"z":-133.551},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1519.387,"y":256.244,"z":-145.562},"rot":{"x":348.908,"y":0.139,"z":358.569}},{"monsterId":0,"gadgetId":70520005,"configId":19022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1473.923,"y":251.02,"z":-156.42},"rot":{"x":350.252,"y":359.381,"z":7.244}},{"monsterId":0,"gadgetId":70540001,"configId":19053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1480.68,"y":251.825,"z":-176.163},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19052,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1480.762,"y":251.539,"z":-175.366},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1481.013,"y":252.237,"z":-175.87},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1471.836,"y":247.51,"z":-181.594},"rot":{"x":354.244,"y":358.957,"z":20.526}},{"monsterId":0,"gadgetId":70520005,"configId":19020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1519.83,"y":251.765,"z":-179.636},"rot":{"x":352.003,"y":359.647,"z":5.045}},{"monsterId":0,"gadgetId":70520005,"configId":19029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1459.25,"y":234.213,"z":-235.854},"rot":{"x":6.858,"y":0.567,"z":9.437}},{"monsterId":0,"gadgetId":70520005,"configId":19001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1506.43,"y":246.66,"z":-250.19},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1520.796,"y":247.26,"z":-234.449},"rot":{"x":354.675,"y":359.899,"z":2.176}},{"monsterId":0,"gadgetId":70520009,"configId":19025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1488.142,"y":246.558,"z":-231.07},"rot":{"x":352.088,"y":359.619,"z":5.504}},{"monsterId":0,"gadgetId":70540001,"configId":19058,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1509.297,"y":249.353,"z":-224.111},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1511.544,"y":248.96,"z":-215.816},"rot":{"x":354.617,"y":359.946,"z":1.143}},{"monsterId":0,"gadgetId":70540001,"configId":19056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1509.046,"y":248.655,"z":-223.607},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1518.585,"y":248.722,"z":-218.106},"rot":{"x":351.028,"y":69.221,"z":349.88}},{"monsterId":0,"gadgetId":70540001,"configId":19057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1508.964,"y":248.941,"z":-224.404},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19035,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1484.541,"y":247.34,"z":-205.817},"rot":{"x":353.964,"y":67.698,"z":342.584}},{"monsterId":0,"gadgetId":70520009,"configId":19023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1488.297,"y":251.088,"z":-192.334},"rot":{"x":350.635,"y":358.785,"z":14.755}},{"monsterId":0,"gadgetId":70520001,"configId":19033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1506.75,"y":249.869,"z":-203.238},"rot":{"x":356.492,"y":68.239,"z":6.066}},{"monsterId":0,"gadgetId":70520001,"configId":19030,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1499.535,"y":245.689,"z":-201.173},"rot":{"x":352.645,"y":357.223,"z":11.439}},{"monsterId":0,"gadgetId":70520001,"configId":19031,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1494.842,"y":244.994,"z":-199.809},"rot":{"x":349.548,"y":358.351,"z":17.884}},{"monsterId":0,"gadgetId":70520001,"configId":19032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1498.227,"y":245.429,"z":-201.331},"rot":{"x":347.872,"y":65.624,"z":356.91}},{"monsterId":0,"gadgetId":70520005,"configId":19027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1516.376,"y":249.697,"z":-198.884},"rot":{"x":6.439,"y":359.529,"z":351.632}},{"monsterId":0,"gadgetId":70520008,"configId":19005,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1379.928,"y":161.246,"z":-249.004},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133002018,"blockId":0,"pos":{"x":1681.9811,"y":0.0,"z":-394.29733},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":18003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1789.611,"y":215.253,"z":-480.743},"rot":{"x":0.0,"y":260.358,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18071,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1542.532,"y":202.965,"z":-467.61},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18061,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1565.693,"y":230.566,"z":-357.327},"rot":{"x":0.0,"y":167.458,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1554.637,"y":233.512,"z":-336.448},"rot":{"x":0.0,"y":329.276,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1568.359,"y":231.979,"z":-486.463},"rot":{"x":0.0,"y":303.655,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18060,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1587.978,"y":202.712,"z":-444.915},"rot":{"x":341.225,"y":160.489,"z":2.158}},{"monsterId":0,"gadgetId":70520005,"configId":18002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1572.551,"y":241.231,"z":-294.264},"rot":{"x":0.0,"y":345.75,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1605.727,"y":203.089,"z":-428.145},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1605.394,"y":202.677,"z":-428.438},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":18065,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1595.34,"y":201.572,"z":-431.995},"rot":{"x":325.956,"y":178.421,"z":6.558}},{"monsterId":0,"gadgetId":70540001,"configId":18020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1605.476,"y":202.391,"z":-427.641},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1640.173,"y":201.896,"z":-390.21},"rot":{"x":358.214,"y":359.916,"z":2.685}},{"monsterId":0,"gadgetId":70520005,"configId":18052,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1644.718,"y":202.657,"z":-370.385},"rot":{"x":0.0,"y":343.381,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":18057,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1777.095,"y":210.512,"z":-299.215},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18067,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1785.707,"y":208.43,"z":-295.948},"rot":{"x":0.112,"y":0.027,"z":357.15}},{"monsterId":0,"gadgetId":70540021,"configId":18056,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1777.922,"y":210.232,"z":-301.607},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":18055,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1775.981,"y":209.222,"z":-299.882},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18068,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1753.577,"y":209.551,"z":-292.895},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1752.544,"y":206.489,"z":-299.849},"rot":{"x":350.247,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1731.911,"y":211.993,"z":-346.903},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":18011,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1736.656,"y":214.471,"z":-295.663},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":18010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1736.656,"y":214.471,"z":-295.855},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18039,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1736.946,"y":210.131,"z":-285.759},"rot":{"x":3.534,"y":359.613,"z":353.746}},{"monsterId":0,"gadgetId":70540004,"configId":18028,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1742.517,"y":219.181,"z":-279.06},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":18027,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1742.517,"y":219.181,"z":-279.252},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1727.513,"y":207.892,"z":-466.34},"rot":{"x":0.0,"y":242.72,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":18031,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1709.133,"y":205.55,"z":-464.589},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1727.841,"y":205.293,"z":-333.136},"rot":{"x":356.455,"y":359.667,"z":5.366}},{"monsterId":0,"gadgetId":70520006,"configId":18050,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1699.308,"y":207.013,"z":-383.007},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":18047,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1702.733,"y":207.135,"z":-381.975},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":18024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1688.777,"y":218.973,"z":-384.355},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":18046,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1700.369,"y":206.996,"z":-382.705},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":18045,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1701.25,"y":207.177,"z":-383.111},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":18044,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1702.208,"y":207.352,"z":-383.466},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":18025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1688.777,"y":218.973,"z":-384.163},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":18048,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1701.487,"y":207.076,"z":-381.781},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":18049,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1700.74,"y":206.974,"z":-381.422},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18066,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1746.648,"y":214.739,"z":-495.192},"rot":{"x":356.131,"y":238.152,"z":357.134}},{"monsterId":0,"gadgetId":70520006,"configId":18043,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1720.419,"y":207.87,"z":-509.951},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1617.262,"y":228.983,"z":-489.998},"rot":{"x":0.0,"y":260.358,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18062,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1639.59,"y":201.643,"z":-437.74},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18059,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1632.603,"y":203.572,"z":-449.703},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1676.61,"y":203.329,"z":-347.119},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1676.277,"y":202.917,"z":-347.412},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1676.359,"y":202.631,"z":-346.615},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18058,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1707.687,"y":206.473,"z":-492.016},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":18032,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1707.69,"y":205.294,"z":-465.036},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":18030,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1707.47,"y":205.42,"z":-462.932},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":18029,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1705.687,"y":205.048,"z":-463.379},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":18038,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1685.375,"y":206.98,"z":-395.959},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":18037,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1684.112,"y":207.039,"z":-397.016},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":18036,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1682.993,"y":207.107,"z":-397.94},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":18035,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1681.829,"y":207.153,"z":-396.839},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":18034,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1683.01,"y":207.096,"z":-395.634},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":18033,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1683.983,"y":207.066,"z":-394.62},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":18014,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1667.194,"y":211.755,"z":-476.146},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":18013,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1667.194,"y":211.755,"z":-476.338},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18063,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1650.823,"y":205.258,"z":-460.625},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1659.848,"y":204.947,"z":-419.354},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1659.515,"y":204.535,"z":-419.647},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1659.597,"y":204.249,"z":-418.85},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18070,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1667.924,"y":207.856,"z":-398.057},"rot":{"x":0.0,"y":217.019,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18064,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1638.768,"y":206.986,"z":-460.095},"rot":{"x":0.0,"y":173.442,"z":0.0}}]},{"sceneId":3,"groupId":133001020,"blockId":0,"pos":{"x":1930.8239,"y":0.0,"z":-1423.2825},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":20010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1839.794,"y":195.829,"z":-1283.885},"rot":{"x":12.073,"y":184.246,"z":48.987}},{"monsterId":0,"gadgetId":70520009,"configId":20019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1919.749,"y":196.575,"z":-1307.893},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1925.752,"y":197.386,"z":-1281.685},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":20001,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1890.832,"y":194.503,"z":-1329.161},"rot":{"x":0.0,"y":337.7,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":20023,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1868.074,"y":195.751,"z":-1300.151},"rot":{"x":0.0,"y":214.581,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":20005,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1853.947,"y":194.828,"z":-1324.543},"rot":{"x":0.0,"y":199.35,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":20022,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1865.609,"y":195.498,"z":-1302.12},"rot":{"x":0.0,"y":325.019,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":20008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2011.424,"y":206.649,"z":-1389.372},"rot":{"x":0.0,"y":148.765,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":20012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2013.872,"y":207.253,"z":-1385.437},"rot":{"x":0.0,"y":3.62,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":20007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2021.814,"y":209.706,"z":-1384.983},"rot":{"x":0.0,"y":148.765,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":20006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2013.088,"y":207.718,"z":-1400.027},"rot":{"x":0.0,"y":338.081,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":20024,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1852.419,"y":194.656,"z":-1398.473},"rot":{"x":0.0,"y":76.13,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1896.431,"y":197.168,"z":-1444.367},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":20034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2024.488,"y":216.574,"z":-1434.402},"rot":{"x":0.0,"y":213.379,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":20011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1819.723,"y":201.209,"z":-1299.328},"rot":{"x":12.883,"y":148.371,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":20013,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1839.304,"y":195.199,"z":-1459.781},"rot":{"x":0.0,"y":346.164,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1937.244,"y":202.649,"z":-1467.064},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1936.993,"y":201.951,"z":-1466.56},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1936.911,"y":202.237,"z":-1467.357},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":20017,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1944.242,"y":203.107,"z":-1464.69},"rot":{"x":297.518,"y":173.422,"z":334.232}},{"monsterId":0,"gadgetId":70520009,"configId":20003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1954.803,"y":214.332,"z":-1469.316},"rot":{"x":0.0,"y":252.38,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1934.217,"y":202.527,"z":-1491.859},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1933.966,"y":201.829,"z":-1491.355},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":20025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1942.479,"y":202.76,"z":-1480.403},"rot":{"x":0.0,"y":3.62,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1905.025,"y":197.944,"z":-1497.649},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":20036,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1924.922,"y":199.678,"z":-1505.636},"rot":{"x":14.688,"y":293.667,"z":3.526}},{"monsterId":0,"gadgetId":70520009,"configId":20016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1918.95,"y":198.426,"z":-1508.987},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1933.885,"y":202.115,"z":-1492.152},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1921.883,"y":206.479,"z":-1529.967},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1939.675,"y":205.565,"z":-1521.68},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2006.188,"y":216.425,"z":-1466.498},"rot":{"x":0.0,"y":23.502,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2013.302,"y":222.452,"z":-1495.256},"rot":{"x":0.0,"y":80.56,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2009.677,"y":217.767,"z":-1474.565},"rot":{"x":341.723,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":20037,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2031.209,"y":224.87,"z":-1507.028},"rot":{"x":0.0,"y":4.287,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":20009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1796.948,"y":202.227,"z":-1291.247},"rot":{"x":0.0,"y":338.081,"z":0.0}}]},{"sceneId":3,"groupId":133001023,"blockId":0,"pos":{"x":1875.7521,"y":0.0,"z":-1147.7711},"spawns":[{"monsterId":0,"gadgetId":70520008,"configId":23003,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1839.7,"y":196.547,"z":-1181.222},"rot":{"x":0.0,"y":325.458,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1992.68,"y":195.647,"z":-1196.336},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1992.347,"y":195.235,"z":-1196.628},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1992.429,"y":194.949,"z":-1195.831},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1934.484,"y":195.356,"z":-1251.43},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":23012,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1911.32,"y":195.382,"z":-1229.609},"rot":{"x":0.0,"y":184.696,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":23025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1890.185,"y":217.741,"z":-1273.735},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":23024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1890.185,"y":217.741,"z":-1273.927},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":23014,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1906.709,"y":194.93,"z":-1193.905},"rot":{"x":0.0,"y":184.696,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":23018,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1877.266,"y":196.233,"z":-1223.285},"rot":{"x":0.0,"y":290.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":23017,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1877.89,"y":196.038,"z":-1224.082},"rot":{"x":0.0,"y":187.364,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":23013,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1873.195,"y":196.306,"z":-1177.467},"rot":{"x":0.0,"y":184.696,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1992.678,"y":204.56,"z":-1125.656},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1912.589,"y":197.547,"z":-1168.016},"rot":{"x":0.0,"y":178.358,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23028,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1908.255,"y":229.604,"z":-1092.25},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1906.368,"y":202.198,"z":-1132.902},"rot":{"x":0.0,"y":3.62,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1890.094,"y":208.531,"z":-1127.437},"rot":{"x":0.0,"y":272.488,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23030,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1902.011,"y":228.344,"z":-1084.495},"rot":{"x":0.0,"y":213.379,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23027,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1906.314,"y":228.594,"z":-1090.525},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1907.428,"y":229.884,"z":-1089.858},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23031,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1971.886,"y":241.263,"z":-1039.523},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23044,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1914.883,"y":244.453,"z":-1028.203},"rot":{"x":0.0,"y":351.451,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1871.309,"y":198.932,"z":-1158.394},"rot":{"x":0.0,"y":148.765,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1876.888,"y":201.405,"z":-1146.476},"rot":{"x":9.856,"y":182.349,"z":40.244}},{"monsterId":0,"gadgetId":70520004,"configId":23008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1852.292,"y":206.718,"z":-1131.575},"rot":{"x":0.0,"y":148.765,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23038,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1812.98,"y":231.57,"z":-1119.398},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23037,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1811.036,"y":240.921,"z":-1053.229},"rot":{"x":337.703,"y":268.356,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23035,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1823.161,"y":235.764,"z":-1069.137},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1812.129,"y":254.709,"z":-1037.901},"rot":{"x":0.0,"y":156.012,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":23043,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1803.321,"y":239.663,"z":-1067.452},"rot":{"x":0.0,"y":202.771,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1798.886,"y":240.986,"z":-1065.146},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1801.448,"y":211.842,"z":-1213.83},"rot":{"x":0.0,"y":3.62,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1816.179,"y":207.236,"z":-1199.086},"rot":{"x":13.78,"y":4.797,"z":273.757}},{"monsterId":0,"gadgetId":70520004,"configId":23015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1812.311,"y":209.289,"z":-1210.005},"rot":{"x":0.0,"y":3.62,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1820.377,"y":207.946,"z":-1171.033},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1833.078,"y":232.104,"z":-1141.426},"rot":{"x":337.703,"y":268.356,"z":341.633}},{"monsterId":0,"gadgetId":70520001,"configId":23034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1834.333,"y":225.69,"z":-1133.139},"rot":{"x":316.401,"y":268.528,"z":4.97}},{"monsterId":0,"gadgetId":70520001,"configId":23010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1843.336,"y":207.744,"z":-1138.031},"rot":{"x":28.097,"y":101.633,"z":354.285}},{"monsterId":0,"gadgetId":70520004,"configId":23007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1847.246,"y":205.637,"z":-1140.988},"rot":{"x":0.0,"y":148.765,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":23040,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1823.283,"y":234.03,"z":-1133.571},"rot":{"x":352.069,"y":274.33,"z":309.46}},{"monsterId":0,"gadgetId":70520001,"configId":23039,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1821.347,"y":234.232,"z":-1132.479},"rot":{"x":353.794,"y":270.068,"z":309.131}}]},{"sceneId":3,"groupId":133001022,"blockId":0,"pos":{"x":1212.8965,"y":0.0,"z":-1860.4888},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":22015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1271.185,"y":329.099,"z":-1926.099},"rot":{"x":0.0,"y":183.412,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1265.639,"y":311.045,"z":-1803.125},"rot":{"x":0.0,"y":55.681,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1191.297,"y":306.564,"z":-1818.822},"rot":{"x":0.0,"y":31.471,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1212.022,"y":313.634,"z":-1816.376},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":22006,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1237.345,"y":318.804,"z":-1861.203},"rot":{"x":0.0,"y":342.949,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1234.058,"y":311.625,"z":-1799.861},"rot":{"x":0.0,"y":129.662,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1216.088,"y":320.492,"z":-1890.183},"rot":{"x":0.0,"y":152.52,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1246.43,"y":327.093,"z":-1954.037},"rot":{"x":0.0,"y":116.295,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1168.865,"y":273.316,"z":-1892.117},"rot":{"x":0.0,"y":261.272,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1171.839,"y":272.792,"z":-1853.982},"rot":{"x":0.0,"y":199.131,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1179.168,"y":273.039,"z":-1855.825},"rot":{"x":0.0,"y":160.68,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1193.719,"y":313.966,"z":-1852.595},"rot":{"x":0.0,"y":330.123,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1216.404,"y":318.987,"z":-1869.631},"rot":{"x":0.0,"y":232.746,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1185.911,"y":306.063,"z":-1795.302},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1203.477,"y":273.599,"z":-1918.174},"rot":{"x":0.0,"y":215.384,"z":0.0}}]},{"sceneId":3,"groupId":133106489,"blockId":0,"pos":{"x":-659.16223,"y":0.0,"z":1906.4403},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":489047,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-753.942,"y":167.334,"z":1971.8},"rot":{"x":4.837,"y":257.268,"z":350.763}},{"monsterId":0,"gadgetId":70520002,"configId":489046,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-754.882,"y":166.557,"z":1976.192},"rot":{"x":0.437,"y":254.394,"z":11.237}},{"monsterId":0,"gadgetId":70520005,"configId":489048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-746.751,"y":178.447,"z":1959.758},"rot":{"x":355.597,"y":0.425,"z":348.99}},{"monsterId":0,"gadgetId":70520002,"configId":489045,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-746.559,"y":166.456,"z":1975.721},"rot":{"x":335.709,"y":2.408,"z":348.844}},{"monsterId":0,"gadgetId":70520002,"configId":489044,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-746.994,"y":166.931,"z":1971.732},"rot":{"x":6.616,"y":269.888,"z":354.447}},{"monsterId":0,"gadgetId":70520002,"configId":489043,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-751.134,"y":167.89,"z":1968.871},"rot":{"x":3.863,"y":359.728,"z":351.948}},{"monsterId":0,"gadgetId":70520005,"configId":489075,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-722.144,"y":125.735,"z":1984.586},"rot":{"x":352.692,"y":126.787,"z":358.364}},{"monsterId":0,"gadgetId":70540029,"configId":489081,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-725.359,"y":131.759,"z":1995.455},"rot":{"x":2.71,"y":238.649,"z":346.907}},{"monsterId":0,"gadgetId":70520005,"configId":489076,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-731.479,"y":124.791,"z":1996.863},"rot":{"x":358.115,"y":331.161,"z":352.903}},{"monsterId":0,"gadgetId":70520005,"configId":489083,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-730.463,"y":195.319,"z":2026.984},"rot":{"x":3.896,"y":94.877,"z":0.341}},{"monsterId":0,"gadgetId":70540001,"configId":489080,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-714.02,"y":123.917,"z":2009.414},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":489079,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-714.353,"y":123.505,"z":2009.121},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":489078,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-714.271,"y":123.219,"z":2009.918},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":489055,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-673.226,"y":271.476,"z":2060.12},"rot":{"x":0.0,"y":266.852,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":489052,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-677.91,"y":256.771,"z":2058.359},"rot":{"x":337.588,"y":295.727,"z":0.004}},{"monsterId":0,"gadgetId":70540026,"configId":489051,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-681.486,"y":253.534,"z":2059.268},"rot":{"x":23.079,"y":264.348,"z":354.428}},{"monsterId":0,"gadgetId":70540026,"configId":489054,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-675.56,"y":264.344,"z":2057.992},"rot":{"x":0.0,"y":272.546,"z":345.813}},{"monsterId":0,"gadgetId":70520005,"configId":489085,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-657.745,"y":164.114,"z":1958.034},"rot":{"x":5.476,"y":0.257,"z":5.379}},{"monsterId":0,"gadgetId":70510012,"configId":489020,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-659.548,"y":236.666,"z":1991.46},"rot":{"x":0.0,"y":192.446,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":489018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-638.406,"y":235.615,"z":1982.554},"rot":{"x":0.0,"y":347.143,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":489017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-638.666,"y":235.203,"z":1982.195},"rot":{"x":0.0,"y":347.143,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":489016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-638.763,"y":234.917,"z":1982.99},"rot":{"x":0.0,"y":347.143,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":489024,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-644.089,"y":237.697,"z":1998.685},"rot":{"x":0.0,"y":324.827,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":489022,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-647.488,"y":238.027,"z":2000.06},"rot":{"x":0.0,"y":250.788,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":489084,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-624.645,"y":167.13,"z":1928.693},"rot":{"x":4.189,"y":359.983,"z":359.526}},{"monsterId":0,"gadgetId":70520005,"configId":489086,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-630.655,"y":176.72,"z":1972.663},"rot":{"x":350.041,"y":359.818,"z":2.085}},{"monsterId":0,"gadgetId":70520003,"configId":489068,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-737.858,"y":102.833,"z":1908.251},"rot":{"x":6.503,"y":149.548,"z":2.845}},{"monsterId":0,"gadgetId":70520002,"configId":489074,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-692.399,"y":102.707,"z":1913.973},"rot":{"x":351.103,"y":124.937,"z":339.611}},{"monsterId":0,"gadgetId":70540029,"configId":489014,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-631.475,"y":188.179,"z":1912.395},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":489050,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-572.205,"y":273.407,"z":1921.168},"rot":{"x":9.794,"y":137.745,"z":309.795}},{"monsterId":0,"gadgetId":70540029,"configId":489049,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-575.813,"y":272.326,"z":1920.304},"rot":{"x":24.137,"y":179.048,"z":343.804}},{"monsterId":0,"gadgetId":70520005,"configId":489090,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-578.766,"y":228.331,"z":1962.777},"rot":{"x":357.182,"y":70.695,"z":348.962}},{"monsterId":0,"gadgetId":70540029,"configId":489082,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-575.282,"y":265.842,"z":2006.436},"rot":{"x":8.024,"y":274.995,"z":25.916}},{"monsterId":0,"gadgetId":70540001,"configId":489061,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-545.525,"y":271.651,"z":1902.467},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":489060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-545.858,"y":271.239,"z":1902.174},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":489059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-545.776,"y":270.953,"z":1902.971},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":489057,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-520.601,"y":272.571,"z":1895.617},"rot":{"x":0.0,"y":37.491,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":489089,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-678.143,"y":103.157,"z":1882.084},"rot":{"x":10.132,"y":248.13,"z":10.539}},{"monsterId":0,"gadgetId":70520001,"configId":489087,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-665.639,"y":101.33,"z":1869.175},"rot":{"x":352.206,"y":44.347,"z":355.396}},{"monsterId":0,"gadgetId":70520009,"configId":489062,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-514.134,"y":266.84,"z":1879.971},"rot":{"x":326.494,"y":355.305,"z":15.509}},{"monsterId":0,"gadgetId":70520001,"configId":489088,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-663.679,"y":101.218,"z":1867.334},"rot":{"x":358.323,"y":108.987,"z":356.79}},{"monsterId":0,"gadgetId":70520003,"configId":489010,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-581.121,"y":172.771,"z":1810.635},"rot":{"x":351.096,"y":357.116,"z":57.416}},{"monsterId":0,"gadgetId":70520003,"configId":489009,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-580.188,"y":172.274,"z":1812.544},"rot":{"x":46.848,"y":346.931,"z":330.38}},{"monsterId":0,"gadgetId":70510012,"configId":489003,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-582.07,"y":171.207,"z":1809.808},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":489001,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-582.887,"y":171.821,"z":1811.488},"rot":{"x":8.655,"y":5.313,"z":63.027}},{"monsterId":0,"gadgetId":70520002,"configId":489008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-575.001,"y":172.244,"z":1802.837},"rot":{"x":336.355,"y":62.166,"z":324.872}},{"monsterId":0,"gadgetId":70520002,"configId":489006,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-573.417,"y":172.649,"z":1803.901},"rot":{"x":344.747,"y":353.055,"z":48.761}},{"monsterId":0,"gadgetId":70510012,"configId":489005,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-577.034,"y":171.477,"z":1803.552},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":489007,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-571.121,"y":174.253,"z":1804.997},"rot":{"x":34.662,"y":354.808,"z":343.466}},{"monsterId":0,"gadgetId":70520001,"configId":489012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-513.804,"y":137.493,"z":1790.157},"rot":{"x":355.24,"y":0.059,"z":332.821}},{"monsterId":0,"gadgetId":70520001,"configId":489011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-513.108,"y":138.37,"z":1776.225},"rot":{"x":32.037,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":489013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-511.795,"y":138.399,"z":1775.931},"rot":{"x":23.384,"y":0.02,"z":0.74}},{"monsterId":0,"gadgetId":70520009,"configId":489066,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-747.101,"y":99.768,"z":1880.005},"rot":{"x":7.071,"y":359.559,"z":352.875}},{"monsterId":0,"gadgetId":70520002,"configId":489073,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-739.215,"y":102.55,"z":1906.897},"rot":{"x":326.149,"y":3.448,"z":348.703}},{"monsterId":0,"gadgetId":70520005,"configId":489067,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-737.757,"y":100.437,"z":1900.439},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":489072,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-744.17,"y":102.787,"z":1905.72},"rot":{"x":320.232,"y":7.159,"z":340.375}},{"monsterId":0,"gadgetId":70520003,"configId":489069,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-734.853,"y":101.982,"z":1906.636},"rot":{"x":359.093,"y":270.145,"z":16.133}},{"monsterId":0,"gadgetId":70520003,"configId":489070,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-739.943,"y":101.604,"z":1903.881},"rot":{"x":345.594,"y":0.022,"z":359.829}},{"monsterId":0,"gadgetId":70520003,"configId":489071,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-742.002,"y":102.303,"z":1905.719},"rot":{"x":2.82,"y":236.829,"z":16.881}},{"monsterId":0,"gadgetId":70540004,"configId":489065,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-712.662,"y":110.097,"z":1893.967},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489064,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-712.662,"y":110.097,"z":1893.776},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489036,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-694.871,"y":131.327,"z":1843.405},"rot":{"x":0.0,"y":51.3,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489035,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-695.021,"y":131.327,"z":1843.285},"rot":{"x":0.0,"y":51.3,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489039,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-675.008,"y":100.074,"z":1818.84},"rot":{"x":0.0,"y":94.246,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489038,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-675.2,"y":100.074,"z":1818.854},"rot":{"x":0.0,"y":94.246,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489042,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-694.046,"y":107.939,"z":1805.184},"rot":{"x":0.0,"y":75.816,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489041,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-694.232,"y":107.939,"z":1805.137},"rot":{"x":0.0,"y":75.816,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489027,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-695.206,"y":110.83,"z":1799.04},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489026,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-695.206,"y":110.83,"z":1798.848},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489033,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-691.934,"y":114.29,"z":1799.547},"rot":{"x":0.0,"y":265.542,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489032,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-691.743,"y":114.29,"z":1799.562},"rot":{"x":0.0,"y":265.542,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489030,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-680.39,"y":121.156,"z":1801.469},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":489029,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-680.39,"y":121.156,"z":1801.277},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133001019,"blockId":0,"pos":{"x":1697.3661,"y":0.0,"z":-1174.7625},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":19055,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1693.563,"y":262.343,"z":-1201.982},"rot":{"x":0.0,"y":213.56,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19044,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1704.152,"y":260.819,"z":-1192.076},"rot":{"x":337.703,"y":268.356,"z":343.817}},{"monsterId":0,"gadgetId":70520001,"configId":19043,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1703.257,"y":260.456,"z":-1194.598},"rot":{"x":337.703,"y":268.356,"z":343.817}},{"monsterId":0,"gadgetId":70520001,"configId":19033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1700.0,"y":234.5,"z":-1180.062},"rot":{"x":341.086,"y":127.96,"z":341.875}},{"monsterId":0,"gadgetId":70540005,"configId":19049,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1697.471,"y":271.172,"z":-1156.537},"rot":{"x":0.0,"y":208.186,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1701.181,"y":271.385,"z":-1133.234},"rot":{"x":4.554,"y":123.004,"z":4.378}},{"monsterId":0,"gadgetId":70520001,"configId":19004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1701.807,"y":271.309,"z":-1131.358},"rot":{"x":11.618,"y":109.388,"z":351.014}},{"monsterId":0,"gadgetId":70540005,"configId":19057,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1704.141,"y":271.016,"z":-1130.951},"rot":{"x":0.0,"y":208.741,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19042,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1737.489,"y":218.201,"z":-1279.848},"rot":{"x":343.53,"y":268.027,"z":2.277}},{"monsterId":0,"gadgetId":70520001,"configId":19041,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1744.081,"y":215.532,"z":-1275.2},"rot":{"x":0.0,"y":268.356,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1744.051,"y":259.365,"z":-1252.471},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1744.878,"y":259.085,"z":-1254.863},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19062,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1728.511,"y":257.873,"z":-1253.715},"rot":{"x":0.0,"y":191.902,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19018,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1742.937,"y":258.075,"z":-1253.138},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1790.712,"y":212.691,"z":-1225.048},"rot":{"x":0.0,"y":3.62,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19030,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1660.329,"y":239.1,"z":-1232.906},"rot":{"x":0.0,"y":121.903,"z":342.885}},{"monsterId":0,"gadgetId":70540005,"configId":19061,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1729.265,"y":255.779,"z":-1176.857},"rot":{"x":0.0,"y":78.731,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1728.522,"y":235.882,"z":-1111.488},"rot":{"x":36.286,"y":100.321,"z":316.747}},{"monsterId":0,"gadgetId":70520009,"configId":19045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1739.705,"y":255.679,"z":-1142.724},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19058,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1747.321,"y":267.549,"z":-1083.323},"rot":{"x":0.0,"y":68.612,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19051,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1735.768,"y":270.441,"z":-1069.496},"rot":{"x":0.0,"y":300.064,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19063,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1763.016,"y":254.838,"z":-1235.133},"rot":{"x":0.0,"y":156.466,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1758.234,"y":258.083,"z":-1242.021},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1759.061,"y":257.803,"z":-1244.413},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19014,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1757.12,"y":256.793,"z":-1242.688},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1661.114,"y":237.543,"z":-1195.434},"rot":{"x":357.195,"y":205.659,"z":339.314}},{"monsterId":0,"gadgetId":70520001,"configId":19007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1663.269,"y":237.238,"z":-1192.273},"rot":{"x":356.916,"y":174.857,"z":4.21}},{"monsterId":0,"gadgetId":70540005,"configId":19059,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1661.562,"y":280.028,"z":-1124.739},"rot":{"x":0.0,"y":221.202,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19031,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1636.742,"y":236.084,"z":-1224.035},"rot":{"x":0.0,"y":121.903,"z":342.885}},{"monsterId":0,"gadgetId":70520001,"configId":19032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1639.428,"y":235.083,"z":-1176.395},"rot":{"x":0.0,"y":121.903,"z":342.885}},{"monsterId":0,"gadgetId":70540005,"configId":19046,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1642.6,"y":278.834,"z":-1160.839},"rot":{"x":0.0,"y":102.589,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19050,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1630.977,"y":280.478,"z":-1166.88},"rot":{"x":0.0,"y":193.848,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1633.421,"y":280.92,"z":-1137.278},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19048,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1626.282,"y":280.78,"z":-1211.416},"rot":{"x":0.0,"y":161.143,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1615.807,"y":283.318,"z":-1186.386},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1557.193,"y":297.893,"z":-1213.114},"rot":{"x":0.0,"y":36.374,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1567.149,"y":293.481,"z":-1210.007},"rot":{"x":0.0,"y":275.201,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1563.253,"y":292.582,"z":-1189.085},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1599.738,"y":287.081,"z":-1206.345},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1588.921,"y":287.467,"z":-1155.267},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1607.691,"y":289.663,"z":-1164.527},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":19001,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1591.063,"y":287.553,"z":-1113.466},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1627.701,"y":287.316,"z":-1113.0},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19047,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1643.188,"y":279.661,"z":-1098.581},"rot":{"x":0.0,"y":274.561,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1638.761,"y":287.913,"z":-1107.162},"rot":{"x":0.0,"y":136.112,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19054,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1708.487,"y":270.503,"z":-1130.127},"rot":{"x":0.0,"y":169.394,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":19067,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1709.221,"y":270.871,"z":-1108.983},"rot":{"x":0.0,"y":47.273,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19064,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1785.224,"y":246.787,"z":-1139.254},"rot":{"x":0.0,"y":121.829,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19060,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1785.822,"y":246.903,"z":-1140.132},"rot":{"x":0.0,"y":263.831,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1783.38,"y":237.739,"z":-1117.353},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1784.207,"y":237.459,"z":-1119.745},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1782.266,"y":236.449,"z":-1118.02},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1750.728,"y":272.432,"z":-1040.06},"rot":{"x":0.0,"y":256.804,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1761.272,"y":253.867,"z":-1195.354},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1760.742,"y":254.569,"z":-1200.509},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1756.992,"y":254.905,"z":-1199.807},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":19065,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1769.085,"y":253.741,"z":-1209.757},"rot":{"x":0.0,"y":295.657,"z":0.0}}]},{"sceneId":3,"groupId":133222183,"blockId":0,"pos":{"x":-4527.399,"y":0.0,"z":-4408.3276},"spawns":[{"monsterId":0,"gadgetId":70520035,"configId":183055,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4589.968,"y":217.482,"z":-4373.117},"rot":{"x":21.666,"y":134.207,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":183054,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4590.135,"y":217.682,"z":-4373.004},"rot":{"x":0.0,"y":165.635,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":183052,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4541.572,"y":206.047,"z":-4372.897},"rot":{"x":21.666,"y":73.481,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":183051,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4541.751,"y":206.247,"z":-4372.991},"rot":{"x":0.0,"y":104.909,"z":354.199}},{"monsterId":0,"gadgetId":70520029,"configId":183028,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4508.169,"y":199.611,"z":-4378.911},"rot":{"x":0.0,"y":55.49,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":183026,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4530.293,"y":204.253,"z":-4354.817},"rot":{"x":0.0,"y":266.469,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":183003,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4519.299,"y":200.831,"z":-4363.287},"rot":{"x":0.0,"y":218.519,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":183058,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4601.296,"y":213.265,"z":-4405.684},"rot":{"x":21.666,"y":144.709,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":183057,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4601.44,"y":213.465,"z":-4405.545},"rot":{"x":0.0,"y":176.137,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":183041,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4574.192,"y":207.189,"z":-4398.409},"rot":{"x":20.506,"y":338.199,"z":9.079}},{"monsterId":0,"gadgetId":70520035,"configId":183040,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4574.083,"y":207.389,"z":-4398.578},"rot":{"x":0.912,"y":9.01,"z":354.271}},{"monsterId":0,"gadgetId":70520025,"configId":183016,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4362.225,"y":199.246,"z":-4367.263},"rot":{"x":0.0,"y":163.653,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":183014,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4452.751,"y":198.926,"z":-4480.747},"rot":{"x":0.0,"y":233.259,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":183042,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4471.985,"y":199.249,"z":-4453.322},"rot":{"x":0.0,"y":320.924,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":183043,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4468.939,"y":199.139,"z":-4439.106},"rot":{"x":0.0,"y":337.588,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":183025,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4510.292,"y":199.111,"z":-4595.57},"rot":{"x":0.0,"y":219.626,"z":0.0}}]},{"sceneId":3,"groupId":133222184,"blockId":0,"pos":{"x":-4736.874,"y":0.0,"z":-4240.1274},"spawns":[{"monsterId":0,"gadgetId":70520035,"configId":184178,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4867.931,"y":204.145,"z":-4315.815},"rot":{"x":21.666,"y":98.482,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184177,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4868.132,"y":204.346,"z":-4315.824},"rot":{"x":0.0,"y":129.91,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184042,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4861.299,"y":204.748,"z":-4322.987},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184043,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4861.435,"y":204.547,"z":-4322.838},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184172,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4765.366,"y":207.324,"z":-4313.709},"rot":{"x":21.666,"y":207.925,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184171,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4765.307,"y":207.525,"z":-4313.517},"rot":{"x":0.0,"y":239.353,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184065,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4764.351,"y":209.499,"z":-4320.403},"rot":{"x":359.429,"y":354.366,"z":354.227}},{"monsterId":0,"gadgetId":70520035,"configId":184066,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4764.5,"y":209.298,"z":-4320.268},"rot":{"x":22.108,"y":322.488,"z":3.338}},{"monsterId":0,"gadgetId":70520033,"configId":184111,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4777.623,"y":207.843,"z":-4280.723},"rot":{"x":0.0,"y":309.03,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":184142,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4764.206,"y":204.548,"z":-4284.751},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184138,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4767.665,"y":206.058,"z":-4275.262},"rot":{"x":0.0,"y":103.185,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184139,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4767.489,"y":205.857,"z":-4275.164},"rot":{"x":21.666,"y":71.757,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184141,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4764.071,"y":204.749,"z":-4284.9},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184210,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4771.252,"y":207.03,"z":-4263.205},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184136,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4755.361,"y":201.933,"z":-4260.237},"rot":{"x":21.666,"y":246.065,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184135,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4755.195,"y":202.134,"z":-4260.123},"rot":{"x":0.0,"y":277.493,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184211,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4771.388,"y":206.829,"z":-4263.056},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184072,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4762.258,"y":204.286,"z":-4244.989},"rot":{"x":17.403,"y":353.993,"z":14.24}},{"monsterId":0,"gadgetId":70520035,"configId":184071,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4762.196,"y":204.487,"z":-4245.18},"rot":{"x":2.384,"y":24.194,"z":354.71}},{"monsterId":0,"gadgetId":70520033,"configId":184095,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4853.468,"y":207.623,"z":-4201.123},"rot":{"x":0.0,"y":267.439,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":184094,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4860.753,"y":207.222,"z":-4202.846},"rot":{"x":0.0,"y":158.78,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":184046,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4843.53,"y":210.185,"z":-4192.426},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184045,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4843.395,"y":210.386,"z":-4192.575},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520033,"configId":184096,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4847.543,"y":206.505,"z":-4167.079},"rot":{"x":0.0,"y":251.125,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":184196,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4828.521,"y":205.492,"z":-4159.429},"rot":{"x":21.666,"y":290.038,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184195,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4828.322,"y":205.693,"z":-4159.46},"rot":{"x":0.0,"y":321.466,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184193,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4831.548,"y":205.317,"z":-4165.002},"rot":{"x":21.666,"y":34.305,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184192,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4831.63,"y":205.518,"z":-4165.186},"rot":{"x":0.0,"y":65.733,"z":354.199}},{"monsterId":0,"gadgetId":70520033,"configId":184109,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4854.012,"y":201.478,"z":-4132.143},"rot":{"x":0.0,"y":197.728,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":184110,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4844.273,"y":202.631,"z":-4133.175},"rot":{"x":0.0,"y":286.233,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":184199,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4830.18,"y":207.438,"z":-4145.028},"rot":{"x":21.666,"y":311.619,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184198,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4830.007,"y":207.639,"z":-4145.132},"rot":{"x":0.0,"y":343.047,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184202,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4811.917,"y":203.37,"z":-4135.246},"rot":{"x":21.666,"y":268.048,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184201,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4811.722,"y":203.571,"z":-4135.2},"rot":{"x":0.0,"y":299.476,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184049,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4806.56,"y":205.569,"z":-4130.038},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184048,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4806.424,"y":205.77,"z":-4130.187},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520009,"configId":184040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4802.964,"y":202.494,"z":-4109.259},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":184053,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4765.387,"y":206.66,"z":-4110.213},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":184052,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4732.897,"y":212.171,"z":-4113.65},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184051,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4732.762,"y":212.372,"z":-4113.799},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184133,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4702.597,"y":201.991,"z":-4187.847},"rot":{"x":21.666,"y":73.709,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184132,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4702.777,"y":202.191,"z":-4187.938},"rot":{"x":0.0,"y":105.137,"z":354.199}},{"monsterId":0,"gadgetId":70520033,"configId":184054,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4645.819,"y":202.444,"z":-4102.31},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":184163,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4608.038,"y":203.778,"z":-4156.574},"rot":{"x":21.666,"y":32.548,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184162,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4608.113,"y":203.979,"z":-4156.762},"rot":{"x":0.0,"y":63.976,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184129,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4690.39,"y":201.532,"z":-4183.605},"rot":{"x":0.0,"y":137.033,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184130,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4690.188,"y":201.331,"z":-4183.624},"rot":{"x":21.666,"y":105.605,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184127,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4671.086,"y":202.875,"z":-4177.94},"rot":{"x":21.666,"y":217.304,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184126,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4670.996,"y":203.076,"z":-4177.761},"rot":{"x":0.0,"y":248.732,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184124,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4667.957,"y":201.495,"z":-4181.006},"rot":{"x":21.666,"y":251.167,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184123,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4667.782,"y":201.695,"z":-4180.906},"rot":{"x":0.0,"y":282.595,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184184,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4641.715,"y":187.611,"z":-4215.529},"rot":{"x":21.666,"y":239.437,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184183,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4641.563,"y":187.812,"z":-4215.397},"rot":{"x":0.0,"y":270.865,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184187,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4622.954,"y":191.907,"z":-4215.921},"rot":{"x":21.666,"y":226.082,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184186,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4622.839,"y":192.108,"z":-4215.757},"rot":{"x":0.0,"y":257.51,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184181,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4619.438,"y":190.847,"z":-4233.772},"rot":{"x":21.666,"y":34.922,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184180,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4619.519,"y":191.048,"z":-4233.955},"rot":{"x":0.0,"y":66.35,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184190,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4668.135,"y":194.988,"z":-4290.167},"rot":{"x":21.666,"y":52.905,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184189,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4668.27,"y":195.189,"z":-4290.316},"rot":{"x":0.0,"y":84.333,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184089,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4646.777,"y":194.038,"z":-4284.313},"rot":{"x":0.57,"y":5.615,"z":354.227}},{"monsterId":0,"gadgetId":70520035,"configId":184090,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4646.896,"y":193.837,"z":-4284.151},"rot":{"x":21.007,"y":334.59,"z":7.799}},{"monsterId":0,"gadgetId":70520035,"configId":184160,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4613.739,"y":202.228,"z":-4291.979},"rot":{"x":21.666,"y":253.439,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184159,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4613.56,"y":202.429,"z":-4291.888},"rot":{"x":0.0,"y":284.867,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184154,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4675.73,"y":202.25,"z":-4324.569},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184153,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4675.595,"y":202.45,"z":-4324.718},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184148,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4669.272,"y":203.66,"z":-4328.475},"rot":{"x":21.666,"y":221.466,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184147,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4669.169,"y":203.861,"z":-4328.301},"rot":{"x":0.0,"y":252.894,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184205,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4655.588,"y":206.414,"z":-4335.8},"rot":{"x":21.666,"y":69.941,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184204,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4655.761,"y":206.614,"z":-4335.904},"rot":{"x":0.0,"y":101.369,"z":354.199}},{"monsterId":0,"gadgetId":70520033,"configId":184115,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4696.614,"y":206.152,"z":-4335.214},"rot":{"x":0.0,"y":175.9,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":184157,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4697.848,"y":203.278,"z":-4327.849},"rot":{"x":21.666,"y":304.953,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184150,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4701.372,"y":203.859,"z":-4329.098},"rot":{"x":0.0,"y":326.706,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184151,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4701.566,"y":203.659,"z":-4329.047},"rot":{"x":21.666,"y":295.278,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184156,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4697.664,"y":203.479,"z":-4327.931},"rot":{"x":0.0,"y":336.381,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184207,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4725.948,"y":206.762,"z":-4329.439},"rot":{"x":0.0,"y":73.812,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184169,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4717.569,"y":203.843,"z":-4326.24},"rot":{"x":21.666,"y":64.643,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184168,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4717.731,"y":204.043,"z":-4326.359},"rot":{"x":0.0,"y":96.071,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184166,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4723.434,"y":203.114,"z":-4318.74},"rot":{"x":21.666,"y":125.141,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184165,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4723.617,"y":203.315,"z":-4318.658},"rot":{"x":0.0,"y":156.569,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184208,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4725.843,"y":206.562,"z":-4329.269},"rot":{"x":21.666,"y":42.384,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184145,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4741.603,"y":202.591,"z":-4299.201},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184144,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4741.467,"y":202.791,"z":-4299.35},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":184175,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4749.119,"y":203.437,"z":-4218.018},"rot":{"x":21.666,"y":255.531,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":184174,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4748.936,"y":203.638,"z":-4217.935},"rot":{"x":0.0,"y":286.959,"z":354.199}}]},{"sceneId":3,"groupId":133222185,"blockId":0,"pos":{"x":-4551.6865,"y":0.0,"z":-4198.696},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":185038,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4491.792,"y":199.11,"z":-4234.889},"rot":{"x":0.0,"y":144.036,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":185040,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4505.01,"y":199.085,"z":-4235.615},"rot":{"x":0.0,"y":199.898,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":185039,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4503.165,"y":198.87,"z":-4242.517},"rot":{"x":0.0,"y":145.997,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":185120,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4509.791,"y":201.361,"z":-4196.808},"rot":{"x":21.666,"y":12.201,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185119,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4509.797,"y":201.562,"z":-4197.009},"rot":{"x":0.0,"y":43.629,"z":354.199}},{"monsterId":0,"gadgetId":70520033,"configId":185026,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4506.439,"y":200.547,"z":-4199.797},"rot":{"x":0.0,"y":308.109,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":185125,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4524.372,"y":202.475,"z":-4212.122},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185123,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4526.409,"y":202.362,"z":-4209.271},"rot":{"x":21.666,"y":344.669,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185122,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4526.318,"y":202.562,"z":-4209.45},"rot":{"x":0.0,"y":16.097,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185126,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4524.507,"y":202.274,"z":-4211.973},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520033,"configId":185034,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4528.477,"y":201.519,"z":-4110.292},"rot":{"x":0.0,"y":349.206,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":185117,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4726.503,"y":212.741,"z":-4114.536},"rot":{"x":21.666,"y":8.289,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185116,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4726.494,"y":212.942,"z":-4114.737},"rot":{"x":0.0,"y":39.717,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185114,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4705.962,"y":212.177,"z":-4120.484},"rot":{"x":21.666,"y":72.176,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185113,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4706.138,"y":212.378,"z":-4120.579},"rot":{"x":0.0,"y":103.604,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185111,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4686.534,"y":208.726,"z":-4118.854},"rot":{"x":21.666,"y":358.847,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185107,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4674.201,"y":208.844,"z":-4122.715},"rot":{"x":0.0,"y":257.271,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185108,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4674.316,"y":208.643,"z":-4122.879},"rot":{"x":21.666,"y":225.843,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185110,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4686.493,"y":208.927,"z":-4119.051},"rot":{"x":0.0,"y":30.275,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185084,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4606.183,"y":202.753,"z":-4160.847},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185083,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4606.047,"y":202.954,"z":-4160.996},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185099,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4571.85,"y":201.2,"z":-4205.58},"rot":{"x":21.666,"y":251.74,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185098,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4571.674,"y":201.401,"z":-4205.482},"rot":{"x":0.0,"y":283.168,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185102,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4581.998,"y":201.905,"z":-4240.617},"rot":{"x":21.666,"y":22.405,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185101,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4582.04,"y":202.106,"z":-4240.813},"rot":{"x":0.0,"y":53.833,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185129,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4537.323,"y":203.623,"z":-4233.024},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185128,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4537.188,"y":203.824,"z":-4233.173},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520033,"configId":185033,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4549.043,"y":202.26,"z":-4119.426},"rot":{"x":0.0,"y":7.145,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":185105,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4572.342,"y":206.378,"z":-4258.819},"rot":{"x":21.666,"y":44.495,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185104,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4572.453,"y":206.578,"z":-4258.985},"rot":{"x":0.0,"y":75.923,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185080,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4582.989,"y":207.098,"z":-4261.795},"rot":{"x":0.0,"y":29.303,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":185081,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4583.035,"y":206.898,"z":-4261.599},"rot":{"x":21.666,"y":357.875,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185087,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4540.004,"y":203.671,"z":-4277.28},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":185086,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4539.869,"y":203.872,"z":-4277.429},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520033,"configId":185009,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4512.054,"y":200.54,"z":-4345.009},"rot":{"x":0.0,"y":287.928,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":185012,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4401.343,"y":219.767,"z":-4170.712},"rot":{"x":4.074,"y":115.825,"z":5.917}},{"monsterId":0,"gadgetId":70520033,"configId":185011,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4397.839,"y":216.784,"z":-4155.543},"rot":{"x":0.0,"y":315.664,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":185010,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4398.174,"y":218.583,"z":-4167.133},"rot":{"x":359.537,"y":340.879,"z":345.329}},{"monsterId":0,"gadgetId":70520033,"configId":185036,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4371.254,"y":243.955,"z":-4176.384},"rot":{"x":0.0,"y":236.389,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":185014,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4365.757,"y":199.251,"z":-4262.724},"rot":{"x":0.0,"y":147.025,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":185015,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4395.977,"y":198.766,"z":-4259.586},"rot":{"x":0.0,"y":332.548,"z":0.0}}]},{"sceneId":3,"groupId":133222186,"blockId":0,"pos":{"x":-4279.165,"y":0.0,"z":-4232.9365},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":186005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4334.333,"y":205.77,"z":-4210.959},"rot":{"x":0.0,"y":239.672,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":186004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4332.089,"y":203.533,"z":-4206.159},"rot":{"x":0.0,"y":211.29,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":186003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4343.399,"y":206.284,"z":-4193.064},"rot":{"x":0.0,"y":84.655,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":186001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4343.733,"y":207.618,"z":-4211.161},"rot":{"x":0.0,"y":84.655,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":186002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4349.352,"y":208.082,"z":-4192.634},"rot":{"x":0.0,"y":84.655,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":186033,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4341.631,"y":236.909,"z":-4173.165},"rot":{"x":0.0,"y":345.566,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":186036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4257.766,"y":201.559,"z":-4097.583},"rot":{"x":1.411,"y":277.546,"z":349.473}},{"monsterId":0,"gadgetId":70520009,"configId":186035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4258.567,"y":202.148,"z":-4107.894},"rot":{"x":5.937,"y":238.733,"z":354.336}},{"monsterId":0,"gadgetId":70520009,"configId":186037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4247.961,"y":202.029,"z":-4101.034},"rot":{"x":357.225,"y":172.694,"z":5.656}},{"monsterId":0,"gadgetId":70520035,"configId":186046,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4271.577,"y":229.574,"z":-4216.575},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":186045,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4271.441,"y":229.775,"z":-4216.724},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":186043,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4268.393,"y":228.73,"z":-4217.595},"rot":{"x":21.666,"y":55.48,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":186042,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4268.534,"y":228.93,"z":-4217.739},"rot":{"x":0.0,"y":86.908,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":186040,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4269.109,"y":229.487,"z":-4214.32},"rot":{"x":21.666,"y":71.229,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":186039,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4269.284,"y":229.688,"z":-4214.419},"rot":{"x":0.0,"y":102.657,"z":354.199}},{"monsterId":0,"gadgetId":70520033,"configId":186034,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4314.515,"y":228.497,"z":-4205.139},"rot":{"x":0.0,"y":132.117,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":186031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4291.223,"y":213.898,"z":-4251.176},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":186032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4244.342,"y":212.346,"z":-4242.818},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":186010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4237.55,"y":208.8,"z":-4274.738},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":186009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4237.883,"y":208.388,"z":-4275.031},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":186008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4237.801,"y":208.102,"z":-4274.234},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":186014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4185.172,"y":202.805,"z":-4286.213},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":186013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4185.505,"y":202.393,"z":-4286.506},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":186012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4185.423,"y":202.107,"z":-4285.709},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":186006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4262.559,"y":208.216,"z":-4299.055},"rot":{"x":0.0,"y":321.231,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":186030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4335.714,"y":203.445,"z":-4350.369},"rot":{"x":0.0,"y":37.758,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":186029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4336.157,"y":203.033,"z":-4350.397},"rot":{"x":0.0,"y":37.758,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":186028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4335.604,"y":202.747,"z":-4349.817},"rot":{"x":0.0,"y":37.758,"z":0.0}}]},{"sceneId":3,"groupId":133222187,"blockId":0,"pos":{"x":-4284.193,"y":0.0,"z":-4455.2295},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":187001,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4345.161,"y":199.644,"z":-4372.68},"rot":{"x":0.0,"y":96.928,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":187029,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4294.991,"y":201.571,"z":-4421.931},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":187028,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4294.855,"y":201.772,"z":-4422.08},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":187023,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4290.854,"y":202.066,"z":-4439.595},"rot":{"x":21.666,"y":302.441,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":187022,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4290.666,"y":202.266,"z":-4439.668},"rot":{"x":0.0,"y":333.869,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":187026,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4300.312,"y":201.162,"z":-4463.762},"rot":{"x":21.666,"y":307.788,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":187025,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4300.132,"y":201.363,"z":-4463.854},"rot":{"x":0.0,"y":339.216,"z":354.199}},{"monsterId":0,"gadgetId":70520005,"configId":187020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4213.803,"y":203.01,"z":-4480.118},"rot":{"x":9.521,"y":104.789,"z":356.667}},{"monsterId":0,"gadgetId":70520005,"configId":187019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4217.953,"y":203.722,"z":-4479.08},"rot":{"x":350.553,"y":325.541,"z":356.468}},{"monsterId":0,"gadgetId":70540001,"configId":187009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4287.089,"y":204.842,"z":-4493.507},"rot":{"x":0.0,"y":39.229,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":187008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4287.533,"y":204.43,"z":-4493.523},"rot":{"x":0.0,"y":39.229,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":187007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4286.965,"y":204.144,"z":-4492.958},"rot":{"x":0.0,"y":39.229,"z":0.0}}]},{"sceneId":3,"groupId":133222190,"blockId":0,"pos":{"x":-4970.14,"y":0.0,"z":-4209.753},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":190039,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4867.852,"y":199.501,"z":-4337.024},"rot":{"x":0.0,"y":80.427,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190027,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4873.5,"y":202.262,"z":-4316.671},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":190038,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4883.795,"y":199.335,"z":-4329.276},"rot":{"x":0.0,"y":22.426,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190028,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4881.029,"y":202.844,"z":-4276.075},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190024,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4874.939,"y":204.021,"z":-4287.513},"rot":{"x":0.0,"y":155.989,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":190021,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4907.596,"y":198.888,"z":-4266.265},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190023,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4887.258,"y":202.215,"z":-4266.665},"rot":{"x":0.0,"y":359.577,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":190022,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4914.065,"y":198.847,"z":-4246.308},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190032,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4907.032,"y":200.612,"z":-4232.447},"rot":{"x":0.0,"y":200.373,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190037,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4873.835,"y":205.497,"z":-4232.436},"rot":{"x":0.0,"y":239.139,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190031,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4910.354,"y":200.384,"z":-4227.939},"rot":{"x":0.0,"y":130.95,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190036,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4873.744,"y":205.753,"z":-4229.032},"rot":{"x":0.0,"y":129.419,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":190025,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-4876.933,"y":206.768,"z":-4271.042},"rot":{"x":329.025,"y":4.577,"z":343.587}},{"monsterId":0,"gadgetId":70520029,"configId":190020,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4923.296,"y":199.029,"z":-4209.157},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190034,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4894.739,"y":204.227,"z":-4197.751},"rot":{"x":0.0,"y":254.604,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190033,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4898.16,"y":201.784,"z":-4210.239},"rot":{"x":0.0,"y":149.245,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190030,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4902.746,"y":202.47,"z":-4196.127},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190035,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4878.791,"y":207.94,"z":-4196.166},"rot":{"x":0.0,"y":93.061,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190029,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4903.481,"y":203.018,"z":-4186.252},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":190040,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4895.845,"y":201.473,"z":-4156.425},"rot":{"x":0.0,"y":114.02,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":190016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4885.893,"y":202.454,"z":-4150.215},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":190026,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-4874.099,"y":205.968,"z":-4148.057},"rot":{"x":356.335,"y":358.29,"z":50.008}},{"monsterId":0,"gadgetId":70520005,"configId":190014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-5003.991,"y":202.15,"z":-4204.424},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":190013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-5020.535,"y":202.573,"z":-4338.146},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":190011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-5067.632,"y":205.368,"z":-4294.828},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":190009,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-5071.536,"y":209.124,"z":-4200.051},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":190017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5018.521,"y":202.577,"z":-4184.404},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":190012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-5082.804,"y":204.586,"z":-4270.616},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":190018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5091.644,"y":203.838,"z":-4211.64},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":190010,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-5084.599,"y":205.008,"z":-4196.691},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":190003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5089.746,"y":202.294,"z":-4193.913},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":190002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5081.737,"y":205.329,"z":-4200.958},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":190001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5084.944,"y":204.836,"z":-4205.667},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":190019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-5078.556,"y":201.861,"z":-4162.558},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":190015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-5016.427,"y":200.805,"z":-4154.396},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":190042,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5043.602,"y":201.974,"z":-4132.369},"rot":{"x":338.064,"y":350.605,"z":23.888}},{"monsterId":0,"gadgetId":70590036,"configId":190043,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5042.395,"y":202.014,"z":-4128.881},"rot":{"x":2.791,"y":84.011,"z":62.045}},{"monsterId":0,"gadgetId":70590036,"configId":190004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5037.897,"y":200.479,"z":-4128.148},"rot":{"x":6.905,"y":29.013,"z":1.645}},{"monsterId":0,"gadgetId":70590036,"configId":190005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5038.856,"y":201.269,"z":-4130.261},"rot":{"x":9.235,"y":262.905,"z":18.073}},{"monsterId":0,"gadgetId":70590036,"configId":190006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5043.584,"y":200.64,"z":-4125.901},"rot":{"x":0.0,"y":0.0,"z":22.063}},{"monsterId":0,"gadgetId":70520001,"configId":190007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-5041.198,"y":201.472,"z":-4130.458},"rot":{"x":25.769,"y":54.943,"z":13.414}},{"monsterId":0,"gadgetId":70590036,"configId":190041,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5041.526,"y":200.137,"z":-4125.396},"rot":{"x":4.02,"y":296.042,"z":351.85}},{"monsterId":0,"gadgetId":70520001,"configId":190008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-5045.319,"y":201.691,"z":-4130.612},"rot":{"x":31.713,"y":15.488,"z":48.708}}]},{"sceneId":3,"groupId":133004041,"blockId":0,"pos":{"x":2843.748,"y":0.0,"z":-329.256},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":41007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2843.748,"y":305.367,"z":-329.256},"rot":{"x":0.0,"y":93.629,"z":0.0}}]},{"sceneId":3,"groupId":133007115,"blockId":0,"pos":{"x":2115.5554,"y":0.0,"z":-33.956665},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":413,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2113.329,"y":210.915,"z":-34.835},"rot":{"x":0.0,"y":246.374,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":412,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2115.869,"y":211.53,"z":-32.041},"rot":{"x":0.0,"y":79.868,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":411,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2117.468,"y":211.324,"z":-34.994},"rot":{"x":0.0,"y":213.794,"z":0.0}}]},{"sceneId":3,"groupId":133003013,"blockId":0,"pos":{"x":2436.3506,"y":0.0,"z":-1186.7358},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":13042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2307.148,"y":251.272,"z":-1275.897},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":13041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2306.815,"y":250.86,"z":-1276.19},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":13040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2306.897,"y":250.574,"z":-1275.393},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2310.452,"y":210.211,"z":-1178.736},"rot":{"x":3.905,"y":190.584,"z":3.897}},{"monsterId":0,"gadgetId":70520005,"configId":13027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2316.828,"y":212.267,"z":-1158.792},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2317.512,"y":208.362,"z":-1134.499},"rot":{"x":356.437,"y":39.733,"z":349.042}},{"monsterId":0,"gadgetId":70520001,"configId":13070,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2334.951,"y":234.518,"z":-1230.566},"rot":{"x":0.0,"y":121.5,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":13069,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2331.998,"y":233.638,"z":-1229.705},"rot":{"x":0.0,"y":5.106,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":13072,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2358.699,"y":252.83,"z":-1242.654},"rot":{"x":0.0,"y":3.108,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":13071,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2374.251,"y":252.197,"z":-1279.202},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2371.113,"y":255.404,"z":-1235.525},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":13060,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2535.556,"y":219.147,"z":-1111.607},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":13059,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2535.556,"y":219.147,"z":-1111.799},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":13065,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2542.392,"y":205.488,"z":-1201.439},"rot":{"x":29.064,"y":1.954,"z":65.794}},{"monsterId":0,"gadgetId":70540001,"configId":13063,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2542.996,"y":205.537,"z":-1201.197},"rot":{"x":7.786,"y":325.138,"z":302.033}},{"monsterId":0,"gadgetId":70540003,"configId":13064,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2548.858,"y":205.559,"z":-1203.736},"rot":{"x":7.786,"y":325.138,"z":76.029}},{"monsterId":0,"gadgetId":70540003,"configId":13057,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2448.902,"y":212.706,"z":-1119.734},"rot":{"x":0.0,"y":54.76,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2460.176,"y":208.927,"z":-1122.846},"rot":{"x":347.679,"y":337.239,"z":355.641}},{"monsterId":0,"gadgetId":70540003,"configId":13044,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2327.139,"y":208.129,"z":-1119.746},"rot":{"x":0.193,"y":356.916,"z":3.571}},{"monsterId":0,"gadgetId":70540003,"configId":13043,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2326.762,"y":208.171,"z":-1119.269},"rot":{"x":0.193,"y":356.916,"z":3.571}},{"monsterId":0,"gadgetId":70540003,"configId":13030,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2327.283,"y":208.213,"z":-1119.129},"rot":{"x":0.193,"y":356.916,"z":3.571}},{"monsterId":0,"gadgetId":70540021,"configId":13051,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2474.564,"y":202.294,"z":-1178.588},"rot":{"x":0.0,"y":316.637,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13049,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2474.212,"y":201.004,"z":-1179.838},"rot":{"x":0.0,"y":316.637,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13050,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2476.807,"y":202.014,"z":-1179.76},"rot":{"x":0.0,"y":316.637,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2307.868,"y":217.667,"z":-1076.262},"rot":{"x":357.746,"y":359.087,"z":9.871}},{"monsterId":0,"gadgetId":70520001,"configId":13025,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2392.302,"y":212.513,"z":-1203.895},"rot":{"x":351.283,"y":288.714,"z":329.488}},{"monsterId":0,"gadgetId":70520004,"configId":13032,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2406.042,"y":203.402,"z":-1159.5},"rot":{"x":0.0,"y":91.546,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":13062,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2466.621,"y":207.14,"z":-1226.61},"rot":{"x":7.786,"y":325.138,"z":346.772}},{"monsterId":0,"gadgetId":70520005,"configId":13045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2459.116,"y":199.618,"z":-1219.865},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":13061,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2467.036,"y":207.105,"z":-1226.955},"rot":{"x":304.847,"y":336.601,"z":347.308}},{"monsterId":0,"gadgetId":70520005,"configId":13053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2495.601,"y":208.2,"z":-1257.431},"rot":{"x":2.399,"y":49.219,"z":352.563}},{"monsterId":0,"gadgetId":70520009,"configId":13031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2507.573,"y":203.337,"z":-1235.102},"rot":{"x":3.507,"y":91.416,"z":355.749}},{"monsterId":0,"gadgetId":70540001,"configId":13007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2495.708,"y":204.76,"z":-1187.786},"rot":{"x":350.253,"y":107.541,"z":4.329}},{"monsterId":0,"gadgetId":70540001,"configId":13006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2495.593,"y":204.281,"z":-1187.434},"rot":{"x":350.253,"y":107.541,"z":4.329}},{"monsterId":0,"gadgetId":70540001,"configId":13005,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2496.356,"y":204.141,"z":-1187.784},"rot":{"x":350.253,"y":107.541,"z":4.329}},{"monsterId":0,"gadgetId":70540021,"configId":13038,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2511.697,"y":204.147,"z":-1158.563},"rot":{"x":64.812,"y":335.977,"z":315.849}},{"monsterId":0,"gadgetId":70540021,"configId":13037,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2512.299,"y":204.089,"z":-1158.4},"rot":{"x":47.736,"y":9.011,"z":15.0}},{"monsterId":0,"gadgetId":70540021,"configId":13036,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2512.82,"y":204.121,"z":-1159.898},"rot":{"x":42.699,"y":12.274,"z":3.87}},{"monsterId":0,"gadgetId":70540021,"configId":13017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2520.482,"y":206.768,"z":-1158.492},"rot":{"x":0.0,"y":302.24,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2520.512,"y":208.058,"z":-1157.194},"rot":{"x":0.0,"y":302.24,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13018,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2522.977,"y":207.778,"z":-1157.77},"rot":{"x":0.0,"y":302.24,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2523.024,"y":205.434,"z":-1158.609},"rot":{"x":352.862,"y":356.905,"z":15.972}},{"monsterId":0,"gadgetId":70540021,"configId":13035,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2512.049,"y":204.072,"z":-1158.709},"rot":{"x":16.5,"y":0.796,"z":2.799}},{"monsterId":0,"gadgetId":70520005,"configId":13047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2537.149,"y":214.007,"z":-1273.254},"rot":{"x":11.548,"y":103.006,"z":345.67}},{"monsterId":0,"gadgetId":70520005,"configId":13023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2536.568,"y":208.032,"z":-1223.182},"rot":{"x":0.0,"y":351.464,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2420.472,"y":208.636,"z":-1252.641},"rot":{"x":0.0,"y":358.173,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2413.203,"y":212.352,"z":-1237.064},"rot":{"x":0.0,"y":264.219,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13014,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2415.5,"y":212.072,"z":-1236.0},"rot":{"x":0.0,"y":264.219,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13024,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2418.374,"y":210.063,"z":-1242.012},"rot":{"x":354.649,"y":0.168,"z":358.202}},{"monsterId":0,"gadgetId":70540021,"configId":13013,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2413.979,"y":211.062,"z":-1238.105},"rot":{"x":0.0,"y":264.219,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2419.57,"y":208.916,"z":-1250.277},"rot":{"x":0.0,"y":358.173,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":13009,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2418.477,"y":207.626,"z":-1250.979},"rot":{"x":0.0,"y":358.173,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2437.56,"y":205.008,"z":-1249.812},"rot":{"x":3.507,"y":91.416,"z":355.749}},{"monsterId":0,"gadgetId":70520004,"configId":13052,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2424.162,"y":210.116,"z":-1127.069},"rot":{"x":3.507,"y":91.416,"z":334.851}},{"monsterId":0,"gadgetId":70540004,"configId":13068,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2435.932,"y":215.448,"z":-1118.789},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":13067,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2435.932,"y":215.448,"z":-1118.981},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":13056,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2447.425,"y":212.426,"z":-1121.79},"rot":{"x":0.0,"y":54.76,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":13055,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2447.714,"y":211.416,"z":-1119.209},"rot":{"x":0.0,"y":54.76,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13033,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2433.856,"y":212.399,"z":-1096.854},"rot":{"x":3.507,"y":91.416,"z":355.749}},{"monsterId":0,"gadgetId":70520004,"configId":13020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2341.594,"y":207.637,"z":-1126.022},"rot":{"x":0.164,"y":80.935,"z":0.589}}]},{"sceneId":3,"groupId":133004036,"blockId":0,"pos":{"x":2674.4163,"y":0.0,"z":-398.8093},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":36029,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2563.711,"y":254.341,"z":-380.62},"rot":{"x":0.0,"y":33.532,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2605.696,"y":208.026,"z":-498.749},"rot":{"x":0.0,"y":351.941,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":36012,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2595.643,"y":275.515,"z":-364.088},"rot":{"x":0.0,"y":324.518,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":36020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2608.288,"y":210.122,"z":-494.099},"rot":{"x":0.0,"y":57.871,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2647.377,"y":213.825,"z":-498.651},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2647.044,"y":213.413,"z":-498.944},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2647.126,"y":213.127,"z":-498.147},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36023,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2643.286,"y":276.626,"z":-402.902},"rot":{"x":0.0,"y":32.098,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36024,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2647.21,"y":277.728,"z":-405.921},"rot":{"x":0.0,"y":318.025,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36014,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2631.106,"y":273.718,"z":-405.774},"rot":{"x":0.0,"y":301.504,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":36006,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2648.303,"y":226.959,"z":-474.868},"rot":{"x":0.0,"y":222.115,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2655.028,"y":228.119,"z":-462.04},"rot":{"x":0.0,"y":73.593,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36028,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2584.838,"y":263.231,"z":-302.131},"rot":{"x":0.0,"y":104.941,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2575.775,"y":263.681,"z":-284.044},"rot":{"x":0.0,"y":19.967,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36027,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2584.0,"y":265.799,"z":-262.651},"rot":{"x":0.0,"y":235.452,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36041,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2611.817,"y":271.829,"z":-330.502},"rot":{"x":0.0,"y":255.504,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2609.928,"y":270.274,"z":-273.746},"rot":{"x":0.0,"y":132.638,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":36019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2781.778,"y":299.695,"z":-352.326},"rot":{"x":0.0,"y":185.251,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":36040,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2722.075,"y":290.694,"z":-325.708},"rot":{"x":0.0,"y":11.696,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2710.933,"y":249.813,"z":-315.583},"rot":{"x":0.0,"y":21.281,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2659.202,"y":262.381,"z":-378.326},"rot":{"x":0.0,"y":228.415,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2635.191,"y":277.393,"z":-338.122},"rot":{"x":0.0,"y":237.485,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":36011,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2598.156,"y":271.889,"z":-350.114},"rot":{"x":0.0,"y":267.21,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2703.511,"y":243.463,"z":-458.414},"rot":{"x":359.642,"y":359.174,"z":359.982}},{"monsterId":0,"gadgetId":70540001,"configId":36036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2703.182,"y":243.05,"z":-458.709},"rot":{"x":359.642,"y":359.174,"z":359.982}},{"monsterId":0,"gadgetId":70540001,"configId":36035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2703.252,"y":242.768,"z":-457.909},"rot":{"x":359.642,"y":359.174,"z":359.982}},{"monsterId":0,"gadgetId":70520005,"configId":36016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2693.507,"y":290.739,"z":-408.985},"rot":{"x":0.0,"y":3.274,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2674.315,"y":236.078,"z":-447.002},"rot":{"x":0.0,"y":287.475,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2722.411,"y":245.515,"z":-508.466},"rot":{"x":0.0,"y":245.485,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2714.449,"y":244.502,"z":-505.252},"rot":{"x":0.0,"y":305.059,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2725.783,"y":249.122,"z":-447.561},"rot":{"x":0.0,"y":77.116,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2739.002,"y":249.264,"z":-461.937},"rot":{"x":0.0,"y":269.496,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2733.466,"y":248.911,"z":-374.37},"rot":{"x":0.0,"y":170.759,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":36009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2766.262,"y":263.508,"z":-383.342},"rot":{"x":0.0,"y":334.659,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":36013,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2759.956,"y":296.291,"z":-346.106},"rot":{"x":0.0,"y":329.03,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":36022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2787.47,"y":269.309,"z":-402.702},"rot":{"x":0.0,"y":252.142,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":36021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2779.531,"y":292.768,"z":-294.197},"rot":{"x":0.0,"y":94.667,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2808.222,"y":296.017,"z":-301.744},"rot":{"x":0.0,"y":185.251,"z":0.0}}]},{"sceneId":3,"groupId":133003012,"blockId":0,"pos":{"x":2178.303,"y":0.0,"z":-1674.1306},"spawns":[{"monsterId":0,"gadgetId":70520013,"configId":12043,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2060.106,"y":220.669,"z":-1696.491},"rot":{"x":0.0,"y":287.048,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2074.029,"y":224.88,"z":-1699.033},"rot":{"x":0.0,"y":60.1,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2084.581,"y":227.439,"z":-1682.108},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2084.248,"y":227.027,"z":-1682.401},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2084.33,"y":226.741,"z":-1681.604},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":12044,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2072.127,"y":223.2,"z":-1636.153},"rot":{"x":0.0,"y":37.075,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2085.173,"y":223.224,"z":-1607.217},"rot":{"x":0.0,"y":37.075,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":12029,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2079.528,"y":225.209,"z":-1590.689},"rot":{"x":0.0,"y":138.914,"z":329.268}},{"monsterId":0,"gadgetId":70520005,"configId":12046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2088.615,"y":222.519,"z":-1643.68},"rot":{"x":0.0,"y":60.1,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2101.294,"y":231.271,"z":-1557.586},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2108.668,"y":233.379,"z":-1678.042},"rot":{"x":0.0,"y":113.892,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":12042,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2118.98,"y":231.248,"z":-1651.35},"rot":{"x":0.0,"y":304.851,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2118.606,"y":231.49,"z":-1622.912},"rot":{"x":0.0,"y":58.501,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":12053,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2113.568,"y":219.047,"z":-1717.477},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":12052,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2113.568,"y":219.047,"z":-1717.669},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12050,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2109.789,"y":224.104,"z":-1725.527},"rot":{"x":0.0,"y":60.1,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":12002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2139.24,"y":196.524,"z":-1684.978},"rot":{"x":49.299,"y":267.483,"z":1.322}},{"monsterId":0,"gadgetId":70520001,"configId":12001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2140.287,"y":196.326,"z":-1679.461},"rot":{"x":29.629,"y":268.109,"z":359.065}},{"monsterId":0,"gadgetId":70540005,"configId":12035,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2135.113,"y":232.515,"z":-1577.646},"rot":{"x":0.0,"y":226.382,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12034,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2131.097,"y":232.408,"z":-1571.356},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2303.156,"y":275.405,"z":-1603.07},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2302.823,"y":274.993,"z":-1603.363},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2302.905,"y":274.707,"z":-1602.566},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12039,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2245.95,"y":249.04,"z":-1619.694},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2279.813,"y":287.746,"z":-1728.04},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2279.48,"y":287.334,"z":-1728.333},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2279.562,"y":287.048,"z":-1727.536},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2294.893,"y":278.887,"z":-1777.705},"rot":{"x":0.0,"y":316.061,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12037,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2258.321,"y":249.727,"z":-1620.101},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12038,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2265.424,"y":245.935,"z":-1561.8},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":12025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2155.009,"y":242.687,"z":-1628.681},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":12024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2155.009,"y":242.687,"z":-1628.873},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12033,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2167.46,"y":247.398,"z":-1598.524},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":12041,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2177.846,"y":247.595,"z":-1606.812},"rot":{"x":0.0,"y":73.253,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":12028,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2217.335,"y":250.815,"z":-1650.127},"rot":{"x":0.0,"y":138.914,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12030,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2285.938,"y":276.383,"z":-1769.368},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":12026,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2249.29,"y":271.505,"z":-1754.079},"rot":{"x":0.0,"y":138.914,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2247.518,"y":271.99,"z":-1748.627},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":12027,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2245.586,"y":271.011,"z":-1751.249},"rot":{"x":0.0,"y":138.914,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2247.185,"y":271.578,"z":-1748.92},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2247.267,"y":271.292,"z":-1748.123},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12031,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2215.951,"y":270.993,"z":-1758.109},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":12040,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2208.588,"y":270.554,"z":-1750.967},"rot":{"x":0.0,"y":272.659,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2226.784,"y":269.633,"z":-1663.073},"rot":{"x":0.0,"y":334.77,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":12009,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2192.438,"y":272.993,"z":-1682.23},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":12008,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2192.438,"y":272.993,"z":-1682.422},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2171.523,"y":248.596,"z":-1655.817},"rot":{"x":0.0,"y":302.866,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2167.232,"y":260.372,"z":-1763.775},"rot":{"x":0.0,"y":39.51,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12032,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2159.483,"y":241.693,"z":-1691.341},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2129.99,"y":202.682,"z":-1749.827},"rot":{"x":358.374,"y":12.951,"z":12.539}}]},{"sceneId":3,"groupId":133004038,"blockId":0,"pos":{"x":2200.1177,"y":0.0,"z":-892.6151},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":38001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2157.464,"y":210.075,"z":-880.713},"rot":{"x":0.0,"y":38.14,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":38002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2181.105,"y":209.436,"z":-940.042},"rot":{"x":0.0,"y":254.133,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38012,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2186.346,"y":234.949,"z":-927.737},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38011,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2186.346,"y":234.949,"z":-927.929},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":38007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2207.136,"y":210.529,"z":-963.525},"rot":{"x":0.0,"y":298.537,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":38004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2202.787,"y":210.161,"z":-939.426},"rot":{"x":0.0,"y":236.677,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":38029,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2214.375,"y":231.227,"z":-849.985},"rot":{"x":0.0,"y":108.874,"z":272.861}},{"monsterId":0,"gadgetId":70540020,"configId":38028,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2216.817,"y":238.438,"z":-846.581},"rot":{"x":0.0,"y":220.247,"z":56.203}},{"monsterId":0,"gadgetId":70540020,"configId":38030,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2217.322,"y":225.174,"z":-847.235},"rot":{"x":0.0,"y":0.0,"z":328.592}},{"monsterId":0,"gadgetId":70520004,"configId":38003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2262.347,"y":209.301,"z":-966.144},"rot":{"x":0.0,"y":30.47,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38015,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2294.418,"y":241.241,"z":-889.805},"rot":{"x":0.941,"y":84.026,"z":1.493}},{"monsterId":0,"gadgetId":70540004,"configId":38014,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2294.227,"y":241.244,"z":-889.825},"rot":{"x":0.941,"y":84.026,"z":1.493}},{"monsterId":0,"gadgetId":70540004,"configId":38018,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2225.756,"y":248.746,"z":-814.839},"rot":{"x":0.0,"y":41.476,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38017,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2225.629,"y":248.746,"z":-814.983},"rot":{"x":0.0,"y":41.476,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":38009,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2263.787,"y":230.19,"z":-807.463},"rot":{"x":0.0,"y":175.263,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2149.534,"y":208.079,"z":-805.334},"rot":{"x":0.0,"y":265.713,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2060.523,"y":206.618,"z":-974.111},"rot":{"x":0.0,"y":321.869,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":38005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2056.199,"y":207.122,"z":-981.395},"rot":{"x":0.0,"y":247.333,"z":0.0}}]},{"sceneId":3,"groupId":133004033,"blockId":0,"pos":{"x":2629.2246,"y":0.0,"z":-539.414},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":33007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2627.899,"y":205.234,"z":-531.0},"rot":{"x":0.0,"y":130.236,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":33008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2630.55,"y":204.456,"z":-547.828},"rot":{"x":0.0,"y":221.445,"z":0.0}}]},{"sceneId":3,"groupId":133004032,"blockId":0,"pos":{"x":2401.4778,"y":0.0,"z":-647.38226},"spawns":[{"monsterId":0,"gadgetId":70520008,"configId":32003,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2511.452,"y":202.4,"z":-558.743},"rot":{"x":0.0,"y":165.043,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":32013,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2314.309,"y":246.96,"z":-660.625},"rot":{"x":0.0,"y":231.757,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":32005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2386.231,"y":229.526,"z":-761.083},"rot":{"x":0.0,"y":85.288,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":32009,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2399.284,"y":239.963,"z":-716.673},"rot":{"x":0.0,"y":34.267,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":32011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2393.56,"y":244.998,"z":-684.504},"rot":{"x":0.0,"y":240.615,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":32010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2399.858,"y":248.298,"z":-665.266},"rot":{"x":0.0,"y":25.042,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":32006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2411.633,"y":250.418,"z":-655.718},"rot":{"x":0.0,"y":236.566,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":32008,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2346.177,"y":252.895,"z":-628.705},"rot":{"x":0.0,"y":109.506,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":32012,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2365.765,"y":253.403,"z":-604.96},"rot":{"x":0.0,"y":186.17,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":32002,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2465.576,"y":202.4,"z":-557.518},"rot":{"x":0.0,"y":190.964,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":32001,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2499.293,"y":202.306,"z":-573.463},"rot":{"x":0.0,"y":124.027,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":32007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2324.594,"y":250.166,"z":-701.329},"rot":{"x":0.0,"y":211.624,"z":0.0}}]},{"sceneId":3,"groupId":133003008,"blockId":0,"pos":{"x":2161.9626,"y":0.0,"z":-1396.1185},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":8065,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2085.349,"y":213.114,"z":-1335.622},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":8064,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2086.048,"y":213.514,"z":-1334.437},"rot":{"x":0.0,"y":138.914,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2086.296,"y":213.3,"z":-1330.18},"rot":{"x":341.723,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2077.789,"y":211.647,"z":-1319.746},"rot":{"x":341.723,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":8002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2075.875,"y":208.949,"z":-1323.513},"rot":{"x":358.847,"y":64.88,"z":356.477}},{"monsterId":0,"gadgetId":70520005,"configId":8024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2103.643,"y":222.032,"z":-1331.727},"rot":{"x":2.811,"y":356.534,"z":1.672}},{"monsterId":0,"gadgetId":70540005,"configId":8041,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2090.66,"y":212.597,"z":-1316.254},"rot":{"x":0.0,"y":334.77,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":8006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2091.817,"y":212.48,"z":-1312.58},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":8005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2091.692,"y":212.626,"z":-1314.183},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2097.922,"y":211.873,"z":-1297.281},"rot":{"x":0.0,"y":61.58,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":8008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2109.675,"y":217.418,"z":-1319.395},"rot":{"x":7.797,"y":64.326,"z":356.445}},{"monsterId":0,"gadgetId":70520004,"configId":8007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2109.979,"y":216.156,"z":-1315.186},"rot":{"x":0.0,"y":268.032,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2089.403,"y":218.958,"z":-1366.37},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":8046,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2145.132,"y":223.778,"z":-1326.823},"rot":{"x":0.0,"y":334.77,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":8025,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2149.637,"y":225.533,"z":-1345.603},"rot":{"x":1.881,"y":125.79,"z":1.521}},{"monsterId":0,"gadgetId":70520005,"configId":8031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2148.407,"y":236.439,"z":-1300.557},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":8074,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2176.773,"y":236.76,"z":-1313.211},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":8075,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2170.279,"y":237.05,"z":-1305.211},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2198.372,"y":234.911,"z":-1323.18},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":8076,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2193.291,"y":235.001,"z":-1302.206},"rot":{"x":0.0,"y":264.869,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":8061,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2267.874,"y":237.603,"z":-1305.285},"rot":{"x":0.0,"y":121.5,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":8066,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2254.967,"y":240.363,"z":-1325.192},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2238.87,"y":238.145,"z":-1348.553},"rot":{"x":0.0,"y":76.642,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2238.508,"y":237.733,"z":-1348.297},"rot":{"x":0.0,"y":76.642,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2239.302,"y":237.447,"z":-1348.193},"rot":{"x":0.0,"y":76.642,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2295.01,"y":242.92,"z":-1337.9},"rot":{"x":0.0,"y":35.562,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":8072,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2063.34,"y":218.773,"z":-1383.922},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":8009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2074.887,"y":220.201,"z":-1384.536},"rot":{"x":349.078,"y":149.058,"z":2.407}},{"monsterId":0,"gadgetId":70520001,"configId":8001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2057.915,"y":220.068,"z":-1402.191},"rot":{"x":4.888,"y":178.123,"z":345.854}},{"monsterId":0,"gadgetId":70520005,"configId":8032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2057.776,"y":228.267,"z":-1535.789},"rot":{"x":3.507,"y":91.416,"z":355.749}},{"monsterId":0,"gadgetId":70520009,"configId":8030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2057.656,"y":225.12,"z":-1444.236},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2077.59,"y":232.769,"z":-1510.527},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2077.257,"y":232.357,"z":-1510.82},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2077.339,"y":232.071,"z":-1510.023},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":8073,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2103.571,"y":230.01,"z":-1450.568},"rot":{"x":0.0,"y":226.382,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2216.611,"y":246.452,"z":-1533.825},"rot":{"x":0.0,"y":90.092,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2216.318,"y":246.04,"z":-1533.491},"rot":{"x":0.0,"y":90.092,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2217.115,"y":245.754,"z":-1533.575},"rot":{"x":0.0,"y":90.092,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":8067,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2131.114,"y":235.047,"z":-1517.118},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":8027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2189.952,"y":226.496,"z":-1360.342},"rot":{"x":0.0,"y":323.714,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":8053,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2231.072,"y":234.252,"z":-1371.431},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2091.587,"y":220.568,"z":-1373.052},"rot":{"x":0.0,"y":78.619,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":8045,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2210.377,"y":235.202,"z":-1389.587},"rot":{"x":0.0,"y":334.77,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":8069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2254.576,"y":238.29,"z":-1382.166},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2272.853,"y":264.427,"z":-1525.9},"rot":{"x":0.0,"y":143.884,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2195.401,"y":236.104,"z":-1416.263},"rot":{"x":0.0,"y":61.58,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":8023,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2166.512,"y":217.444,"z":-1436.838},"rot":{"x":0.0,"y":345.315,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":8022,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2167.919,"y":217.164,"z":-1438.942},"rot":{"x":0.0,"y":345.315,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":8021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2165.604,"y":216.154,"z":-1437.766},"rot":{"x":0.0,"y":345.315,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2107.315,"y":229.676,"z":-1431.42},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2106.982,"y":229.264,"z":-1431.713},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2107.064,"y":228.978,"z":-1430.916},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":8071,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2215.607,"y":220.187,"z":-1452.374},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":8068,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2142.64,"y":222.515,"z":-1487.867},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":8070,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2186.89,"y":217.017,"z":-1512.359},"rot":{"x":345.976,"y":184.102,"z":349.719}},{"monsterId":0,"gadgetId":70540004,"configId":8060,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2170.142,"y":223.153,"z":-1493.132},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":8059,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2170.142,"y":223.153,"z":-1493.324},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":8026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2171.458,"y":215.787,"z":-1487.246},"rot":{"x":3.492,"y":74.784,"z":3.481}},{"monsterId":0,"gadgetId":70520005,"configId":8043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2110.819,"y":226.489,"z":-1408.787},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":8063,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2171.366,"y":220.331,"z":-1409.913},"rot":{"x":0.0,"y":339.748,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":8062,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2172.078,"y":220.694,"z":-1407.242},"rot":{"x":0.0,"y":121.5,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":8050,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2272.332,"y":244.776,"z":-1365.583},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":8049,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2273.159,"y":244.496,"z":-1367.975},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":8048,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2271.218,"y":243.486,"z":-1366.25},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":8051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2277.746,"y":242.721,"z":-1382.003},"rot":{"x":0.0,"y":144.615,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2266.724,"y":241.961,"z":-1392.86},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2266.391,"y":241.549,"z":-1393.153},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2266.473,"y":241.263,"z":-1392.356},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004035,"blockId":0,"pos":{"x":2172.9182,"y":0.0,"z":-77.5526},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":35008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2053.192,"y":275.738,"z":-201.518},"rot":{"x":0.0,"y":358.482,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2067.156,"y":278.818,"z":-122.151},"rot":{"x":0.0,"y":88.37,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35034,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2067.904,"y":208.145,"z":-46.279},"rot":{"x":0.0,"y":25.22,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":35020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2073.976,"y":206.613,"z":-31.855},"rot":{"x":0.0,"y":32.612,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35012,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2064.454,"y":205.626,"z":-2.997},"rot":{"x":0.0,"y":143.567,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35035,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2069.661,"y":205.71,"z":-4.268},"rot":{"x":0.0,"y":85.855,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35015,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2102.624,"y":276.278,"z":-170.326},"rot":{"x":0.0,"y":199.376,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":35044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2092.035,"y":274.57,"z":-141.849},"rot":{"x":0.0,"y":76.264,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":35045,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2095.062,"y":232.686,"z":-63.603},"rot":{"x":0.0,"y":184.811,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2097.666,"y":222.165,"z":-33.624},"rot":{"x":0.0,"y":83.993,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35017,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2106.775,"y":211.637,"z":-23.138},"rot":{"x":0.0,"y":190.277,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2121.43,"y":207.368,"z":-6.655},"rot":{"x":0.0,"y":174.663,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35050,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2143.7,"y":231.879,"z":-84.457},"rot":{"x":0.0,"y":233.78,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35040,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2136.104,"y":231.255,"z":-81.408},"rot":{"x":0.0,"y":142.764,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35016,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2137.984,"y":231.334,"z":-86.078},"rot":{"x":0.0,"y":238.051,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35026,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2140.155,"y":231.367,"z":-77.705},"rot":{"x":0.0,"y":254.301,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35038,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2165.86,"y":215.484,"z":-37.355},"rot":{"x":0.0,"y":207.035,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35025,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2167.126,"y":209.902,"z":-48.7},"rot":{"x":0.0,"y":172.08,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35047,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2166.64,"y":215.356,"z":-29.094},"rot":{"x":0.0,"y":218.878,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35037,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2158.692,"y":215.97,"z":-14.637},"rot":{"x":0.0,"y":157.572,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35030,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2158.525,"y":217.363,"z":-26.156},"rot":{"x":0.0,"y":165.091,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35024,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2165.708,"y":214.965,"z":-29.935},"rot":{"x":0.0,"y":317.261,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35013,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2157.037,"y":217.909,"z":-29.203},"rot":{"x":0.0,"y":282.735,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":35042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2169.349,"y":244.027,"z":-72.645},"rot":{"x":0.0,"y":149.597,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35053,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2174.566,"y":216.209,"z":-12.99},"rot":{"x":0.0,"y":238.274,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35029,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2172.187,"y":216.26,"z":-15.156},"rot":{"x":0.0,"y":195.467,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35033,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2183.959,"y":239.095,"z":-0.762},"rot":{"x":0.0,"y":355.298,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35046,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2199.068,"y":235.176,"z":-88.891},"rot":{"x":0.0,"y":290.115,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2198.812,"y":244.53,"z":-27.624},"rot":{"x":0.0,"y":134.584,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35027,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2189.612,"y":239.69,"z":-4.748},"rot":{"x":0.0,"y":343.673,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35054,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2219.024,"y":235.642,"z":-103.598},"rot":{"x":0.0,"y":157.376,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35052,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2209.074,"y":235.359,"z":-92.879},"rot":{"x":0.0,"y":301.835,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2220.654,"y":235.345,"z":-99.981},"rot":{"x":0.0,"y":45.231,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2218.795,"y":212.855,"z":-74.758},"rot":{"x":0.0,"y":136.44,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":35022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2227.384,"y":217.221,"z":-40.653},"rot":{"x":0.0,"y":78.189,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35031,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2213.911,"y":244.695,"z":-16.804},"rot":{"x":0.0,"y":322.049,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35028,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2212.401,"y":216.621,"z":-29.954},"rot":{"x":0.0,"y":251.485,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2144.842,"y":267.728,"z":-116.582},"rot":{"x":0.0,"y":124.8,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35039,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2189.576,"y":246.053,"z":-117.666},"rot":{"x":0.0,"y":264.002,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":35009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2228.385,"y":212.736,"z":-56.536},"rot":{"x":0.0,"y":122.309,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2228.324,"y":216.42,"z":-49.878},"rot":{"x":0.0,"y":220.539,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35041,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2246.531,"y":227.701,"z":-23.155},"rot":{"x":0.0,"y":34.908,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35048,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2235.583,"y":249.443,"z":-7.488},"rot":{"x":0.0,"y":116.416,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35049,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2135.925,"y":278.392,"z":-141.187},"rot":{"x":0.0,"y":228.904,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":35007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2205.103,"y":252.315,"z":-134.979},"rot":{"x":0.0,"y":262.879,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35032,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2265.676,"y":228.616,"z":-46.33},"rot":{"x":0.0,"y":189.77,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35014,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2271.774,"y":228.991,"z":-41.786},"rot":{"x":0.0,"y":351.676,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":35051,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2282.716,"y":252.207,"z":-12.665},"rot":{"x":0.0,"y":293.193,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":35004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2299.364,"y":283.94,"z":-252.461},"rot":{"x":0.0,"y":67.726,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2263.138,"y":271.914,"z":-228.287},"rot":{"x":0.0,"y":353.203,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":35002,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2228.802,"y":272.228,"z":-235.682},"rot":{"x":0.0,"y":88.692,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":35001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2235.896,"y":271.425,"z":-226.808},"rot":{"x":0.0,"y":55.682,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":35043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2177.697,"y":285.174,"z":-216.153},"rot":{"x":0.0,"y":68.481,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":35018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2179.986,"y":279.128,"z":-205.763},"rot":{"x":0.0,"y":21.182,"z":0.0}}]},{"sceneId":3,"groupId":133003011,"blockId":0,"pos":{"x":2181.873,"y":0.0,"z":-1133.4318},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":11011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2161.269,"y":209.032,"z":-1027.706},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2162.42,"y":209.148,"z":-1030.159},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2133.099,"y":209.987,"z":-1039.462},"rot":{"x":0.0,"y":243.396,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11018,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2134.868,"y":209.707,"z":-1037.651},"rot":{"x":0.0,"y":243.396,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2134.195,"y":208.697,"z":-1040.159},"rot":{"x":0.0,"y":243.396,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11054,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2201.976,"y":211.014,"z":-1046.68},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2193.433,"y":209.482,"z":-1045.304},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11056,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2203.09,"y":212.304,"z":-1046.013},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11055,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2203.917,"y":212.024,"z":-1048.405},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11058,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2078.956,"y":205.166,"z":-1255.917},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2078.874,"y":205.452,"z":-1256.714},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2079.207,"y":205.864,"z":-1256.421},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":11085,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2093.49,"y":203.018,"z":-1215.111},"rot":{"x":0.0,"y":121.5,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2097.553,"y":207.152,"z":-1223.51},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2096.049,"y":207.49,"z":-1218.248},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2101.018,"y":207.876,"z":-1220.126},"rot":{"x":0.0,"y":97.621,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":11087,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2127.485,"y":217.14,"z":-1268.859},"rot":{"x":0.0,"y":315.022,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11028,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2124.653,"y":206.357,"z":-1173.795},"rot":{"x":0.063,"y":307.289,"z":4.083}},{"monsterId":0,"gadgetId":70520001,"configId":11080,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2129.349,"y":211.931,"z":-1226.733},"rot":{"x":0.0,"y":121.5,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11086,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2140.324,"y":213.109,"z":-1209.078},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2167.615,"y":225.438,"z":-1239.032},"rot":{"x":0.0,"y":186.536,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11027,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2172.014,"y":222.166,"z":-1159.612},"rot":{"x":0.0,"y":148.603,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11026,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2170.062,"y":221.886,"z":-1158.001},"rot":{"x":0.0,"y":148.603,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11025,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2172.617,"y":220.876,"z":-1158.463},"rot":{"x":0.0,"y":148.603,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11081,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2193.619,"y":224.096,"z":-1183.293},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2215.142,"y":232.182,"z":-1263.484},"rot":{"x":0.0,"y":269.555,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":11079,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2221.597,"y":226.165,"z":-1202.616},"rot":{"x":0.0,"y":338.394,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":11078,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2220.972,"y":226.227,"z":-1202.875},"rot":{"x":0.0,"y":118.497,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":11077,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2221.006,"y":226.175,"z":-1203.38},"rot":{"x":16.5,"y":0.796,"z":46.58}},{"monsterId":0,"gadgetId":70540003,"configId":11076,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2220.353,"y":226.25,"z":-1203.259},"rot":{"x":16.5,"y":0.796,"z":2.799}},{"monsterId":0,"gadgetId":70520009,"configId":11084,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2114.501,"y":202.33,"z":-1138.616},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11023,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2177.034,"y":221.562,"z":-1148.971},"rot":{"x":0.0,"y":309.497,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11032,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2176.922,"y":218.783,"z":-1150.246},"rot":{"x":12.111,"y":1.014,"z":13.112}},{"monsterId":0,"gadgetId":70540021,"configId":11022,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2179.406,"y":221.282,"z":-1149.854},"rot":{"x":0.0,"y":309.497,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":11021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2176.841,"y":220.272,"z":-1150.255},"rot":{"x":0.0,"y":309.497,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2211.864,"y":208.139,"z":-1112.843},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":11045,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2243.392,"y":227.419,"z":-1161.132},"rot":{"x":0.0,"y":156.209,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":11044,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2240.493,"y":230.977,"z":-1154.907},"rot":{"x":0.0,"y":58.138,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2079.62,"y":206.359,"z":-1107.463},"rot":{"x":7.758,"y":251.574,"z":356.045}},{"monsterId":0,"gadgetId":70520001,"configId":11042,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2117.686,"y":212.676,"z":-1094.881},"rot":{"x":349.094,"y":212.316,"z":5.608}},{"monsterId":0,"gadgetId":70520004,"configId":11070,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2168.872,"y":209.021,"z":-1106.041},"rot":{"x":0.0,"y":91.546,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":11037,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2168.562,"y":207.7,"z":-1093.403},"rot":{"x":3.507,"y":91.416,"z":355.749}},{"monsterId":0,"gadgetId":70520004,"configId":11071,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2176.392,"y":210.948,"z":-1108.178},"rot":{"x":0.0,"y":91.546,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2169.033,"y":210.597,"z":-1111.002},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11035,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2205.736,"y":207.706,"z":-1104.741},"rot":{"x":0.0,"y":91.546,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2258.366,"y":238.848,"z":-1228.192},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":11088,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2254.455,"y":238.082,"z":-1219.711},"rot":{"x":0.0,"y":10.517,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2258.033,"y":238.436,"z":-1228.485},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2258.115,"y":238.15,"z":-1227.688},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":11083,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2282.876,"y":241.403,"z":-1233.536},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":11082,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2272.344,"y":240.372,"z":-1228.328},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":11043,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2285.25,"y":211.599,"z":-1169.783},"rot":{"x":4.458,"y":359.791,"z":357.308}},{"monsterId":0,"gadgetId":70520001,"configId":11041,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2057.895,"y":205.623,"z":-1105.891},"rot":{"x":347.217,"y":290.239,"z":359.048}},{"monsterId":0,"gadgetId":70520001,"configId":11040,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2057.979,"y":204.474,"z":-1108.273},"rot":{"x":356.587,"y":0.748,"z":347.638}},{"monsterId":0,"gadgetId":70520005,"configId":11039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2065.246,"y":212.796,"z":-1074.305},"rot":{"x":354.72,"y":92.836,"z":345.88}},{"monsterId":0,"gadgetId":70520005,"configId":11038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2050.735,"y":211.091,"z":-1053.417},"rot":{"x":354.72,"y":92.836,"z":2.615}},{"monsterId":0,"gadgetId":70540003,"configId":11065,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2295.729,"y":208.698,"z":-1083.271},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":11064,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2296.556,"y":208.418,"z":-1085.662},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":11063,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2294.615,"y":207.408,"z":-1083.938},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11029,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2299.915,"y":205.672,"z":-1077.589},"rot":{"x":1.64,"y":323.275,"z":0.325}},{"monsterId":0,"gadgetId":70540001,"configId":11069,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2287.103,"y":209.355,"z":-1094.733},"rot":{"x":0.0,"y":44.171,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11068,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2286.659,"y":208.943,"z":-1094.711},"rot":{"x":0.0,"y":44.171,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11067,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2287.273,"y":208.657,"z":-1094.196},"rot":{"x":0.0,"y":44.171,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11061,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2284.098,"y":206.62,"z":-1108.442},"rot":{"x":3.507,"y":91.416,"z":355.749}},{"monsterId":0,"gadgetId":70520008,"configId":11051,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2236.735,"y":202.574,"z":-1088.314},"rot":{"x":0.0,"y":122.116,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":11050,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2235.904,"y":202.433,"z":-1087.635},"rot":{"x":0.0,"y":48.378,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2201.627,"y":208.225,"z":-1068.928},"rot":{"x":0.087,"y":91.488,"z":345.941}},{"monsterId":0,"gadgetId":70520008,"configId":11052,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2262.079,"y":204.127,"z":-1087.73},"rot":{"x":0.0,"y":245.669,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11075,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2223.471,"y":205.053,"z":-1085.819},"rot":{"x":0.0,"y":269.367,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11074,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2223.769,"y":204.641,"z":-1086.148},"rot":{"x":0.0,"y":269.367,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11073,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2222.971,"y":204.355,"z":-1086.075},"rot":{"x":0.0,"y":269.367,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2165.945,"y":205.969,"z":-1068.032},"rot":{"x":0.0,"y":61.58,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2125.601,"y":210.729,"z":-1070.157},"rot":{"x":0.0,"y":33.437,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2125.161,"y":210.317,"z":-1070.218},"rot":{"x":0.0,"y":33.437,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2125.669,"y":210.031,"z":-1069.598},"rot":{"x":0.0,"y":33.437,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2110.66,"y":207.631,"z":-1055.435},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2117.57,"y":209.911,"z":-1066.794},"rot":{"x":0.0,"y":183.796,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2119.162,"y":209.819,"z":-1064.029},"rot":{"x":0.0,"y":183.796,"z":0.0}}]},{"sceneId":3,"groupId":133004034,"blockId":0,"pos":{"x":2354.7622,"y":0.0,"z":-900.28467},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":34004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2320.876,"y":209.921,"z":-953.38},"rot":{"x":0.0,"y":358.126,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":34010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2327.467,"y":233.733,"z":-941.68},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":34009,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2327.467,"y":233.733,"z":-941.872},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":34002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2338.619,"y":208.315,"z":-949.105},"rot":{"x":0.0,"y":99.867,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":34013,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2354.349,"y":248.687,"z":-821.081},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":34012,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2354.349,"y":248.687,"z":-821.273},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":34005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2374.171,"y":224.126,"z":-783.573},"rot":{"x":0.0,"y":306.959,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":34007,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2382.522,"y":206.913,"z":-963.826},"rot":{"x":359.667,"y":174.96,"z":302.483}},{"monsterId":0,"gadgetId":70540003,"configId":34006,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2382.675,"y":206.878,"z":-963.751},"rot":{"x":0.0,"y":174.765,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":34003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2385.128,"y":213.121,"z":-863.306},"rot":{"x":0.0,"y":157.148,"z":0.0}}]},{"sceneId":3,"groupId":133003037,"blockId":0,"pos":{"x":2403.9001,"y":0.0,"z":-1640.3955},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":37020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2404.347,"y":286.416,"z":-1580.922},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":37028,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2517.777,"y":256.695,"z":-1598.875},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":37027,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2527.95,"y":255.923,"z":-1603.88},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":37025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2438.776,"y":290.308,"z":-1584.193},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":37018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2409.905,"y":284.615,"z":-1564.245},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":37031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2356.385,"y":285.093,"z":-1579.808},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":37004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2346.384,"y":279.475,"z":-1557.551},"rot":{"x":0.0,"y":50.472,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":37003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2345.946,"y":279.063,"z":-1557.481},"rot":{"x":0.0,"y":50.472,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":37007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2336.84,"y":278.644,"z":-1556.731},"rot":{"x":0.0,"y":334.77,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":37002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2346.613,"y":278.777,"z":-1557.037},"rot":{"x":0.0,"y":50.472,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":37017,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2307.335,"y":299.693,"z":-1713.22},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":37016,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2307.335,"y":299.693,"z":-1713.412},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":37014,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2397.347,"y":312.508,"z":-1682.156},"rot":{"x":0.0,"y":36.879,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":37013,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2397.232,"y":312.508,"z":-1682.309},"rot":{"x":0.0,"y":36.879,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":37019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2409.69,"y":295.414,"z":-1626.341},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":37024,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2441.417,"y":295.081,"z":-1771.038},"rot":{"x":0.0,"y":138.914,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":37023,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2435.728,"y":296.827,"z":-1762.698},"rot":{"x":0.0,"y":138.914,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":37042,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2434.903,"y":318.668,"z":-1715.938},"rot":{"x":0.0,"y":59.74,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":37041,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2435.264,"y":318.865,"z":-1725.436},"rot":{"x":1.089,"y":198.001,"z":0.09}},{"monsterId":0,"gadgetId":70520009,"configId":37032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2440.341,"y":313.338,"z":-1702.668},"rot":{"x":345.976,"y":184.102,"z":349.719}},{"monsterId":0,"gadgetId":70520013,"configId":37043,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2447.928,"y":312.314,"z":-1690.728},"rot":{"x":0.0,"y":22.078,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":37026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2509.257,"y":338.103,"z":-1699.384},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":37039,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2471.012,"y":306.799,"z":-1634.096},"rot":{"x":343.806,"y":123.02,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":37036,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2469.854,"y":311.454,"z":-1644.499},"rot":{"x":0.0,"y":194.591,"z":338.586}},{"monsterId":0,"gadgetId":70520001,"configId":37035,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2472.014,"y":312.086,"z":-1642.239},"rot":{"x":339.118,"y":176.767,"z":344.516}},{"monsterId":0,"gadgetId":70520001,"configId":37037,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2468.789,"y":309.225,"z":-1646.186},"rot":{"x":343.868,"y":145.827,"z":341.416}},{"monsterId":0,"gadgetId":70540001,"configId":37011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2371.263,"y":297.928,"z":-1624.946},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":37010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2370.93,"y":297.516,"z":-1625.239},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":37009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2371.012,"y":297.23,"z":-1624.442},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":37005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2312.782,"y":275.422,"z":-1633.067},"rot":{"x":0.0,"y":58.009,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":37040,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2318.327,"y":275.548,"z":-1628.295},"rot":{"x":0.0,"y":289.798,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":37030,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2314.446,"y":275.44,"z":-1625.297},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":37022,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2317.927,"y":272.81,"z":-1553.364},"rot":{"x":0.0,"y":86.594,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":37021,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2318.522,"y":272.722,"z":-1554.991},"rot":{"x":0.0,"y":339.748,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":37038,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2467.236,"y":311.044,"z":-1650.691},"rot":{"x":0.0,"y":138.914,"z":329.661}},{"monsterId":0,"gadgetId":70520001,"configId":37033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2459.143,"y":301.83,"z":-1640.572},"rot":{"x":324.859,"y":151.609,"z":332.074}},{"monsterId":0,"gadgetId":70520001,"configId":37034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2466.658,"y":299.973,"z":-1630.93},"rot":{"x":336.102,"y":138.914,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":37029,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2465.383,"y":298.063,"z":-1624.137},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":37006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2322.104,"y":286.243,"z":-1766.386},"rot":{"x":0.0,"y":41.961,"z":0.0}}]},{"sceneId":3,"groupId":133007132,"blockId":0,"pos":{"x":2797.0872,"y":0.0,"z":157.77849},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":453,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2799.54,"y":208.785,"z":155.958},"rot":{"x":0.0,"y":305.547,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":452,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2799.029,"y":209.194,"z":160.467},"rot":{"x":0.0,"y":305.547,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":451,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2795.117,"y":208.818,"z":155.092},"rot":{"x":0.0,"y":305.547,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":450,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2794.662,"y":208.925,"z":159.597},"rot":{"x":0.0,"y":221.78,"z":0.0}}]},{"sceneId":3,"groupId":133003036,"blockId":0,"pos":{"x":2448.2576,"y":0.0,"z":-1411.1688},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":36020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2389.173,"y":265.882,"z":-1492.113},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36084,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2402.076,"y":256.587,"z":-1436.938},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":36070,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2405.195,"y":250.643,"z":-1415.525},"rot":{"x":0.0,"y":91.546,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":36071,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2405.12,"y":250.637,"z":-1416.077},"rot":{"x":302.89,"y":91.546,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36077,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2384.415,"y":249.507,"z":-1293.576},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":36096,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2312.641,"y":248.19,"z":-1324.217},"rot":{"x":0.0,"y":210.475,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36029,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2309.51,"y":246.688,"z":-1328.75},"rot":{"x":0.0,"y":204.765,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2453.248,"y":210.141,"z":-1291.758},"rot":{"x":3.925,"y":341.233,"z":1.262}},{"monsterId":0,"gadgetId":70540001,"configId":36061,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2473.848,"y":214.706,"z":-1283.462},"rot":{"x":0.0,"y":349.67,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2473.573,"y":214.294,"z":-1283.81},"rot":{"x":0.0,"y":349.67,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2473.511,"y":214.008,"z":-1283.011},"rot":{"x":0.0,"y":349.67,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2490.148,"y":215.388,"z":-1296.782},"rot":{"x":3.178,"y":91.44,"z":355.75}},{"monsterId":0,"gadgetId":70540021,"configId":36008,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2542.427,"y":218.738,"z":-1404.108},"rot":{"x":0.0,"y":72.89,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36007,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2540.384,"y":218.458,"z":-1405.603},"rot":{"x":0.0,"y":72.89,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36006,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2541.461,"y":217.448,"z":-1403.24},"rot":{"x":0.0,"y":72.89,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2550.17,"y":218.907,"z":-1418.607},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36033,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2517.536,"y":260.721,"z":-1498.804},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36085,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2526.042,"y":269.255,"z":-1450.801},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":36062,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2519.876,"y":221.368,"z":-1437.993},"rot":{"x":340.408,"y":271.956,"z":347.91}},{"monsterId":0,"gadgetId":70540005,"configId":36087,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2507.352,"y":268.24,"z":-1464.082},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36030,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2505.735,"y":269.371,"z":-1458.765},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36090,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2480.351,"y":267.394,"z":-1489.828},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":36076,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2456.089,"y":270.386,"z":-1527.934},"rot":{"x":0.0,"y":138.914,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":36075,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2454.614,"y":270.874,"z":-1528.676},"rot":{"x":0.0,"y":86.594,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36052,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2435.145,"y":269.333,"z":-1508.565},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36051,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2434.812,"y":268.921,"z":-1508.858},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2434.894,"y":268.635,"z":-1508.061},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36083,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2428.796,"y":254.074,"z":-1437.363},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2426.158,"y":268.439,"z":-1461.928},"rot":{"x":0.0,"y":41.961,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":36093,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2421.963,"y":252.543,"z":-1426.129},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":36019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2485.504,"y":243.813,"z":-1428.143},"rot":{"x":0.0,"y":310.185,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":36021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2543.141,"y":218.671,"z":-1429.781},"rot":{"x":0.0,"y":296.94,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2384.816,"y":264.341,"z":-1473.121},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2384.483,"y":263.929,"z":-1473.414},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2384.565,"y":263.643,"z":-1472.617},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":36023,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2362.841,"y":272.621,"z":-1518.673},"rot":{"x":343.018,"y":223.197,"z":344.085}},{"monsterId":0,"gadgetId":70520001,"configId":36022,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2360.074,"y":272.37,"z":-1518.313},"rot":{"x":357.675,"y":155.693,"z":15.656}},{"monsterId":0,"gadgetId":70520001,"configId":36074,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2355.437,"y":256.088,"z":-1439.244},"rot":{"x":0.0,"y":86.594,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36095,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2349.949,"y":253.159,"z":-1428.373},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36072,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2313.775,"y":267.608,"z":-1506.084},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36073,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2324.119,"y":257.695,"z":-1463.138},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":36088,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2321.783,"y":254.2,"z":-1429.113},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36035,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2553.041,"y":258.084,"z":-1508.18},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36025,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2555.918,"y":217.589,"z":-1452.125},"rot":{"x":351.096,"y":359.833,"z":352.115}},{"monsterId":0,"gadgetId":70520004,"configId":36024,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2555.183,"y":218.381,"z":-1461.92},"rot":{"x":1.779,"y":359.861,"z":355.53}},{"monsterId":0,"gadgetId":70540021,"configId":36012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2556.106,"y":220.523,"z":-1450.971},"rot":{"x":0.0,"y":200.293,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2556.16,"y":220.243,"z":-1448.441},"rot":{"x":0.0,"y":200.293,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2557.382,"y":219.233,"z":-1450.732},"rot":{"x":0.0,"y":200.293,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36086,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2543.015,"y":260.42,"z":-1492.039},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36034,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2544.843,"y":259.673,"z":-1494.9},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36032,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2534.232,"y":268.023,"z":-1458.31},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":36065,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2531.914,"y":222.191,"z":-1458.431},"rot":{"x":2.525,"y":55.059,"z":13.636}},{"monsterId":0,"gadgetId":70540005,"configId":36031,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2529.273,"y":269.12,"z":-1451.577},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2513.138,"y":222.731,"z":-1408.942},"rot":{"x":0.0,"y":123.27,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2513.076,"y":222.319,"z":-1408.503},"rot":{"x":0.0,"y":123.27,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2513.698,"y":222.033,"z":-1409.009},"rot":{"x":0.0,"y":123.27,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2518.751,"y":213.891,"z":-1363.681},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2518.418,"y":213.479,"z":-1363.974},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2518.5,"y":213.193,"z":-1363.177},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":36066,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2506.097,"y":222.569,"z":-1408.582},"rot":{"x":15.085,"y":12.554,"z":352.732}},{"monsterId":0,"gadgetId":70520001,"configId":36064,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2506.006,"y":219.254,"z":-1393.313},"rot":{"x":45.043,"y":98.872,"z":346.148}},{"monsterId":0,"gadgetId":70520001,"configId":36063,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2503.981,"y":218.996,"z":-1383.492},"rot":{"x":16.904,"y":15.404,"z":326.251}},{"monsterId":0,"gadgetId":70520005,"configId":36028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2476.347,"y":218.623,"z":-1343.615},"rot":{"x":2.291,"y":92.425,"z":356.901}},{"monsterId":0,"gadgetId":70520004,"configId":36067,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2451.994,"y":222.171,"z":-1371.973},"rot":{"x":4.816,"y":222.486,"z":348.49}},{"monsterId":0,"gadgetId":70540021,"configId":36016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2456.772,"y":223.175,"z":-1369.054},"rot":{"x":0.0,"y":292.424,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2459.298,"y":222.895,"z":-1369.202},"rot":{"x":0.0,"y":292.424,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":36069,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2458.818,"y":220.158,"z":-1369.044},"rot":{"x":4.816,"y":222.486,"z":348.49}},{"monsterId":0,"gadgetId":70540021,"configId":36014,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2456.963,"y":221.885,"z":-1370.339},"rot":{"x":0.0,"y":292.424,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":36068,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2446.795,"y":220.434,"z":-1346.409},"rot":{"x":4.816,"y":222.486,"z":348.49}},{"monsterId":0,"gadgetId":70520004,"configId":36094,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2414.393,"y":251.065,"z":-1383.375},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36091,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2419.721,"y":250.496,"z":-1389.061},"rot":{"x":0.0,"y":261.681,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36082,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2409.086,"y":252.924,"z":-1372.039},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36092,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2389.287,"y":254.882,"z":-1372.384},"rot":{"x":0.0,"y":261.681,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36079,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2406.824,"y":251.844,"z":-1377.146},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36078,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2395.704,"y":255.242,"z":-1356.953},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":36081,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2392.3,"y":255.968,"z":-1350.863},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36039,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2403.464,"y":226.717,"z":-1322.103},"rot":{"x":0.0,"y":30.433,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36038,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2402.965,"y":226.437,"z":-1324.585},"rot":{"x":0.0,"y":30.433,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36037,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2402.165,"y":225.427,"z":-1322.114},"rot":{"x":0.0,"y":30.433,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":36026,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2401.45,"y":224.071,"z":-1320.848},"rot":{"x":5.817,"y":359.475,"z":353.26}},{"monsterId":0,"gadgetId":70540005,"configId":36080,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2385.431,"y":255.396,"z":-1364.541},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":36089,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2313.313,"y":254.21,"z":-1409.353},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2317.073,"y":248.323,"z":-1360.398},"rot":{"x":0.0,"y":161.768,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2317.298,"y":247.911,"z":-1360.015},"rot":{"x":0.0,"y":161.768,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":36002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2317.469,"y":247.625,"z":-1360.798},"rot":{"x":0.0,"y":161.768,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":36018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2359.717,"y":249.45,"z":-1378.625},"rot":{"x":0.0,"y":55.681,"z":0.0}}]},{"sceneId":3,"groupId":133106460,"blockId":0,"pos":{"x":-875.914,"y":0.0,"z":1914.0254},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":460088,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1020.062,"y":254.783,"z":1796.23},"rot":{"x":0.0,"y":76.415,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460084,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-890.022,"y":190.641,"z":1801.995},"rot":{"x":357.406,"y":0.129,"z":354.322}},{"monsterId":0,"gadgetId":70520005,"configId":460090,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1009.314,"y":247.153,"z":1818.578},"rot":{"x":0.0,"y":63.201,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460085,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-917.56,"y":194.252,"z":1808.981},"rot":{"x":357.9,"y":0.045,"z":357.522}},{"monsterId":0,"gadgetId":70520009,"configId":460083,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-894.78,"y":191.988,"z":1816.456},"rot":{"x":355.39,"y":0.552,"z":353.527}},{"monsterId":0,"gadgetId":70540026,"configId":460027,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-857.858,"y":188.694,"z":1816.322},"rot":{"x":0.0,"y":234.675,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":460026,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-858.197,"y":195.923,"z":1819.366},"rot":{"x":0.0,"y":242.181,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":460025,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-871.933,"y":209.865,"z":1819.283},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":460082,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-865.187,"y":158.597,"z":1846.438},"rot":{"x":349.41,"y":0.068,"z":359.263}},{"monsterId":0,"gadgetId":70540026,"configId":460080,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-864.697,"y":154.089,"z":1839.969},"rot":{"x":0.0,"y":235.605,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":460058,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-852.805,"y":203.89,"z":1844.802},"rot":{"x":0.0,"y":178.794,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":460057,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-849.454,"y":194.786,"z":1843.92},"rot":{"x":0.0,"y":189.507,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460101,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-819.367,"y":157.862,"z":1837.978},"rot":{"x":350.683,"y":325.432,"z":2.591}},{"monsterId":0,"gadgetId":70510012,"configId":460012,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-902.999,"y":194.018,"z":1857.126},"rot":{"x":0.0,"y":296.841,"z":348.106}},{"monsterId":0,"gadgetId":70510012,"configId":460008,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-904.426,"y":194.115,"z":1855.035},"rot":{"x":0.0,"y":0.0,"z":337.41}},{"monsterId":0,"gadgetId":70540026,"configId":460081,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-867.108,"y":163.597,"z":1852.3},"rot":{"x":0.0,"y":265.256,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":460006,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-981.62,"y":232.161,"z":1879.917},"rot":{"x":27.338,"y":355.893,"z":356.997}},{"monsterId":0,"gadgetId":70520002,"configId":460005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-978.628,"y":231.523,"z":1884.304},"rot":{"x":4.739,"y":359.252,"z":342.072}},{"monsterId":0,"gadgetId":70520003,"configId":460004,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-979.055,"y":231.281,"z":1886.922},"rot":{"x":27.507,"y":2.606,"z":11.51}},{"monsterId":0,"gadgetId":70520001,"configId":460002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-981.369,"y":231.79,"z":1886.64},"rot":{"x":8.179,"y":356.282,"z":334.751}},{"monsterId":0,"gadgetId":70520003,"configId":460003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-980.62,"y":231.848,"z":1882.095},"rot":{"x":35.343,"y":94.823,"z":0.29}},{"monsterId":0,"gadgetId":70520005,"configId":460038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-936.941,"y":205.875,"z":1882.921},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":460037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-945.466,"y":206.686,"z":1881.665},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":460010,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-901.987,"y":191.807,"z":1877.049},"rot":{"x":357.84,"y":270.013,"z":321.923}},{"monsterId":0,"gadgetId":70540026,"configId":460033,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-865.825,"y":242.507,"z":1872.642},"rot":{"x":0.0,"y":4.321,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":460029,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-865.26,"y":231.952,"z":1875.998},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":460030,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-865.26,"y":231.952,"z":1876.19},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-863.053,"y":249.956,"z":1871.238},"rot":{"x":2.603,"y":359.362,"z":332.442}},{"monsterId":0,"gadgetId":70520005,"configId":460032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-863.853,"y":250.206,"z":1872.322},"rot":{"x":343.161,"y":194.976,"z":21.799}},{"monsterId":0,"gadgetId":70520001,"configId":460001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-982.264,"y":232.485,"z":1888.96},"rot":{"x":0.0,"y":0.0,"z":326.469}},{"monsterId":0,"gadgetId":70540026,"configId":460051,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-878.553,"y":203.296,"z":1906.236},"rot":{"x":0.0,"y":189.437,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":460024,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-889.613,"y":142.104,"z":1904.653},"rot":{"x":0.0,"y":216.994,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":460054,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-852.166,"y":159.352,"z":1906.667},"rot":{"x":53.611,"y":16.032,"z":20.593}},{"monsterId":0,"gadgetId":70540026,"configId":460049,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-862.172,"y":183.361,"z":1905.298},"rot":{"x":0.0,"y":208.15,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":460050,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-867.681,"y":190.855,"z":1906.966},"rot":{"x":0.0,"y":208.396,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":460066,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-850.865,"y":231.676,"z":1892.869},"rot":{"x":0.0,"y":99.531,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":460055,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-842.511,"y":161.275,"z":1907.339},"rot":{"x":59.859,"y":327.423,"z":22.324}},{"monsterId":0,"gadgetId":70540001,"configId":460065,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-847.821,"y":228.298,"z":1900.566},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":460063,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-848.072,"y":227.6,"z":1901.07},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":460064,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-848.154,"y":227.886,"z":1900.273},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460067,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-821.229,"y":174.678,"z":1889.512},"rot":{"x":350.728,"y":0.871,"z":349.287}},{"monsterId":0,"gadgetId":70520005,"configId":460042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-954.158,"y":223.468,"z":1911.806},"rot":{"x":0.0,"y":230.275,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":460046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-935.74,"y":217.822,"z":1916.697},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":460045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-936.073,"y":217.41,"z":1916.404},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":460044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-935.991,"y":217.124,"z":1917.201},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-907.654,"y":200.685,"z":1925.458},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-881.943,"y":171.913,"z":1924.374},"rot":{"x":15.542,"y":332.619,"z":355.668}},{"monsterId":0,"gadgetId":70510012,"configId":460022,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-885.355,"y":141.597,"z":1916.31},"rot":{"x":0.0,"y":218.916,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-881.493,"y":171.781,"z":1923.191},"rot":{"x":6.685,"y":357.634,"z":321.053}},{"monsterId":0,"gadgetId":70520002,"configId":460069,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-853.817,"y":144.212,"z":1919.151},"rot":{"x":23.743,"y":2.569,"z":60.906}},{"monsterId":0,"gadgetId":70520002,"configId":460034,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-836.468,"y":100.461,"z":1923.319},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":460061,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-849.6,"y":231.97,"z":1919.01},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":460035,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-837.052,"y":99.797,"z":1925.747},"rot":{"x":1.006,"y":271.995,"z":351.932}},{"monsterId":0,"gadgetId":70520002,"configId":460068,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-849.276,"y":144.32,"z":1920.638},"rot":{"x":17.945,"y":304.199,"z":346.674}},{"monsterId":0,"gadgetId":70520009,"configId":460053,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-823.698,"y":125.064,"z":1923.853},"rot":{"x":348.528,"y":0.011,"z":359.887}},{"monsterId":0,"gadgetId":70520009,"configId":460089,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-999.266,"y":239.619,"z":1847.104},"rot":{"x":0.0,"y":357.78,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":460079,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-994.527,"y":251.981,"z":1886.552},"rot":{"x":333.887,"y":195.166,"z":353.687}},{"monsterId":0,"gadgetId":70520005,"configId":460092,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1004.522,"y":235.15,"z":1892.378},"rot":{"x":350.932,"y":316.171,"z":343.412}},{"monsterId":0,"gadgetId":70520005,"configId":460091,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-998.234,"y":277.819,"z":1948.034},"rot":{"x":0.0,"y":80.914,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460087,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-977.883,"y":279.572,"z":1985.327},"rot":{"x":0.0,"y":223.635,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":460098,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-954.647,"y":264.071,"z":1982.002},"rot":{"x":2.615,"y":183.118,"z":26.699}},{"monsterId":0,"gadgetId":70540029,"configId":460100,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-935.231,"y":251.342,"z":1975.988},"rot":{"x":0.0,"y":112.568,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":460099,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-932.662,"y":249.962,"z":1977.156},"rot":{"x":19.09,"y":81.495,"z":3.165}},{"monsterId":0,"gadgetId":70510012,"configId":460078,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-886.797,"y":206.789,"z":1976.775},"rot":{"x":0.0,"y":223.059,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":460076,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-885.643,"y":206.302,"z":1973.752},"rot":{"x":0.0,"y":112.086,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-868.568,"y":210.365,"z":1984.979},"rot":{"x":1.99,"y":263.278,"z":2.795}},{"monsterId":0,"gadgetId":70520005,"configId":460040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-868.963,"y":210.42,"z":1986.238},"rot":{"x":356.992,"y":359.957,"z":1.649}},{"monsterId":0,"gadgetId":70520009,"configId":460056,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-816.899,"y":167.179,"z":1946.37},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":460036,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-820.577,"y":98.853,"z":1939.953},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":460059,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-814.199,"y":198.433,"z":1942.619},"rot":{"x":0.0,"y":134.594,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460097,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-924.458,"y":251.643,"z":2009.09},"rot":{"x":332.742,"y":300.724,"z":346.774}},{"monsterId":0,"gadgetId":70520005,"configId":460095,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-889.242,"y":227.021,"z":2010.85},"rot":{"x":347.071,"y":307.927,"z":350.488}},{"monsterId":0,"gadgetId":70520009,"configId":460093,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-882.018,"y":280.887,"z":2043.489},"rot":{"x":8.04,"y":59.203,"z":352.316}},{"monsterId":0,"gadgetId":70520005,"configId":460096,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-842.209,"y":222.86,"z":2028.016},"rot":{"x":2.864,"y":43.77,"z":352.511}},{"monsterId":0,"gadgetId":70540029,"configId":460074,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-813.349,"y":234.639,"z":2031.231},"rot":{"x":0.0,"y":277.637,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":460103,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-803.613,"y":148.793,"z":1879.513},"rot":{"x":7.256,"y":347.935,"z":353.104}},{"monsterId":0,"gadgetId":70520001,"configId":460102,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-801.949,"y":149.148,"z":1877.341},"rot":{"x":23.392,"y":86.998,"z":20.075}},{"monsterId":0,"gadgetId":70520005,"configId":460104,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-804.61,"y":168.652,"z":1912.657},"rot":{"x":14.241,"y":35.021,"z":336.255}},{"monsterId":0,"gadgetId":70540029,"configId":460060,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-803.046,"y":191.772,"z":1944.417},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":460014,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-772.674,"y":138.015,"z":1970.82},"rot":{"x":44.668,"y":262.786,"z":328.773}},{"monsterId":0,"gadgetId":70520003,"configId":460015,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-788.919,"y":138.318,"z":1981.688},"rot":{"x":347.113,"y":335.813,"z":18.062}},{"monsterId":0,"gadgetId":70520003,"configId":460016,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-787.434,"y":138.391,"z":1982.766},"rot":{"x":21.05,"y":339.104,"z":349.693}},{"monsterId":0,"gadgetId":70520018,"configId":460017,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":-787.625,"y":137.743,"z":1981.47},"rot":{"x":335.958,"y":-0.001,"z":332.447}},{"monsterId":0,"gadgetId":70520001,"configId":460018,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-775.432,"y":137.736,"z":1971.211},"rot":{"x":351.31,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":460094,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-775.713,"y":183.107,"z":2010.448},"rot":{"x":7.927,"y":81.662,"z":358.967}},{"monsterId":0,"gadgetId":70540001,"configId":460073,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-777.059,"y":243.397,"z":2032.173},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":460072,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-777.392,"y":242.985,"z":2031.88},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":460071,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-777.309,"y":242.699,"z":2032.677},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":460052,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-769.851,"y":195.733,"z":1965.82},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":460013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-771.241,"y":138.002,"z":1971.694},"rot":{"x":38.86,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":460086,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-810.279,"y":163.423,"z":1863.617},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133002009,"blockId":0,"pos":{"x":1710.3549,"y":0.0,"z":-875.79065},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":9009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1551.754,"y":266.854,"z":-770.923},"rot":{"x":0.0,"y":287.132,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9042,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1682.718,"y":258.084,"z":-768.996},"rot":{"x":0.0,"y":238.154,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1672.457,"y":267.019,"z":-769.627},"rot":{"x":0.0,"y":9.115,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":9029,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1691.25,"y":258.723,"z":-800.493},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1740.369,"y":253.147,"z":-805.954},"rot":{"x":0.0,"y":173.442,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":9040,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1788.999,"y":248.344,"z":-795.566},"rot":{"x":0.0,"y":151.303,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9047,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1741.708,"y":257.069,"z":-828.751},"rot":{"x":0.0,"y":69.932,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9036,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1741.714,"y":257.219,"z":-830.464},"rot":{"x":0.0,"y":359.236,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9044,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1775.386,"y":252.361,"z":-815.359},"rot":{"x":0.0,"y":245.459,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1713.339,"y":263.62,"z":-841.338},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9038,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1729.86,"y":259.932,"z":-838.946},"rot":{"x":0.0,"y":24.054,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":9017,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1777.991,"y":236.122,"z":-850.933},"rot":{"x":0.0,"y":309.514,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":9027,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1741.141,"y":263.147,"z":-863.646},"rot":{"x":0.0,"y":45.904,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":9025,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1749.539,"y":253.207,"z":-868.024},"rot":{"x":23.912,"y":196.521,"z":347.583}},{"monsterId":0,"gadgetId":70520001,"configId":9024,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1749.649,"y":253.315,"z":-866.047},"rot":{"x":9.943,"y":112.3,"z":14.957}},{"monsterId":0,"gadgetId":70540005,"configId":9041,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1785.198,"y":250.255,"z":-995.066},"rot":{"x":0.0,"y":352.859,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":9016,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1779.824,"y":250.973,"z":-991.164},"rot":{"x":0.0,"y":354.982,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9049,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1763.22,"y":253.09,"z":-992.875},"rot":{"x":0.0,"y":195.315,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9048,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1762.103,"y":253.103,"z":-993.574},"rot":{"x":0.0,"y":352.859,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":9018,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1760.37,"y":238.536,"z":-926.384},"rot":{"x":0.0,"y":183.889,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9045,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1755.648,"y":237.245,"z":-874.126},"rot":{"x":0.0,"y":62.917,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9050,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1730.3,"y":256.699,"z":-977.856},"rot":{"x":0.0,"y":22.611,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9046,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1745.198,"y":271.47,"z":-932.118},"rot":{"x":0.0,"y":262.712,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9043,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1745.517,"y":270.553,"z":-945.839},"rot":{"x":0.0,"y":203.529,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9035,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1747.366,"y":240.924,"z":-951.937},"rot":{"x":0.0,"y":51.893,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":9026,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1739.324,"y":251.234,"z":-918.104},"rot":{"x":7.813,"y":45.918,"z":13.287}},{"monsterId":0,"gadgetId":70520005,"configId":9023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1724.225,"y":267.05,"z":-965.741},"rot":{"x":0.0,"y":338.627,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1632.683,"y":266.872,"z":-937.832},"rot":{"x":0.0,"y":226.867,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1693.255,"y":298.635,"z":-920.899},"rot":{"x":0.0,"y":6.044,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1628.918,"y":285.809,"z":-883.924},"rot":{"x":0.0,"y":222.747,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":9006,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1717.819,"y":273.184,"z":-889.709},"rot":{"x":352.318,"y":210.925,"z":358.79}},{"monsterId":0,"gadgetId":70520006,"configId":9008,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1722.725,"y":273.376,"z":-889.732},"rot":{"x":7.555,"y":278.553,"z":350.241}},{"monsterId":0,"gadgetId":70520006,"configId":9003,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1717.125,"y":273.564,"z":-891.907},"rot":{"x":351.948,"y":183.703,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":9002,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1720.29,"y":273.108,"z":-888.861},"rot":{"x":0.0,"y":291.948,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1638.065,"y":270.161,"z":-815.902},"rot":{"x":0.538,"y":207.254,"z":16.743}},{"monsterId":0,"gadgetId":70520024,"configId":9010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1566.688,"y":267.829,"z":-782.979},"rot":{"x":0.0,"y":41.592,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1680.603,"y":263.864,"z":-834.77},"rot":{"x":0.538,"y":207.254,"z":16.743}},{"monsterId":0,"gadgetId":70520005,"configId":9030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1696.048,"y":260.805,"z":-841.335},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1666.508,"y":289.246,"z":-868.313},"rot":{"x":0.0,"y":244.305,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1624.431,"y":285.785,"z":-842.463},"rot":{"x":0.0,"y":242.18,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":9039,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1707.284,"y":266.954,"z":-899.493},"rot":{"x":0.0,"y":150.817,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":9007,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1722.681,"y":274.233,"z":-894.442},"rot":{"x":15.893,"y":10.903,"z":356.941}},{"monsterId":0,"gadgetId":70520006,"configId":9005,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1718.156,"y":274.04,"z":-894.222},"rot":{"x":0.0,"y":122.143,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":9004,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1723.527,"y":273.911,"z":-892.336},"rot":{"x":0.0,"y":291.948,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":9001,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":1720.465,"y":274.413,"z":-895.49},"rot":{"x":0.0,"y":82.051,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":9037,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1665.996,"y":263.454,"z":-851.293},"rot":{"x":0.0,"y":136.639,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":9022,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1652.749,"y":267.565,"z":-838.312},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":9020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1651.635,"y":266.275,"z":-838.979},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":9021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1653.576,"y":267.285,"z":-840.704},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133003033,"blockId":0,"pos":{"x":2873.1265,"y":0.0,"z":-1217.2925},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":33007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2822.363,"y":271.506,"z":-1238.156},"rot":{"x":0.0,"y":78.559,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":33016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2886.742,"y":270.043,"z":-1262.189},"rot":{"x":0.0,"y":124.029,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":33004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2883.66,"y":270.042,"z":-1266.978},"rot":{"x":0.0,"y":244.083,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":33018,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2954.343,"y":272.394,"z":-1257.054},"rot":{"x":0.0,"y":152.368,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":33013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2859.511,"y":270.607,"z":-1262.272},"rot":{"x":0.0,"y":2.352,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":33014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2902.191,"y":270.906,"z":-1240.903},"rot":{"x":0.0,"y":251.202,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":33010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2941.139,"y":315.24,"z":-1130.477},"rot":{"x":0.0,"y":204.766,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":33003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2843.858,"y":272.237,"z":-1237.615},"rot":{"x":0.0,"y":190.763,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":33017,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2841.359,"y":276.957,"z":-1216.094},"rot":{"x":0.0,"y":208.741,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":33012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2858.926,"y":276.376,"z":-1224.008},"rot":{"x":0.0,"y":200.946,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":33002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2844.974,"y":281.305,"z":-1196.032},"rot":{"x":0.0,"y":219.455,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":33001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2839.793,"y":281.021,"z":-1195.571},"rot":{"x":0.0,"y":117.339,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":33005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2841.87,"y":283.901,"z":-1186.754},"rot":{"x":0.0,"y":309.636,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":33006,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2857.439,"y":286.766,"z":-1183.658},"rot":{"x":0.0,"y":87.857,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":33008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2918.73,"y":301.059,"z":-1161.626},"rot":{"x":0.0,"y":243.33,"z":0.0}}]},{"sceneId":3,"groupId":155005384,"blockId":0,"pos":{"x":250.17627,"y":0.0,"z":277.37952},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":384003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":345.942,"y":216.466,"z":123.339},"rot":{"x":352.261,"y":2.648,"z":12.033}},{"monsterId":0,"gadgetId":70590036,"configId":384001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":350.302,"y":217.571,"z":129.341},"rot":{"x":354.766,"y":346.535,"z":13.037}},{"monsterId":0,"gadgetId":70590036,"configId":384005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":151.223,"y":276.952,"z":428.324},"rot":{"x":0.78,"y":103.641,"z":23.563}},{"monsterId":0,"gadgetId":70590036,"configId":384004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":153.238,"y":276.888,"z":428.514},"rot":{"x":27.958,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133222152,"blockId":0,"pos":{"x":-4789.2515,"y":0.0,"z":-4722.7236},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":152001,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4608.001,"y":199.595,"z":-4636.712},"rot":{"x":0.0,"y":80.408,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":152025,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4725.357,"y":202.272,"z":-4662.208},"rot":{"x":354.784,"y":0.604,"z":346.809}},{"monsterId":0,"gadgetId":70510005,"configId":152023,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4724.908,"y":201.663,"z":-4664.548},"rot":{"x":358.263,"y":0.214,"z":345.963}},{"monsterId":0,"gadgetId":70520005,"configId":152013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4722.569,"y":201.48,"z":-4649.332},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152062,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4751.585,"y":203.763,"z":-4645.798},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":152038,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4745.54,"y":199.405,"z":-4612.836},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":152037,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4733.378,"y":199.341,"z":-4615.166},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4756.741,"y":204.058,"z":-4686.109},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":152021,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4773.728,"y":201.695,"z":-4726.458},"rot":{"x":346.522,"y":1.967,"z":343.464}},{"monsterId":0,"gadgetId":70520005,"configId":152061,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4774.173,"y":207.317,"z":-4648.287},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152066,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4781.531,"y":204.133,"z":-4627.012},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152065,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4781.864,"y":203.72,"z":-4627.305},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152064,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4781.782,"y":203.435,"z":-4626.508},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4814.434,"y":202.554,"z":-4618.403},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":152029,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4837.615,"y":202.159,"z":-4615.569},"rot":{"x":13.136,"y":0.617,"z":5.356}},{"monsterId":0,"gadgetId":70520035,"configId":152039,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4833.453,"y":200.648,"z":-4755.098},"rot":{"x":17.863,"y":337.803,"z":32.448}},{"monsterId":0,"gadgetId":70520035,"configId":152031,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4833.391,"y":200.84,"z":-4755.298},"rot":{"x":345.619,"y":357.282,"z":15.497}},{"monsterId":0,"gadgetId":70520035,"configId":152027,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4840.345,"y":200.762,"z":-4755.77},"rot":{"x":16.546,"y":254.609,"z":21.989}},{"monsterId":0,"gadgetId":70520035,"configId":152026,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4840.141,"y":200.95,"z":-4755.708},"rot":{"x":348.179,"y":279.465,"z":5.49}},{"monsterId":0,"gadgetId":70520035,"configId":152049,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4825.587,"y":200.563,"z":-4777.431},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":152048,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4825.452,"y":200.763,"z":-4777.58},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":152046,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4830.671,"y":200.65,"z":-4758.793},"rot":{"x":21.666,"y":42.34,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":152041,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4830.776,"y":200.85,"z":-4758.965},"rot":{"x":0.0,"y":73.768,"z":354.199}},{"monsterId":0,"gadgetId":70520005,"configId":152010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4817.188,"y":202.253,"z":-4757.038},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":152008,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4802.304,"y":206.094,"z":-4807.405},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":152007,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4800.566,"y":205.771,"z":-4809.755},"rot":{"x":0.0,"y":42.193,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4793.825,"y":202.188,"z":-4790.597},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4802.388,"y":205.658,"z":-4740.035},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4802.721,"y":205.246,"z":-4740.328},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4802.639,"y":204.96,"z":-4739.531},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":152035,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4782.871,"y":199.193,"z":-4777.035},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":152036,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4781.318,"y":199.018,"z":-4769.146},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":152005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4846.272,"y":204.1,"z":-4816.364},"rot":{"x":14.678,"y":354.596,"z":325.315}},{"monsterId":0,"gadgetId":70520029,"configId":152034,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4776.154,"y":199.204,"z":-4831.063},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":152032,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4856.849,"y":199.352,"z":-4840.837},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":152033,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4774.955,"y":199.408,"z":-4842.02},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133003029,"blockId":0,"pos":{"x":2703.4827,"y":0.0,"z":-1203.3248},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":29056,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2810.232,"y":262.123,"z":-1251.433},"rot":{"x":0.0,"y":128.363,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2808.75,"y":270.054,"z":-1192.16},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29038,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2641.77,"y":248.794,"z":-1226.291},"rot":{"x":0.0,"y":17.196,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29037,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2641.586,"y":248.682,"z":-1225.113},"rot":{"x":0.0,"y":294.894,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29025,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2635.559,"y":239.437,"z":-1194.054},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29024,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2633.618,"y":238.427,"z":-1192.329},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2666.296,"y":246.604,"z":-1278.744},"rot":{"x":0.0,"y":202.676,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2653.524,"y":249.02,"z":-1259.247},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2653.191,"y":248.608,"z":-1259.54},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":29045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2653.273,"y":248.322,"z":-1258.743},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":29062,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2800.453,"y":259.592,"z":-1259.87},"rot":{"x":0.0,"y":27.743,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":29041,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2800.249,"y":261.432,"z":-1256.683},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":29061,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2800.144,"y":259.55,"z":-1260.096},"rot":{"x":0.0,"y":316.345,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":29042,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2802.19,"y":262.442,"z":-1258.408},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":29043,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2801.363,"y":262.722,"z":-1256.016},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":29060,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2800.36,"y":259.556,"z":-1260.226},"rot":{"x":0.0,"y":228.488,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29063,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2795.404,"y":270.069,"z":-1199.712},"rot":{"x":0.0,"y":172.374,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29049,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2806.906,"y":270.05,"z":-1193.575},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2786.679,"y":269.731,"z":-1184.807},"rot":{"x":0.0,"y":119.875,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2770.084,"y":277.779,"z":-1154.373},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2768.97,"y":276.489,"z":-1155.04},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2770.911,"y":277.499,"z":-1156.765},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29070,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2683.074,"y":235.132,"z":-1133.984},"rot":{"x":0.0,"y":334.176,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29071,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2684.745,"y":234.611,"z":-1131.381},"rot":{"x":339.483,"y":154.695,"z":342.221}},{"monsterId":0,"gadgetId":70520005,"configId":29069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2686.649,"y":234.352,"z":-1124.676},"rot":{"x":0.0,"y":15.522,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29068,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2668.463,"y":237.398,"z":-1116.992},"rot":{"x":0.0,"y":222.87,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29057,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2685.973,"y":232.118,"z":-1095.28},"rot":{"x":0.0,"y":351.581,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29058,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2575.841,"y":220.116,"z":-1163.827},"rot":{"x":0.0,"y":266.521,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2585.158,"y":223.019,"z":-1152.925},"rot":{"x":0.0,"y":34.572,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2569.458,"y":213.439,"z":-1203.957},"rot":{"x":12.135,"y":2.697,"z":22.173}},{"monsterId":0,"gadgetId":70520009,"configId":29022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2730.845,"y":253.313,"z":-1273.098},"rot":{"x":0.0,"y":205.306,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29054,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2782.58,"y":257.589,"z":-1255.277},"rot":{"x":0.0,"y":249.442,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2805.68,"y":244.9,"z":-1078.488},"rot":{"x":0.0,"y":216.127,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":29075,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2756.167,"y":258.529,"z":-1240.109},"rot":{"x":0.0,"y":5.892,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2749.118,"y":262.086,"z":-1199.892},"rot":{"x":0.0,"y":268.729,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29051,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2766.733,"y":271.947,"z":-1165.735},"rot":{"x":0.0,"y":9.787,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29067,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2736.962,"y":251.291,"z":-1235.084},"rot":{"x":0.0,"y":324.392,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29066,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2734.084,"y":251.254,"z":-1233.277},"rot":{"x":0.0,"y":47.484,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29064,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2734.604,"y":251.241,"z":-1232.46},"rot":{"x":0.0,"y":175.637,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29065,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2734.193,"y":251.262,"z":-1233.809},"rot":{"x":0.0,"y":198.452,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2732.868,"y":250.765,"z":-1237.89},"rot":{"x":0.0,"y":45.108,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29050,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2744.061,"y":274.361,"z":-1149.155},"rot":{"x":0.0,"y":254.489,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29055,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2746.213,"y":237.918,"z":-1074.403},"rot":{"x":0.0,"y":341.996,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":29035,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2726.724,"y":253.326,"z":-1225.453},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":29034,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2724.782,"y":252.316,"z":-1223.728},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":29036,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2725.896,"y":253.606,"z":-1223.061},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":29053,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2726.209,"y":271.846,"z":-1152.333},"rot":{"x":0.0,"y":340.842,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2717.818,"y":244.605,"z":-1118.026},"rot":{"x":0.0,"y":55.436,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2713.99,"y":245.147,"z":-1117.554},"rot":{"x":0.0,"y":247.207,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":29074,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2703.38,"y":248.472,"z":-1220.617},"rot":{"x":0.0,"y":185.99,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29059,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2680.778,"y":240.17,"z":-1174.031},"rot":{"x":0.0,"y":330.187,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29039,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2652.298,"y":248.177,"z":-1224.434},"rot":{"x":0.0,"y":168.335,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29026,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2634.732,"y":239.717,"z":-1191.662},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2585.869,"y":220.739,"z":-1263.676},"rot":{"x":0.0,"y":211.009,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29014,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2586.393,"y":220.459,"z":-1261.2},"rot":{"x":0.0,"y":211.009,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29013,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2587.167,"y":219.449,"z":-1263.678},"rot":{"x":0.0,"y":211.009,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":29010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2587.223,"y":218.128,"z":-1261.953},"rot":{"x":11.697,"y":1.81,"z":12.474}},{"monsterId":0,"gadgetId":70540021,"configId":29009,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2581.306,"y":220.409,"z":-1227.953},"rot":{"x":0.0,"y":17.272,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29008,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2581.385,"y":220.129,"z":-1230.483},"rot":{"x":0.0,"y":17.272,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":29007,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2580.044,"y":219.119,"z":-1228.26},"rot":{"x":0.0,"y":17.272,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":29028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2621.432,"y":228.776,"z":-1129.783},"rot":{"x":0.0,"y":56.225,"z":0.0}}]},{"sceneId":3,"groupId":133222153,"blockId":0,"pos":{"x":-4905.9517,"y":0.0,"z":-4702.975},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":153003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4881.754,"y":202.684,"z":-4627.988},"rot":{"x":16.122,"y":1.876,"z":13.191}},{"monsterId":0,"gadgetId":70590036,"configId":153002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4884.451,"y":202.279,"z":-4628.164},"rot":{"x":8.745,"y":50.914,"z":18.477}},{"monsterId":0,"gadgetId":70520029,"configId":153019,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4897.267,"y":199.24,"z":-4614.331},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":153001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4893.161,"y":200.303,"z":-4622.909},"rot":{"x":33.817,"y":358.641,"z":355.533}},{"monsterId":0,"gadgetId":70520029,"configId":153018,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4892.877,"y":199.388,"z":-4614.713},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":153006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4918.106,"y":204.218,"z":-4626.92},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":153011,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4938.215,"y":203.957,"z":-4690.382},"rot":{"x":340.479,"y":11.8,"z":13.013}},{"monsterId":0,"gadgetId":70520033,"configId":153010,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4945.895,"y":204.835,"z":-4679.546},"rot":{"x":347.68,"y":135.606,"z":346.518}},{"monsterId":0,"gadgetId":70540001,"configId":153045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4942.25,"y":203.687,"z":-4609.875},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4942.583,"y":203.275,"z":-4610.168},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4942.501,"y":202.989,"z":-4609.372},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4912.028,"y":202.161,"z":-4730.357},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4911.695,"y":202.573,"z":-4730.064},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4911.946,"y":201.875,"z":-4729.56},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":153005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4999.03,"y":202.392,"z":-4613.956},"rot":{"x":359.166,"y":359.843,"z":21.338}},{"monsterId":0,"gadgetId":70590036,"configId":153004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4993.89,"y":203.394,"z":-4611.849},"rot":{"x":344.224,"y":46.886,"z":334.995}},{"monsterId":0,"gadgetId":70520029,"configId":153022,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4886.956,"y":199.575,"z":-4745.252},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":153020,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4878.057,"y":199.658,"z":-4750.482},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":153013,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4873.292,"y":198.902,"z":-4786.636},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":153014,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4869.226,"y":198.847,"z":-4787.96},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":153021,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4880.653,"y":199.27,"z":-4800.875},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":153015,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4887.552,"y":199.306,"z":-4799.986},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4864.65,"y":201.344,"z":-4805.36},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4864.732,"y":201.63,"z":-4806.158},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4864.399,"y":202.042,"z":-4805.864},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":153017,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4877.575,"y":199.247,"z":-4838.636},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133003028,"blockId":0,"pos":{"x":2698.1545,"y":0.0,"z":-1404.8002},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":28011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2636.415,"y":229.084,"z":-1339.901},"rot":{"x":3.507,"y":91.416,"z":355.749}},{"monsterId":0,"gadgetId":70540004,"configId":28026,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2636.336,"y":228.924,"z":-1376.126},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":28025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2636.336,"y":228.924,"z":-1376.318},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2694.448,"y":262.454,"z":-1380.455},"rot":{"x":0.0,"y":57.856,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":28054,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2782.376,"y":269.621,"z":-1492.758},"rot":{"x":0.0,"y":175.608,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":28053,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2787.061,"y":269.886,"z":-1500.287},"rot":{"x":0.0,"y":108.402,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":28052,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2798.152,"y":270.002,"z":-1459.462},"rot":{"x":0.0,"y":83.871,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2813.457,"y":271.108,"z":-1448.385},"rot":{"x":0.0,"y":30.226,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":28057,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2784.556,"y":267.744,"z":-1421.722},"rot":{"x":344.469,"y":157.254,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":28059,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2782.591,"y":264.664,"z":-1403.137},"rot":{"x":0.0,"y":138.914,"z":350.997}},{"monsterId":0,"gadgetId":70520001,"configId":28058,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2786.022,"y":265.371,"z":-1405.183},"rot":{"x":15.193,"y":117.601,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":28040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2779.101,"y":265.785,"z":-1400.184},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":28039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2778.768,"y":265.373,"z":-1400.477},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":28038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2778.85,"y":265.087,"z":-1399.68},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2772.051,"y":263.941,"z":-1409.266},"rot":{"x":0.0,"y":88.47,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28056,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2801.335,"y":261.065,"z":-1289.557},"rot":{"x":0.0,"y":337.83,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2619.635,"y":226.126,"z":-1326.674},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2575.141,"y":214.389,"z":-1411.845},"rot":{"x":1.049,"y":348.211,"z":4.278}},{"monsterId":0,"gadgetId":70520004,"configId":28002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2625.11,"y":215.822,"z":-1407.263},"rot":{"x":2.005,"y":216.132,"z":2.577}},{"monsterId":0,"gadgetId":70520005,"configId":28035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2637.639,"y":224.608,"z":-1403.417},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2702.197,"y":283.972,"z":-1409.865},"rot":{"x":0.0,"y":39.013,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2693.741,"y":262.454,"z":-1393.967},"rot":{"x":0.0,"y":212.458,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":28018,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2690.181,"y":262.454,"z":-1403.44},"rot":{"x":331.005,"y":123.996,"z":357.485}},{"monsterId":0,"gadgetId":70520001,"configId":28017,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2690.366,"y":262.454,"z":-1401.429},"rot":{"x":13.885,"y":334.297,"z":11.186}},{"monsterId":0,"gadgetId":70520004,"configId":28008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2571.347,"y":213.303,"z":-1430.168},"rot":{"x":356.427,"y":0.112,"z":358.207}},{"monsterId":0,"gadgetId":70540001,"configId":28022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2652.291,"y":230.067,"z":-1420.175},"rot":{"x":0.0,"y":300.849,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":28021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2652.372,"y":229.655,"z":-1420.611},"rot":{"x":0.0,"y":300.849,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":28020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2651.73,"y":229.369,"z":-1420.132},"rot":{"x":0.0,"y":300.849,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2686.698,"y":281.644,"z":-1419.035},"rot":{"x":0.0,"y":305.225,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2595.249,"y":211.334,"z":-1446.77},"rot":{"x":1.825,"y":26.753,"z":2.788}},{"monsterId":0,"gadgetId":70520004,"configId":28003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2615.3,"y":214.695,"z":-1432.802},"rot":{"x":4.816,"y":222.486,"z":348.49}},{"monsterId":0,"gadgetId":70520009,"configId":28042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2731.251,"y":263.607,"z":-1395.804},"rot":{"x":0.0,"y":221.815,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2606.71,"y":223.541,"z":-1489.266},"rot":{"x":2.406,"y":14.045,"z":6.114}},{"monsterId":0,"gadgetId":70540001,"configId":28014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2607.861,"y":218.756,"z":-1473.852},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":28013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2607.943,"y":218.47,"z":-1473.055},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":28015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2608.194,"y":219.168,"z":-1473.559},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2579.141,"y":232.61,"z":-1512.818},"rot":{"x":0.0,"y":91.546,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2702.85,"y":274.148,"z":-1526.205},"rot":{"x":0.0,"y":171.784,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28049,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2756.367,"y":273.946,"z":-1522.465},"rot":{"x":0.0,"y":105.368,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2765.62,"y":271.878,"z":-1430.793},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":28016,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2798.213,"y":256.12,"z":-1312.073},"rot":{"x":0.0,"y":169.016,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28030,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2783.41,"y":263.662,"z":-1294.299},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2784.237,"y":263.382,"z":-1296.691},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":28028,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2782.296,"y":262.372,"z":-1294.966},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2716.87,"y":257.479,"z":-1296.871},"rot":{"x":0.0,"y":96.109,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2759.031,"y":258.872,"z":-1298.787},"rot":{"x":0.0,"y":269.555,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28055,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2727.848,"y":257.28,"z":-1322.153},"rot":{"x":0.399,"y":60.832,"z":359.925}},{"monsterId":0,"gadgetId":70520009,"configId":28044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2703.969,"y":259.688,"z":-1335.692},"rot":{"x":0.0,"y":320.727,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2713.751,"y":259.357,"z":-1336.948},"rot":{"x":0.0,"y":282.937,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2761.2,"y":259.646,"z":-1364.561},"rot":{"x":0.0,"y":277.318,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2724.552,"y":265.101,"z":-1403.047},"rot":{"x":0.0,"y":3.317,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2613.23,"y":232.786,"z":-1503.647},"rot":{"x":0.0,"y":137.115,"z":350.85}},{"monsterId":0,"gadgetId":70520004,"configId":28004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2581.916,"y":216.118,"z":-1462.428},"rot":{"x":1.099,"y":276.945,"z":3.92}},{"monsterId":0,"gadgetId":70520005,"configId":28023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2577.025,"y":214.028,"z":-1388.742},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155005383,"blockId":0,"pos":{"x":323.70044,"y":0.0,"z":446.0555},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":383008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":591.711,"y":190.606,"z":796.945},"rot":{"x":11.155,"y":287.39,"z":359.506}},{"monsterId":0,"gadgetId":70520002,"configId":383007,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":592.509,"y":190.44,"z":797.146},"rot":{"x":9.259,"y":352.789,"z":358.834}},{"monsterId":0,"gadgetId":70520002,"configId":383009,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":597.099,"y":189.444,"z":812.287},"rot":{"x":0.0,"y":243.507,"z":351.579}},{"monsterId":0,"gadgetId":70520002,"configId":383010,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":597.861,"y":189.243,"z":812.899},"rot":{"x":0.0,"y":328.473,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":383001,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":160.727,"y":305.708,"z":191.957},"rot":{"x":5.623,"y":166.172,"z":331.712}},{"monsterId":0,"gadgetId":70520002,"configId":383004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":153.059,"y":304.194,"z":191.996},"rot":{"x":0.0,"y":301.835,"z":10.468}},{"monsterId":0,"gadgetId":70520002,"configId":383002,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":153.799,"y":304.224,"z":192.642},"rot":{"x":6.719,"y":237.449,"z":38.28}},{"monsterId":0,"gadgetId":70520002,"configId":383003,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":159.932,"y":305.454,"z":192.91},"rot":{"x":5.206,"y":286.169,"z":21.556}},{"monsterId":0,"gadgetId":70520002,"configId":383006,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":115.437,"y":295.975,"z":235.574},"rot":{"x":346.723,"y":75.07,"z":353.21}},{"monsterId":0,"gadgetId":70520002,"configId":383005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":114.87,"y":295.441,"z":236.199},"rot":{"x":349.307,"y":13.75,"z":37.173}}]},{"sceneId":3,"groupId":133222154,"blockId":0,"pos":{"x":-4905.4526,"y":0.0,"z":-4600.502},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":154004,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4865.3,"y":199.04,"z":-4595.966},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":154005,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4872.36,"y":199.031,"z":-4601.718},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":154001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4978.697,"y":203.878,"z":-4603.822},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133222155,"blockId":0,"pos":{"x":-4767.444,"y":0.0,"z":-4466.6816},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":155049,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4679.549,"y":198.575,"z":-4546.561},"rot":{"x":0.0,"y":228.033,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":155054,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4717.845,"y":215.882,"z":-4468.972},"rot":{"x":0.0,"y":256.437,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":155048,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4738.091,"y":199.159,"z":-4535.677},"rot":{"x":0.0,"y":191.695,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":155081,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4737.934,"y":202.031,"z":-4501.787},"rot":{"x":21.666,"y":274.918,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":155080,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4737.734,"y":202.232,"z":-4501.765},"rot":{"x":0.0,"y":306.346,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":155078,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4741.4,"y":202.718,"z":-4498.425},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":155077,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4741.265,"y":202.919,"z":-4498.574},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520025,"configId":155010,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4755.142,"y":199.618,"z":-4532.801},"rot":{"x":0.0,"y":198.014,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":155008,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4759.885,"y":199.524,"z":-4537.121},"rot":{"x":0.0,"y":106.095,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":155009,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4764.932,"y":199.391,"z":-4531.101},"rot":{"x":0.0,"y":174.45,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":155060,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4756.917,"y":207.984,"z":-4471.772},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":155059,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4756.781,"y":208.185,"z":-4471.921},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":155057,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4763.87,"y":205.376,"z":-4470.908},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":155056,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4763.734,"y":205.577,"z":-4471.057},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":155016,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4758.492,"y":210.1,"z":-4463.761},"rot":{"x":22.186,"y":320.901,"z":2.74}},{"monsterId":0,"gadgetId":70520035,"configId":155015,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4758.338,"y":210.3,"z":-4463.891},"rot":{"x":359.281,"y":352.901,"z":354.244}},{"monsterId":0,"gadgetId":70520029,"configId":155047,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4772.04,"y":198.751,"z":-4514.055},"rot":{"x":0.0,"y":212.83,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":155068,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4784.312,"y":211.957,"z":-4432.037},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":155072,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4790.872,"y":211.895,"z":-4419.771},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":155071,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4790.736,"y":212.096,"z":-4419.92},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":155069,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4784.447,"y":211.756,"z":-4431.888},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520033,"configId":155053,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4625.486,"y":215.844,"z":-4425.836},"rot":{"x":0.0,"y":25.356,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":155052,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-4628.686,"y":216.26,"z":-4428.231},"rot":{"x":0.0,"y":35.534,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":155046,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4793.237,"y":199.092,"z":-4473.071},"rot":{"x":0.0,"y":226.593,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":155063,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4792.98,"y":205.568,"z":-4443.156},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":155062,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4792.845,"y":205.769,"z":-4443.305},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":155066,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4797.93,"y":204.878,"z":-4431.33},"rot":{"x":21.666,"y":39.423,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":155065,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4798.027,"y":205.079,"z":-4431.505},"rot":{"x":0.0,"y":70.851,"z":354.199}},{"monsterId":0,"gadgetId":70520035,"configId":155084,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4835.481,"y":202.326,"z":-4402.096},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":155083,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4835.346,"y":202.526,"z":-4402.245},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520029,"configId":155045,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4844.828,"y":198.937,"z":-4398.628},"rot":{"x":0.0,"y":21.399,"z":0.0}},{"monsterId":0,"gadgetId":70520035,"configId":155087,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4826.315,"y":203.653,"z":-4406.838},"rot":{"x":21.666,"y":328.572,"z":5.608}},{"monsterId":0,"gadgetId":70520035,"configId":155086,"level":0,"poseId":0,"gatherItemId":101208,"pos":{"x":-4826.18,"y":203.853,"z":-4406.987},"rot":{"x":0.0,"y":0.0,"z":354.199}},{"monsterId":0,"gadgetId":70520029,"configId":155044,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4849.069,"y":197.693,"z":-4385.618},"rot":{"x":0.0,"y":72.724,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":155050,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4669.488,"y":198.461,"z":-4542.464},"rot":{"x":0.0,"y":21.733,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":155001,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4857.785,"y":199.102,"z":-4595.415},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133003030,"blockId":0,"pos":{"x":2882.6702,"y":0.0,"z":-1836.4663},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":30001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2863.995,"y":260.291,"z":-1809.18},"rot":{"x":0.0,"y":320.835,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":30013,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2886.933,"y":259.005,"z":-1794.496},"rot":{"x":0.0,"y":287.048,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2869.74,"y":258.222,"z":-1819.255},"rot":{"x":0.0,"y":81.545,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":30003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2870.008,"y":256.673,"z":-1827.146},"rot":{"x":0.0,"y":149.702,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2913.567,"y":235.619,"z":-1793.755},"rot":{"x":0.0,"y":32.205,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2854.71,"y":259.36,"z":-1867.845},"rot":{"x":0.0,"y":13.328,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2912.141,"y":247.498,"z":-1854.02},"rot":{"x":0.0,"y":271.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2913.717,"y":247.732,"z":-1855.868},"rot":{"x":0.0,"y":40.248,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2841.757,"y":263.92,"z":-1874.837},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2841.424,"y":263.508,"z":-1875.13},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2841.506,"y":263.222,"z":-1874.333},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":30002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2928.336,"y":240.693,"z":-1827.258},"rot":{"x":0.0,"y":59.898,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":30014,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2936.877,"y":237.33,"z":-1800.937},"rot":{"x":0.0,"y":263.565,"z":0.0}}]},{"sceneId":3,"groupId":133003025,"blockId":0,"pos":{"x":2713.2568,"y":0.0,"z":-1608.5204},"spawns":[{"monsterId":0,"gadgetId":70540021,"configId":25021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2594.572,"y":229.169,"z":-1556.62},"rot":{"x":341.92,"y":249.625,"z":325.651}},{"monsterId":0,"gadgetId":70540021,"configId":25020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2595.053,"y":229.256,"z":-1555.248},"rot":{"x":354.587,"y":39.225,"z":354.499}},{"monsterId":0,"gadgetId":70540021,"configId":25019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2596.464,"y":229.105,"z":-1554.753},"rot":{"x":321.185,"y":358.695,"z":3.302}},{"monsterId":0,"gadgetId":70540021,"configId":25015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2596.796,"y":231.578,"z":-1552.452},"rot":{"x":0.0,"y":160.255,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25014,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2599.206,"y":230.568,"z":-1553.419},"rot":{"x":0.0,"y":160.255,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2670.461,"y":270.17,"z":-1554.707},"rot":{"x":0.0,"y":245.056,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":25027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2744.923,"y":281.787,"z":-1558.431},"rot":{"x":0.0,"y":3.098,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2779.932,"y":261.275,"z":-1678.722},"rot":{"x":0.0,"y":150.594,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25008,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2776.671,"y":261.124,"z":-1679.324},"rot":{"x":0.0,"y":291.978,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2786.038,"y":261.495,"z":-1668.808},"rot":{"x":0.0,"y":208.96,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2769.219,"y":260.638,"z":-1660.749},"rot":{"x":0.0,"y":67.059,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25025,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2787.317,"y":298.167,"z":-1613.971},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25023,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2786.203,"y":296.877,"z":-1614.638},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2775.332,"y":293.444,"z":-1596.919},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2774.999,"y":293.032,"z":-1597.212},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2775.081,"y":292.746,"z":-1596.415},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2782.038,"y":293.967,"z":-1588.384},"rot":{"x":0.0,"y":173.246,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":25059,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2785.276,"y":293.602,"z":-1554.397},"rot":{"x":0.0,"y":141.28,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2780.523,"y":291.926,"z":-1552.934},"rot":{"x":0.0,"y":204.102,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25054,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2802.643,"y":262.168,"z":-1685.546},"rot":{"x":0.0,"y":246.898,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":25066,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2788.657,"y":261.641,"z":-1669.473},"rot":{"x":0.0,"y":108.787,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25057,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2788.05,"y":261.528,"z":-1662.278},"rot":{"x":0.0,"y":268.249,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2796.005,"y":297.784,"z":-1619.414},"rot":{"x":0.0,"y":191.349,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":25024,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2788.144,"y":297.887,"z":-1616.363},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2793.183,"y":296.954,"z":-1621.25},"rot":{"x":0.0,"y":219.734,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25006,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2789.527,"y":296.129,"z":-1609.696},"rot":{"x":0.0,"y":206.742,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2796.742,"y":298.373,"z":-1609.998},"rot":{"x":0.0,"y":119.519,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":25016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2740.641,"y":258.497,"z":-1672.649},"rot":{"x":355.888,"y":136.127,"z":344.518}},{"monsterId":0,"gadgetId":70520005,"configId":25053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2745.371,"y":258.984,"z":-1653.776},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":25052,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2746.266,"y":259.055,"z":-1652.934},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25009,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2729.728,"y":260.405,"z":-1638.619},"rot":{"x":0.0,"y":59.283,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2810.175,"y":260.662,"z":-1640.883},"rot":{"x":0.0,"y":180.362,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25036,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2744.807,"y":283.574,"z":-1608.243},"rot":{"x":0.0,"y":298.373,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25035,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2745.024,"y":283.69,"z":-1610.288},"rot":{"x":0.0,"y":234.95,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2732.622,"y":280.917,"z":-1597.976},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2732.54,"y":281.203,"z":-1598.773},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2732.873,"y":281.615,"z":-1598.48},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25034,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2745.899,"y":283.792,"z":-1607.697},"rot":{"x":0.0,"y":210.148,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":25060,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2599.181,"y":259.07,"z":-1705.525},"rot":{"x":0.0,"y":138.914,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25061,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2560.599,"y":253.615,"z":-1627.403},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":25062,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2607.33,"y":250.377,"z":-1631.879},"rot":{"x":0.0,"y":184.102,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25018,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2615.841,"y":226.005,"z":-1619.546},"rot":{"x":345.53,"y":355.633,"z":335.258}},{"monsterId":0,"gadgetId":70520005,"configId":25037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2650.072,"y":199.105,"z":-1628.352},"rot":{"x":0.0,"y":0.0,"z":337.819}},{"monsterId":0,"gadgetId":70540005,"configId":25002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2751.661,"y":285.143,"z":-1599.136},"rot":{"x":0.0,"y":83.356,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25051,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2748.749,"y":285.896,"z":-1584.629},"rot":{"x":0.0,"y":298.14,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25050,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2749.359,"y":285.921,"z":-1582.244},"rot":{"x":0.0,"y":260.93,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25049,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2749.401,"y":285.915,"z":-1582.694},"rot":{"x":0.0,"y":118.497,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2621.32,"y":232.004,"z":-1539.515},"rot":{"x":26.098,"y":302.555,"z":0.377}},{"monsterId":0,"gadgetId":70540001,"configId":25044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2714.025,"y":275.81,"z":-1541.177},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2713.692,"y":275.398,"z":-1541.47},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":25042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2713.774,"y":275.112,"z":-1540.673},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":25040,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2605.587,"y":231.295,"z":-1573.234},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":25039,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2605.587,"y":231.295,"z":-1573.426},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":25058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2657.161,"y":267.661,"z":-1583.786},"rot":{"x":0.0,"y":302.324,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25056,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2706.559,"y":273.969,"z":-1586.281},"rot":{"x":0.0,"y":254.267,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2700.772,"y":273.564,"z":-1596.808},"rot":{"x":0.0,"y":58.501,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":25017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2561.43,"y":231.17,"z":-1585.13},"rot":{"x":345.53,"y":355.633,"z":335.258}},{"monsterId":0,"gadgetId":70540005,"configId":25064,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2582.316,"y":254.922,"z":-1646.848},"rot":{"x":0.0,"y":226.382,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":25065,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2636.254,"y":254.234,"z":-1689.932},"rot":{"x":0.0,"y":250.269,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":25063,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2639.734,"y":253.963,"z":-1689.085},"rot":{"x":0.0,"y":226.382,"z":0.0}}]},{"sceneId":3,"groupId":133003024,"blockId":0,"pos":{"x":2906.0364,"y":0.0,"z":-1685.5746},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":24016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2831.526,"y":254.742,"z":-1728.449},"rot":{"x":0.0,"y":76.092,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24039,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2893.322,"y":240.34,"z":-1721.903},"rot":{"x":0.0,"y":0.0,"z":338.87}},{"monsterId":0,"gadgetId":70540004,"configId":24038,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2893.322,"y":240.34,"z":-1722.095},"rot":{"x":0.0,"y":0.0,"z":338.87}},{"monsterId":0,"gadgetId":70520004,"configId":24003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2918.661,"y":224.808,"z":-1720.993},"rot":{"x":2.971,"y":200.125,"z":3.576}},{"monsterId":0,"gadgetId":70520009,"configId":24015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2883.281,"y":254.367,"z":-1746.805},"rot":{"x":0.0,"y":148.359,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2849.844,"y":252.073,"z":-1767.877},"rot":{"x":0.0,"y":273.612,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2867.888,"y":253.292,"z":-1753.216},"rot":{"x":0.0,"y":70.051,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24008,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2876.868,"y":252.94,"z":-1760.264},"rot":{"x":0.0,"y":319.618,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2913.176,"y":230.267,"z":-1768.284},"rot":{"x":0.0,"y":30.144,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2852.417,"y":252.361,"z":-1772.799},"rot":{"x":0.0,"y":145.101,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2899.972,"y":235.974,"z":-1783.916},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2899.639,"y":235.562,"z":-1784.208},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2899.721,"y":235.276,"z":-1783.411},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2903.498,"y":234.441,"z":-1695.304},"rot":{"x":3.304,"y":69.446,"z":4.565}},{"monsterId":0,"gadgetId":70540001,"configId":24030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2897.392,"y":252.395,"z":-1672.046},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2892.085,"y":252.124,"z":-1672.319},"rot":{"x":0.0,"y":101.22,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2897.725,"y":252.807,"z":-1671.753},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2897.474,"y":252.109,"z":-1671.249},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2910.71,"y":250.574,"z":-1675.445},"rot":{"x":0.0,"y":216.037,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2929.65,"y":236.471,"z":-1791.383},"rot":{"x":0.0,"y":46.869,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2938.763,"y":224.77,"z":-1739.971},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2938.681,"y":225.056,"z":-1740.768},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2939.014,"y":225.468,"z":-1740.475},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24052,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2930.192,"y":223.021,"z":-1747.044},"rot":{"x":0.0,"y":136.066,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2950.174,"y":235.29,"z":-1762.631},"rot":{"x":0.0,"y":205.038,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2818.428,"y":305.263,"z":-1613.623},"rot":{"x":0.0,"y":7.106,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2847.239,"y":266.292,"z":-1634.811},"rot":{"x":0.0,"y":256.326,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2838.136,"y":269.731,"z":-1597.365},"rot":{"x":3.177,"y":312.11,"z":0.651}},{"monsterId":0,"gadgetId":70520009,"configId":24042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2861.912,"y":275.498,"z":-1552.039},"rot":{"x":0.0,"y":301.687,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24009,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2882.957,"y":253.865,"z":-1643.2},"rot":{"x":0.0,"y":252.896,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24049,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2880.003,"y":255.945,"z":-1622.56},"rot":{"x":0.0,"y":344.284,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24054,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2874.005,"y":276.879,"z":-1568.331},"rot":{"x":0.0,"y":223.636,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24055,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2874.075,"y":272.838,"z":-1542.464},"rot":{"x":0.0,"y":55.643,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2897.316,"y":255.641,"z":-1610.458},"rot":{"x":0.0,"y":149.768,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2911.991,"y":250.707,"z":-1667.665},"rot":{"x":0.0,"y":93.704,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2916.578,"y":230.475,"z":-1670.831},"rot":{"x":0.0,"y":36.867,"z":328.718}},{"monsterId":0,"gadgetId":70520001,"configId":24011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2922.121,"y":228.107,"z":-1660.077},"rot":{"x":0.0,"y":144.263,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2921.441,"y":251.233,"z":-1640.533},"rot":{"x":0.0,"y":20.634,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":24056,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2912.751,"y":261.778,"z":-1541.949},"rot":{"x":0.0,"y":225.512,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2937.287,"y":228.859,"z":-1663.131},"rot":{"x":344.523,"y":318.803,"z":33.244}},{"monsterId":0,"gadgetId":70520005,"configId":24051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2934.639,"y":255.366,"z":-1597.793},"rot":{"x":0.0,"y":61.214,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2945.63,"y":255.357,"z":-1598.531},"rot":{"x":0.0,"y":346.077,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":24057,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2928.163,"y":263.374,"z":-1574.433},"rot":{"x":0.0,"y":299.027,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2956.894,"y":241.309,"z":-1654.905},"rot":{"x":0.0,"y":170.206,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24006,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2951.81,"y":250.39,"z":-1650.828},"rot":{"x":0.0,"y":264.873,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2842.631,"y":261.746,"z":-1682.472},"rot":{"x":0.0,"y":130.683,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2876.56,"y":239.154,"z":-1711.554},"rot":{"x":3.76,"y":208.364,"z":2.808}},{"monsterId":0,"gadgetId":70520004,"configId":24001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2942.374,"y":225.983,"z":-1701.861},"rot":{"x":3.272,"y":161.636,"z":0.819}},{"monsterId":0,"gadgetId":70520005,"configId":24047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2953.652,"y":240.021,"z":-1693.128},"rot":{"x":0.0,"y":298.003,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24053,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2949.867,"y":220.762,"z":-1731.211},"rot":{"x":0.0,"y":170.299,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2970.844,"y":240.394,"z":-1718.991},"rot":{"x":0.0,"y":316.97,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2970.103,"y":239.891,"z":-1677.949},"rot":{"x":0.0,"y":91.324,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2995.495,"y":238.83,"z":-1718.163},"rot":{"x":0.0,"y":102.298,"z":0.0}}]},{"sceneId":3,"groupId":133003026,"blockId":0,"pos":{"x":2886.1663,"y":0.0,"z":-1404.4067},"spawns":[{"monsterId":0,"gadgetId":70520008,"configId":26011,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2818.427,"y":256.2,"z":-1332.958},"rot":{"x":0.0,"y":357.632,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":26010,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2826.412,"y":255.795,"z":-1337.196},"rot":{"x":0.0,"y":181.828,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2826.683,"y":262.547,"z":-1284.396},"rot":{"x":0.0,"y":195.413,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":26017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2821.14,"y":274.741,"z":-1535.227},"rot":{"x":0.0,"y":107.898,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2831.559,"y":276.326,"z":-1506.746},"rot":{"x":0.0,"y":214.159,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2858.461,"y":265.296,"z":-1519.595},"rot":{"x":0.0,"y":3.802,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26006,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2886.734,"y":262.505,"z":-1499.376},"rot":{"x":0.0,"y":201.674,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2881.413,"y":264.388,"z":-1498.864},"rot":{"x":0.0,"y":7.33,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2908.72,"y":257.354,"z":-1503.075},"rot":{"x":0.0,"y":343.647,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":26020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2838.194,"y":272.689,"z":-1488.392},"rot":{"x":0.0,"y":144.295,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2886.244,"y":263.945,"z":-1488.508},"rot":{"x":0.0,"y":252.913,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2915.632,"y":255.665,"z":-1490.757},"rot":{"x":0.0,"y":255.189,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":26029,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2892.937,"y":278.334,"z":-1466.279},"rot":{"x":0.0,"y":292.682,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26008,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2892.218,"y":277.326,"z":-1470.179},"rot":{"x":0.0,"y":47.451,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2903.258,"y":278.118,"z":-1468.894},"rot":{"x":0.0,"y":73.024,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2861.763,"y":271.733,"z":-1442.482},"rot":{"x":0.0,"y":286.434,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2890.274,"y":282.17,"z":-1446.307},"rot":{"x":0.0,"y":208.537,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":26016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2942.175,"y":260.725,"z":-1392.654},"rot":{"x":0.0,"y":14.961,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2896.871,"y":267.984,"z":-1354.462},"rot":{"x":0.0,"y":296.631,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":26018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2888.483,"y":269.923,"z":-1341.448},"rot":{"x":0.0,"y":344.092,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2908.262,"y":269.609,"z":-1345.701},"rot":{"x":0.0,"y":154.583,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2964.657,"y":266.239,"z":-1339.113},"rot":{"x":0.0,"y":84.267,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":26012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2852.872,"y":263.664,"z":-1313.662},"rot":{"x":0.0,"y":165.375,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26015,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2849.085,"y":267.04,"z":-1285.86},"rot":{"x":0.0,"y":145.35,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26014,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2849.274,"y":266.902,"z":-1284.846},"rot":{"x":0.0,"y":266.672,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26013,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2849.991,"y":266.908,"z":-1285.657},"rot":{"x":0.0,"y":11.871,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":26023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2976.533,"y":262.145,"z":-1373.11},"rot":{"x":0.0,"y":270.8,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":26009,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2984.982,"y":268.232,"z":-1317.25},"rot":{"x":0.0,"y":282.19,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":26019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2995.561,"y":269.213,"z":-1314.799},"rot":{"x":0.0,"y":119.006,"z":0.0}}]},{"sceneId":3,"groupId":133225201,"blockId":0,"pos":{"x":-5956.9556,"y":0.0,"z":-2670.275},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":201001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-5952.321,"y":170.19,"z":-2669.676},"rot":{"x":325.369,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":201002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-5953.652,"y":170.61,"z":-2669.647},"rot":{"x":356.258,"y":46.79,"z":346.326}},{"monsterId":0,"gadgetId":70590036,"configId":201003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5963.487,"y":172.649,"z":-2669.636},"rot":{"x":320.759,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":201004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5956.392,"y":169.72,"z":-2671.377},"rot":{"x":353.526,"y":268.007,"z":7.789}},{"monsterId":0,"gadgetId":70520002,"configId":201005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-5958.927,"y":170.238,"z":-2671.038},"rot":{"x":352.518,"y":66.4,"z":343.405}}]},{"sceneId":3,"groupId":133225205,"blockId":0,"pos":{"x":-6211.1,"y":0.0,"z":-2915.327},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":205004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6218.047,"y":225.284,"z":-2912.281},"rot":{"x":333.707,"y":278.633,"z":331.071}},{"monsterId":0,"gadgetId":70520002,"configId":205006,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6204.061,"y":224.019,"z":-2916.183},"rot":{"x":38.291,"y":27.571,"z":17.929}},{"monsterId":0,"gadgetId":70520002,"configId":205005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6206.26,"y":223.99,"z":-2916.049},"rot":{"x":38.291,"y":27.571,"z":17.929}},{"monsterId":0,"gadgetId":70590036,"configId":205003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6211.815,"y":225.008,"z":-2918.744},"rot":{"x":28.173,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":205002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6208.281,"y":224.909,"z":-2918.593},"rot":{"x":-0.001,"y":61.801,"z":14.763}},{"monsterId":0,"gadgetId":70520001,"configId":205001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6218.14,"y":224.678,"z":-2910.112},"rot":{"x":0.0,"y":0.0,"z":328.669}}]},{"sceneId":3,"groupId":133217013,"blockId":0,"pos":{"x":-4434.486,"y":0.0,"z":-3765.573},"spawns":[{"monsterId":0,"gadgetId":70590041,"configId":13003,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-4434.486,"y":200.982,"z":-3765.573},"rot":{"x":0.0,"y":190.947,"z":0.0}}]},{"sceneId":3,"groupId":133225206,"blockId":0,"pos":{"x":-6066.8794,"y":0.0,"z":-2963.9363},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":206004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6079.577,"y":200.166,"z":-2964.922},"rot":{"x":7.031,"y":344.34,"z":10.08}},{"monsterId":0,"gadgetId":70520001,"configId":206001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6076.717,"y":200.438,"z":-2963.478},"rot":{"x":350.844,"y":284.703,"z":12.196}},{"monsterId":0,"gadgetId":70590036,"configId":206006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6061.82,"y":201.539,"z":-2962.495},"rot":{"x":335.345,"y":0.0,"z":33.716}},{"monsterId":0,"gadgetId":70520002,"configId":206005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6052.772,"y":200.72,"z":-2967.276},"rot":{"x":3.629,"y":256.444,"z":14.708}},{"monsterId":0,"gadgetId":70520001,"configId":206003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6069.612,"y":200.944,"z":-2963.122},"rot":{"x":327.257,"y":309.653,"z":11.923}},{"monsterId":0,"gadgetId":70590036,"configId":206002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6060.781,"y":201.681,"z":-2962.323},"rot":{"x":341.035,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133005029,"blockId":0,"pos":{"x":1661.8464,"y":0.0,"z":-2639.0618},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":29007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1607.09,"y":205.031,"z":-2676.018},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29012,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1597.454,"y":205.215,"z":-2629.57},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29013,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1615.998,"y":203.423,"z":-2615.545},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29014,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1626.7,"y":205.762,"z":-2599.563},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1665.759,"y":209.391,"z":-2637.474},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29008,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1672.215,"y":207.419,"z":-2694.268},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29009,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1682.423,"y":211.08,"z":-2671.531},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1681.126,"y":204.552,"z":-2631.767},"rot":{"x":0.0,"y":225.736,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1671.86,"y":204.006,"z":-2622.377},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1678.181,"y":204.16,"z":-2629.159},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":29011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1670.742,"y":202.431,"z":-2611.021},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1700.757,"y":209.682,"z":-2643.932},"rot":{"x":0.0,"y":11.099,"z":345.324}},{"monsterId":0,"gadgetId":70520001,"configId":29004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1698.513,"y":208.954,"z":-2641.681},"rot":{"x":0.0,"y":62.488,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":29003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1697.03,"y":208.811,"z":-2642.956},"rot":{"x":29.423,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133005031,"blockId":0,"pos":{"x":1456.075,"y":0.0,"z":-2091.2556},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":31008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1455.13,"y":332.94,"z":-2098.481},"rot":{"x":0.0,"y":159.367,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":31006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1463.893,"y":330.694,"z":-2052.891},"rot":{"x":14.88,"y":252.514,"z":10.287}},{"monsterId":0,"gadgetId":70520001,"configId":31005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1494.752,"y":331.122,"z":-2060.533},"rot":{"x":14.88,"y":252.514,"z":10.287}},{"monsterId":0,"gadgetId":70540021,"configId":31004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1441.589,"y":335.742,"z":-2117.84},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":31003,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1442.416,"y":335.462,"z":-2120.232},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":31002,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1440.475,"y":334.452,"z":-2118.507},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1438.698,"y":332.079,"z":-2076.44},"rot":{"x":0.0,"y":182.049,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1471.646,"y":336.2,"z":-2085.121},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133005030,"blockId":0,"pos":{"x":1576.5902,"y":0.0,"z":-2073.179},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":30006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1565.966,"y":335.706,"z":-2079.646},"rot":{"x":3.617,"y":296.06,"z":17.669}},{"monsterId":0,"gadgetId":70520001,"configId":30005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1565.048,"y":335.029,"z":-2072.308},"rot":{"x":14.88,"y":252.514,"z":10.287}},{"monsterId":0,"gadgetId":70540021,"configId":30003,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1567.083,"y":336.398,"z":-2054.027},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":30002,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1565.142,"y":335.388,"z":-2052.302},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":30004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1566.256,"y":336.678,"z":-2051.635},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1581.771,"y":337.371,"z":-2057.159},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1581.438,"y":336.959,"z":-2057.452},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":30008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1581.52,"y":336.673,"z":-2056.655},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":30012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1571.607,"y":336.672,"z":-2120.651},"rot":{"x":14.88,"y":252.514,"z":10.287}},{"monsterId":0,"gadgetId":70520001,"configId":30011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1620.072,"y":344.127,"z":-2129.955},"rot":{"x":14.88,"y":252.514,"z":10.287}}]},{"sceneId":3,"groupId":133225184,"blockId":0,"pos":{"x":-6468.0806,"y":0.0,"z":-2525.8572},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":184003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6475.089,"y":229.345,"z":-2534.337},"rot":{"x":0.0,"y":0.0,"z":28.734}},{"monsterId":0,"gadgetId":70590036,"configId":184006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6473.271,"y":229.422,"z":-2531.022},"rot":{"x":347.259,"y":47.765,"z":30.372}},{"monsterId":0,"gadgetId":70520002,"configId":184005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6468.839,"y":230.546,"z":-2530.582},"rot":{"x":0.0,"y":63.67,"z":36.112}},{"monsterId":0,"gadgetId":70520002,"configId":184004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6466.178,"y":228.304,"z":-2520.034},"rot":{"x":0.0,"y":0.0,"z":36.112}},{"monsterId":0,"gadgetId":70520001,"configId":184002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6462.843,"y":230.77,"z":-2520.443},"rot":{"x":326.654,"y":55.552,"z":6.492}},{"monsterId":0,"gadgetId":70520001,"configId":184001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6462.265,"y":230.801,"z":-2518.724},"rot":{"x":0.0,"y":49.135,"z":25.949}}]},{"sceneId":3,"groupId":133222112,"blockId":0,"pos":{"x":-4661.5103,"y":0.0,"z":-4258.879},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":112001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4655.056,"y":101.28,"z":-4252.836},"rot":{"x":0.0,"y":292.106,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":112002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4653.51,"y":101.272,"z":-4255.721},"rot":{"x":0.0,"y":91.892,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":112003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4663.515,"y":100.965,"z":-4250.91},"rot":{"x":0.0,"y":193.359,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":112004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4668.865,"y":100.817,"z":-4266.79},"rot":{"x":0.0,"y":90.977,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":112005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4671.389,"y":100.903,"z":-4264.971},"rot":{"x":0.0,"y":149.463,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":112006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4656.725,"y":101.26,"z":-4262.045},"rot":{"x":0.0,"y":139.617,"z":0.0}}]},{"sceneId":3,"groupId":133225185,"blockId":0,"pos":{"x":-6306.786,"y":0.0,"z":-2438.592},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":185005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6305.115,"y":203.246,"z":-2439.839},"rot":{"x":27.107,"y":85.598,"z":41.46}},{"monsterId":0,"gadgetId":70520002,"configId":185004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6303.497,"y":207.381,"z":-2443.708},"rot":{"x":45.644,"y":0.674,"z":347.322}},{"monsterId":0,"gadgetId":70590036,"configId":185003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6311.255,"y":202.971,"z":-2433.627},"rot":{"x":8.506,"y":72.401,"z":11.556}},{"monsterId":0,"gadgetId":70520001,"configId":185001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6303.508,"y":203.161,"z":-2440.581},"rot":{"x":319.967,"y":168.151,"z":350.834}},{"monsterId":0,"gadgetId":70520001,"configId":185002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6310.554,"y":203.209,"z":-2435.205},"rot":{"x":30.202,"y":62.297,"z":6.274}}]},{"sceneId":3,"groupId":133004028,"blockId":0,"pos":{"x":2679.8718,"y":0.0,"z":-136.4432},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":28014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2643.444,"y":207.947,"z":-31.519},"rot":{"x":0.0,"y":174.856,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2702.723,"y":207.136,"z":-16.106},"rot":{"x":0.0,"y":219.096,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2648.705,"y":207.679,"z":-41.549},"rot":{"x":0.0,"y":342.593,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2755.204,"y":207.385,"z":-11.962},"rot":{"x":0.0,"y":246.559,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2575.176,"y":269.419,"z":-240.363},"rot":{"x":0.0,"y":206.99,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2571.81,"y":251.089,"z":-161.61},"rot":{"x":0.0,"y":185.455,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2738.761,"y":289.103,"z":-209.498},"rot":{"x":0.0,"y":168.12,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":28031,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2757.211,"y":234.8,"z":-156.288},"rot":{"x":0.0,"y":293.357,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":28030,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2790.298,"y":225.318,"z":-134.113},"rot":{"x":0.0,"y":193.774,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2663.35,"y":242.854,"z":-246.534},"rot":{"x":0.0,"y":180.58,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28020,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2633.924,"y":280.216,"z":-242.875},"rot":{"x":0.0,"y":258.563,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2565.245,"y":268.727,"z":-247.845},"rot":{"x":0.0,"y":54.899,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":28018,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2799.661,"y":227.947,"z":-130.812},"rot":{"x":0.0,"y":130.03,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2797.534,"y":216.158,"z":-74.958},"rot":{"x":0.0,"y":255.749,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2768.391,"y":220.196,"z":-113.972},"rot":{"x":0.0,"y":114.558,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2772.069,"y":219.257,"z":-107.076},"rot":{"x":0.0,"y":259.473,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2766.158,"y":212.257,"z":-70.933},"rot":{"x":0.0,"y":33.072,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2731.205,"y":213.77,"z":-116.994},"rot":{"x":0.0,"y":317.396,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2697.88,"y":213.286,"z":-138.71},"rot":{"x":0.0,"y":42.648,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2671.202,"y":208.885,"z":-68.99},"rot":{"x":0.0,"y":24.297,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":28032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2658.65,"y":208.413,"z":-110.277},"rot":{"x":0.0,"y":277.182,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2649.465,"y":207.289,"z":-98.367},"rot":{"x":0.0,"y":24.822,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2680.358,"y":208.578,"z":-117.314},"rot":{"x":0.0,"y":326.844,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":28033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2653.366,"y":238.908,"z":-147.15},"rot":{"x":0.0,"y":359.066,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":28019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2652.837,"y":240.97,"z":-145.197},"rot":{"x":0.0,"y":267.374,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2643.625,"y":212.736,"z":-158.441},"rot":{"x":0.0,"y":271.044,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":28011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2649.941,"y":213.467,"z":-186.193},"rot":{"x":0.0,"y":339.91,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2656.378,"y":213.237,"z":-178.827},"rot":{"x":0.0,"y":327.539,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2684.472,"y":237.496,"z":-189.223},"rot":{"x":0.0,"y":348.967,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2684.254,"y":283.901,"z":-231.03},"rot":{"x":0.0,"y":155.906,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":28025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2609.774,"y":205.897,"z":-57.101},"rot":{"x":0.0,"y":348.077,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2595.78,"y":212.412,"z":-173.459},"rot":{"x":0.0,"y":22.973,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":28002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2566.934,"y":218.352,"z":-147.341},"rot":{"x":0.0,"y":96.465,"z":0.0}}]},{"sceneId":3,"groupId":133106429,"blockId":0,"pos":{"x":-787.3635,"y":0.0,"z":2058.2405},"spawns":[{"monsterId":0,"gadgetId":70540029,"configId":429004,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-786.909,"y":376.913,"z":2058.608},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":429003,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-787.818,"y":377.01,"z":2057.873},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004031,"blockId":0,"pos":{"x":2434.9453,"y":0.0,"z":-355.63907},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":31002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2307.254,"y":244.255,"z":-490.829},"rot":{"x":0.0,"y":24.018,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2315.974,"y":247.1,"z":-472.555},"rot":{"x":0.0,"y":62.909,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":31028,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2318.695,"y":257.547,"z":-446.137},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":31027,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2319.522,"y":257.267,"z":-448.529},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":31026,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2317.581,"y":256.257,"z":-446.804},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2334.744,"y":250.994,"z":-471.559},"rot":{"x":0.0,"y":130.256,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":31019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2344.814,"y":276.966,"z":-388.69},"rot":{"x":0.0,"y":85.713,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31013,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2353.862,"y":264.916,"z":-440.698},"rot":{"x":0.0,"y":55.067,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":31014,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2368.059,"y":269.451,"z":-423.392},"rot":{"x":0.0,"y":170.936,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2386.505,"y":275.014,"z":-416.542},"rot":{"x":0.0,"y":248.524,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2364.488,"y":279.326,"z":-372.159},"rot":{"x":0.0,"y":19.444,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31037,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2443.652,"y":253.986,"z":-385.722},"rot":{"x":0.0,"y":121.181,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2458.938,"y":210.57,"z":-434.47},"rot":{"x":0.0,"y":263.028,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2466.639,"y":211.342,"z":-416.635},"rot":{"x":0.0,"y":202.572,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":31034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2482.66,"y":244.626,"z":-379.415},"rot":{"x":0.0,"y":344.689,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":31036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2470.999,"y":243.096,"z":-388.668},"rot":{"x":0.0,"y":142.947,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31070,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2382.75,"y":281.619,"z":-368.462},"rot":{"x":0.0,"y":254.484,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31064,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2403.52,"y":292.561,"z":-358.844},"rot":{"x":0.0,"y":256.524,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31063,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2403.882,"y":292.149,"z":-359.099},"rot":{"x":0.0,"y":256.524,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31062,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2403.088,"y":291.863,"z":-359.205},"rot":{"x":0.0,"y":256.524,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31071,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2408.397,"y":292.572,"z":-353.764},"rot":{"x":0.0,"y":259.425,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31038,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2449.897,"y":253.674,"z":-371.806},"rot":{"x":0.0,"y":174.765,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":31021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2502.263,"y":211.963,"z":-423.462},"rot":{"x":0.0,"y":228.837,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":31022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2519.257,"y":205.703,"z":-445.335},"rot":{"x":0.0,"y":67.193,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31039,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2525.223,"y":250.87,"z":-411.436},"rot":{"x":0.0,"y":262.02,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31051,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2515.342,"y":248.453,"z":-374.287},"rot":{"x":0.0,"y":72.846,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31045,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2536.509,"y":251.864,"z":-364.451},"rot":{"x":0.0,"y":155.953,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2528.682,"y":254.183,"z":-368.058},"rot":{"x":0.0,"y":314.934,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31068,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2554.774,"y":206.136,"z":-471.592},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31067,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2554.441,"y":205.724,"z":-471.885},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31066,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2554.523,"y":205.438,"z":-471.088},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":31043,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2443.208,"y":301.798,"z":-332.89},"rot":{"x":0.0,"y":203.802,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":31042,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2443.123,"y":299.795,"z":-338.107},"rot":{"x":0.0,"y":355.913,"z":27.024}},{"monsterId":0,"gadgetId":70520005,"configId":31032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2496.397,"y":312.48,"z":-344.146},"rot":{"x":0.0,"y":344.689,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31050,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2537.5,"y":257.7,"z":-333.572},"rot":{"x":0.0,"y":144.609,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31041,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2554.818,"y":263.952,"z":-349.126},"rot":{"x":0.0,"y":123.598,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31040,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2556.547,"y":264.895,"z":-351.313},"rot":{"x":0.0,"y":220.569,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":31031,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2365.729,"y":288.485,"z":-325.448},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":31030,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2365.729,"y":288.485,"z":-325.64},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2361.311,"y":282.114,"z":-316.846},"rot":{"x":0.0,"y":87.785,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2505.844,"y":254.127,"z":-327.439},"rot":{"x":0.0,"y":204.133,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31046,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2505.056,"y":263.006,"z":-266.362},"rot":{"x":0.0,"y":221.671,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31049,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2511.914,"y":254.334,"z":-323.894},"rot":{"x":0.0,"y":288.675,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2520.022,"y":258.58,"z":-293.604},"rot":{"x":0.0,"y":104.896,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2519.825,"y":258.168,"z":-293.207},"rot":{"x":0.0,"y":104.896,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2520.574,"y":257.882,"z":-293.491},"rot":{"x":0.0,"y":104.896,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31052,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2526.138,"y":264.889,"z":-274.382},"rot":{"x":0.0,"y":320.795,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31048,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2537.418,"y":257.567,"z":-290.236},"rot":{"x":0.0,"y":127.18,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31047,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2545.677,"y":261.873,"z":-265.421},"rot":{"x":0.0,"y":5.674,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31044,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2555.48,"y":258.098,"z":-309.687},"rot":{"x":0.0,"y":59.322,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":31035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2466.843,"y":263.18,"z":-278.12},"rot":{"x":0.0,"y":337.728,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31058,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2319.664,"y":282.782,"z":-280.168},"rot":{"x":0.0,"y":171.768,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2315.929,"y":283.815,"z":-275.012},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31005,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2315.596,"y":283.403,"z":-275.305},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2319.343,"y":283.48,"z":-279.705},"rot":{"x":0.0,"y":171.768,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2315.678,"y":283.117,"z":-274.508},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":31059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2319.631,"y":283.068,"z":-279.367},"rot":{"x":0.0,"y":171.768,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":31033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2437.975,"y":301.123,"z":-320.189},"rot":{"x":0.0,"y":326.81,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":31011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2438.334,"y":302.79,"z":-261.671},"rot":{"x":0.0,"y":344.092,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31016,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2390.935,"y":295.747,"z":-312.068},"rot":{"x":0.0,"y":260.264,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31015,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2389.027,"y":295.504,"z":-312.643},"rot":{"x":0.0,"y":260.534,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31018,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2379.655,"y":296.73,"z":-302.218},"rot":{"x":0.0,"y":199.405,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31017,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2378.477,"y":296.42,"z":-302.905},"rot":{"x":0.0,"y":103.145,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2380.177,"y":298.07,"z":-256.632},"rot":{"x":0.0,"y":131.332,"z":0.0}}]},{"sceneId":3,"groupId":133222115,"blockId":0,"pos":{"x":-4986.8545,"y":0.0,"z":-4339.49},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":115007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-4983.064,"y":202.433,"z":-4342.868},"rot":{"x":12.187,"y":226.772,"z":38.779}},{"monsterId":0,"gadgetId":70590036,"configId":115003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4979.736,"y":203.154,"z":-4345.743},"rot":{"x":25.52,"y":207.691,"z":12.444}},{"monsterId":0,"gadgetId":70520001,"configId":115006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-4991.459,"y":204.571,"z":-4343.488},"rot":{"x":325.256,"y":220.48,"z":356.512}},{"monsterId":0,"gadgetId":70590036,"configId":115002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4986.393,"y":202.723,"z":-4330.536},"rot":{"x":23.46,"y":90.603,"z":325.145}},{"monsterId":0,"gadgetId":70590036,"configId":115001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4993.619,"y":204.954,"z":-4334.815},"rot":{"x":336.255,"y":296.339,"z":10.884}}]},{"sceneId":3,"groupId":133004030,"blockId":0,"pos":{"x":2913.2612,"y":0.0,"z":-62.05918},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":30011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2909.095,"y":280.429,"z":-25.229},"rot":{"x":0.0,"y":351.31,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":30010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":3043.75,"y":284.998,"z":-30.75},"rot":{"x":0.0,"y":302.384,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":3059.707,"y":284.708,"z":-18.4},"rot":{"x":0.0,"y":183.039,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2956.833,"y":279.783,"z":-60.949},"rot":{"x":0.0,"y":270.513,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":30004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2836.266,"y":207.512,"z":-29.491},"rot":{"x":0.0,"y":192.578,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2874.08,"y":287.159,"z":-180.941},"rot":{"x":0.0,"y":193.825,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":30003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2928.665,"y":217.888,"z":-41.772},"rot":{"x":0.0,"y":272.548,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":30002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2908.987,"y":218.732,"z":-111.008},"rot":{"x":0.0,"y":55.631,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":30001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2856.253,"y":226.683,"z":-116.642},"rot":{"x":0.0,"y":137.328,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":30007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2851.222,"y":211.249,"z":-49.438},"rot":{"x":0.0,"y":167.078,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":30005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2821.018,"y":207.2,"z":-18.031},"rot":{"x":0.0,"y":175.75,"z":0.0}}]},{"sceneId":3,"groupId":133222116,"blockId":0,"pos":{"x":-4380.0693,"y":0.0,"z":-4159.495},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":116002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4384.783,"y":215.791,"z":-4161.545},"rot":{"x":343.981,"y":67.287,"z":12.535}},{"monsterId":0,"gadgetId":70590036,"configId":116001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4375.356,"y":213.876,"z":-4157.445},"rot":{"x":3.385,"y":295.234,"z":350.806}}]},{"sceneId":3,"groupId":133222117,"blockId":0,"pos":{"x":-4311.743,"y":0.0,"z":-4238.541},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":117005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4317.174,"y":218.525,"z":-4241.644},"rot":{"x":0.0,"y":225.665,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":117002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4312.228,"y":218.09,"z":-4238.268},"rot":{"x":9.413,"y":68.457,"z":352.767}},{"monsterId":0,"gadgetId":70590036,"configId":117001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4315.478,"y":218.64,"z":-4238.883},"rot":{"x":346.823,"y":297.497,"z":353.632}},{"monsterId":0,"gadgetId":70520002,"configId":117004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-4308.682,"y":216.881,"z":-4237.674},"rot":{"x":0.0,"y":166.282,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":117003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4305.155,"y":216.25,"z":-4236.236},"rot":{"x":351.379,"y":284.903,"z":357.421}}]},{"sceneId":3,"groupId":133004024,"blockId":0,"pos":{"x":2193.8342,"y":0.0,"z":-390.37573},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":24056,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2050.031,"y":252.151,"z":-492.862},"rot":{"x":0.0,"y":244.876,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2084.625,"y":245.869,"z":-472.335},"rot":{"x":0.0,"y":124.188,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2080.219,"y":247.259,"z":-460.028},"rot":{"x":0.0,"y":124.188,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2075.266,"y":246.644,"z":-469.324},"rot":{"x":0.0,"y":124.188,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2083.337,"y":248.906,"z":-447.47},"rot":{"x":0.0,"y":124.188,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24023,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2084.808,"y":265.504,"z":-420.521},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24022,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2084.808,"y":265.504,"z":-420.713},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24059,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2085.354,"y":259.291,"z":-405.013},"rot":{"x":14.832,"y":269.541,"z":5.484}},{"monsterId":0,"gadgetId":70540005,"configId":24068,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2061.85,"y":265.549,"z":-373.877},"rot":{"x":0.0,"y":137.165,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24057,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2087.789,"y":259.211,"z":-383.57},"rot":{"x":0.0,"y":87.528,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2081.481,"y":261.997,"z":-390.394},"rot":{"x":0.0,"y":67.077,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24024,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2074.612,"y":260.438,"z":-353.821},"rot":{"x":348.937,"y":353.096,"z":354.821}},{"monsterId":0,"gadgetId":70520005,"configId":24015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2059.392,"y":260.19,"z":-346.275},"rot":{"x":0.0,"y":319.634,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24065,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2084.525,"y":280.254,"z":-336.733},"rot":{"x":0.0,"y":223.16,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2103.845,"y":275.417,"z":-361.262},"rot":{"x":0.0,"y":221.232,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24081,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2105.907,"y":276.825,"z":-291.981},"rot":{"x":0.0,"y":100.668,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24064,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2110.801,"y":275.512,"z":-293.264},"rot":{"x":0.0,"y":276.58,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24063,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2097.977,"y":256.288,"z":-425.017},"rot":{"x":0.0,"y":352.939,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24058,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2124.575,"y":245.195,"z":-427.828},"rot":{"x":326.985,"y":345.758,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2134.636,"y":225.019,"z":-467.578},"rot":{"x":0.0,"y":22.745,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24052,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2155.13,"y":218.541,"z":-493.038},"rot":{"x":0.0,"y":214.787,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24061,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2177.581,"y":211.489,"z":-499.094},"rot":{"x":0.0,"y":272.316,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2196.71,"y":211.7,"z":-507.003},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2196.377,"y":211.288,"z":-507.296},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2196.459,"y":211.002,"z":-506.499},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2194.112,"y":236.652,"z":-463.546},"rot":{"x":0.0,"y":274.986,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2202.871,"y":283.538,"z":-387.884},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24026,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2208.102,"y":221.386,"z":-478.736},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":24027,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2208.124,"y":221.387,"z":-478.555},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24012,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2218.534,"y":239.055,"z":-437.859},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24010,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2217.42,"y":237.765,"z":-438.526},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":24011,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2219.361,"y":238.775,"z":-440.251},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24071,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2209.638,"y":283.174,"z":-403.678},"rot":{"x":0.0,"y":210.066,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24082,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2225.396,"y":289.878,"z":-372.471},"rot":{"x":0.0,"y":255.917,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2245.428,"y":236.548,"z":-477.839},"rot":{"x":0.0,"y":125.5,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24031,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2237.156,"y":254.727,"z":-430.158},"rot":{"x":0.0,"y":280.711,"z":0.337}},{"monsterId":0,"gadgetId":70540005,"configId":24030,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2258.577,"y":254.594,"z":-421.981},"rot":{"x":0.0,"y":98.488,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24028,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2257.846,"y":254.586,"z":-421.57},"rot":{"x":0.0,"y":289.207,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24029,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2258.071,"y":254.572,"z":-422.388},"rot":{"x":0.0,"y":156.205,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2282.378,"y":238.036,"z":-496.533},"rot":{"x":0.0,"y":286.626,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2279.946,"y":240.28,"z":-463.854},"rot":{"x":0.0,"y":353.187,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2274.716,"y":254.339,"z":-394.338},"rot":{"x":0.0,"y":63.778,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2300.999,"y":243.845,"z":-478.01},"rot":{"x":0.0,"y":67.307,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24051,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2292.612,"y":243.252,"z":-455.601},"rot":{"x":0.0,"y":138.068,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24042,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2302.725,"y":246.651,"z":-434.886},"rot":{"x":19.489,"y":204.899,"z":325.869}},{"monsterId":0,"gadgetId":70540001,"configId":24079,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2302.442,"y":256.049,"z":-386.856},"rot":{"x":0.0,"y":55.947,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24078,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2302.013,"y":255.637,"z":-386.744},"rot":{"x":0.0,"y":55.947,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24077,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2302.719,"y":255.351,"z":-386.366},"rot":{"x":0.0,"y":55.947,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24044,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2297.693,"y":270.875,"z":-315.222},"rot":{"x":0.0,"y":265.913,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24045,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2295.876,"y":271.107,"z":-315.219},"rot":{"x":0.0,"y":44.564,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24043,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2296.343,"y":270.903,"z":-316.166},"rot":{"x":0.0,"y":241.197,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24087,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2295.719,"y":271.151,"z":-315.008},"rot":{"x":0.0,"y":234.942,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24086,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2303.933,"y":282.003,"z":-270.479},"rot":{"x":0.0,"y":353.82,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24067,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2302.541,"y":282.309,"z":-264.539},"rot":{"x":0.0,"y":283.423,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2288.519,"y":260.272,"z":-365.719},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":24019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2289.346,"y":259.992,"z":-368.111},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24060,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2248.334,"y":267.806,"z":-307.201},"rot":{"x":0.0,"y":249.668,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2253.097,"y":267.343,"z":-299.017},"rot":{"x":0.0,"y":294.983,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24080,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2265.671,"y":267.97,"z":-279.059},"rot":{"x":0.0,"y":296.528,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2243.706,"y":270.318,"z":-259.781},"rot":{"x":0.0,"y":245.755,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24073,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2175.021,"y":275.208,"z":-336.515},"rot":{"x":0.0,"y":338.521,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24054,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2176.672,"y":279.041,"z":-279.539},"rot":{"x":0.0,"y":351.242,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24083,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2153.589,"y":274.094,"z":-326.238},"rot":{"x":0.0,"y":349.806,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24084,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2135.13,"y":274.036,"z":-297.419},"rot":{"x":0.0,"y":52.858,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24075,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2147.125,"y":276.671,"z":-284.949},"rot":{"x":0.0,"y":127.331,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":24072,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2144.957,"y":276.304,"z":-282.846},"rot":{"x":0.0,"y":122.745,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":24085,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2195.061,"y":283.228,"z":-260.116},"rot":{"x":0.0,"y":9.363,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":24066,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2193.132,"y":282.051,"z":-290.98},"rot":{"x":0.0,"y":155.082,"z":0.0}}]},{"sceneId":3,"groupId":133225190,"blockId":0,"pos":{"x":-6065.143,"y":0.0,"z":-2521.943},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":190006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6070.937,"y":203.001,"z":-2527.408},"rot":{"x":347.259,"y":47.765,"z":30.372}},{"monsterId":0,"gadgetId":70520002,"configId":190004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6062.312,"y":203.557,"z":-2523.179},"rot":{"x":0.0,"y":0.0,"z":36.112}},{"monsterId":0,"gadgetId":70590036,"configId":190003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6070.757,"y":202.825,"z":-2529.619},"rot":{"x":0.0,"y":0.0,"z":28.734}},{"monsterId":0,"gadgetId":70520001,"configId":190002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6061.917,"y":202.251,"z":-2516.147},"rot":{"x":326.654,"y":55.552,"z":6.492}},{"monsterId":0,"gadgetId":70520001,"configId":190001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6059.792,"y":202.449,"z":-2513.362},"rot":{"x":332.626,"y":34.541,"z":21.989}}]},{"sceneId":3,"groupId":133004027,"blockId":0,"pos":{"x":2432.8618,"y":0.0,"z":-142.45619},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":27027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2306.503,"y":299.476,"z":-135.015},"rot":{"x":0.0,"y":243.594,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2304.479,"y":243.353,"z":-18.447},"rot":{"x":0.0,"y":212.091,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27033,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2308.634,"y":230.361,"z":-48.716},"rot":{"x":0.0,"y":251.233,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27013,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2309.129,"y":230.568,"z":-44.29},"rot":{"x":0.0,"y":13.818,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2347.801,"y":240.367,"z":-4.94},"rot":{"x":0.0,"y":296.065,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2352.512,"y":234.511,"z":-19.389},"rot":{"x":0.0,"y":317.51,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2385.538,"y":288.948,"z":-122.937},"rot":{"x":0.0,"y":255.616,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2426.385,"y":274.787,"z":-104.945},"rot":{"x":0.0,"y":160.053,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2477.833,"y":217.917,"z":-67.112},"rot":{"x":0.0,"y":243.33,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2468.872,"y":208.203,"z":-9.657},"rot":{"x":0.0,"y":23.406,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2499.79,"y":208.554,"z":-28.608},"rot":{"x":0.0,"y":198.73,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2517.052,"y":208.75,"z":-21.118},"rot":{"x":0.0,"y":326.897,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2548.167,"y":208.044,"z":-44.275},"rot":{"x":0.0,"y":177.02,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2410.817,"y":296.02,"z":-208.386},"rot":{"x":0.0,"y":256.981,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2411.177,"y":295.608,"z":-208.644},"rot":{"x":0.0,"y":256.981,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27003,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2420.002,"y":297.026,"z":-199.052},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2421.944,"y":298.036,"z":-200.777},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":27005,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2421.116,"y":298.316,"z":-198.385},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":27022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2410.383,"y":295.322,"z":-208.744},"rot":{"x":0.0,"y":256.981,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":27016,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2416.666,"y":299.386,"z":-184.627},"rot":{"x":0.0,"y":278.641,"z":353.67}},{"monsterId":0,"gadgetId":70540004,"configId":27015,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2416.855,"y":299.386,"z":-184.655},"rot":{"x":0.0,"y":278.641,"z":353.67}},{"monsterId":0,"gadgetId":70540005,"configId":27011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2507.398,"y":289.432,"z":-244.261},"rot":{"x":0.0,"y":239.146,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27034,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2506.919,"y":287.739,"z":-230.479},"rot":{"x":0.0,"y":126.996,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2493.545,"y":284.473,"z":-203.388},"rot":{"x":0.0,"y":247.83,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2524.933,"y":264.363,"z":-250.104},"rot":{"x":0.0,"y":70.985,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2518.925,"y":283.023,"z":-188.226},"rot":{"x":0.0,"y":247.83,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2552.414,"y":288.803,"z":-217.777},"rot":{"x":0.0,"y":337.728,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":27012,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2323.558,"y":286.277,"z":-246.879},"rot":{"x":0.0,"y":92.998,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":27028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2534.729,"y":280.069,"z":-147.35},"rot":{"x":0.0,"y":357.126,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":27029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2436.727,"y":298.5,"z":-215.351},"rot":{"x":0.0,"y":42.588,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":27007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2437.921,"y":298.299,"z":-209.608},"rot":{"x":0.0,"y":169.184,"z":0.0}}]},{"sceneId":3,"groupId":133225191,"blockId":0,"pos":{"x":-6387.028,"y":0.0,"z":-2768.9148},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":191002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6392.821,"y":244.429,"z":-2776.702},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":191004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6388.446,"y":245.472,"z":-2772.837},"rot":{"x":15.171,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":191006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6391.883,"y":244.974,"z":-2774.412},"rot":{"x":0.0,"y":0.0,"z":14.523}},{"monsterId":0,"gadgetId":70520002,"configId":191005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6386.211,"y":246.133,"z":-2770.852},"rot":{"x":29.756,"y":255.975,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":191003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6382.41,"y":247.941,"z":-2758.865},"rot":{"x":2.806,"y":316.085,"z":2.911}},{"monsterId":0,"gadgetId":70520001,"configId":191001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6380.399,"y":248.305,"z":-2759.821},"rot":{"x":0.0,"y":0.0,"z":33.598}}]},{"sceneId":3,"groupId":133222120,"blockId":0,"pos":{"x":-4757.226,"y":0.0,"z":-4670.4126},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":120013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4757.618,"y":206.347,"z":-4670.688},"rot":{"x":280.277,"y":359.488,"z":47.873}},{"monsterId":0,"gadgetId":70540001,"configId":120012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4757.185,"y":206.345,"z":-4670.221},"rot":{"x":280.277,"y":125.839,"z":47.873}},{"monsterId":0,"gadgetId":70540001,"configId":120011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4756.876,"y":206.343,"z":-4670.328},"rot":{"x":280.277,"y":228.362,"z":47.873}}]},{"sceneId":3,"groupId":133103348,"blockId":0,"pos":{"x":761.12646,"y":0.0,"z":1469.3915},"spawns":[{"monsterId":0,"gadgetId":70540029,"configId":348002,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":763.719,"y":408.71,"z":1467.169},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":348001,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":758.534,"y":409.741,"z":1471.614},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004023,"blockId":0,"pos":{"x":2131.8948,"y":0.0,"z":-599.0485},"spawns":[{"monsterId":0,"gadgetId":70520013,"configId":23032,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2050.613,"y":222.127,"z":-705.928},"rot":{"x":0.0,"y":144.301,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2060.624,"y":237.626,"z":-624.292},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2060.373,"y":236.928,"z":-623.788},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2060.291,"y":237.214,"z":-624.585},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23002,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2087.069,"y":230.075,"z":-631.807},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":23029,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2068.219,"y":245.719,"z":-521.732},"rot":{"x":0.0,"y":308.123,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2099.035,"y":228.794,"z":-519.324},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23018,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2099.862,"y":228.514,"z":-521.716},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2097.921,"y":227.504,"z":-519.991},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2166.935,"y":209.167,"z":-521.772},"rot":{"x":0.0,"y":338.761,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":23020,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2235.948,"y":202.329,"z":-523.866},"rot":{"x":0.0,"y":106.419,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":23035,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2115.435,"y":225.129,"z":-542.244},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":23034,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":2115.435,"y":225.129,"z":-542.436},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":23021,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":2121.977,"y":213.634,"z":-544.189},"rot":{"x":0.0,"y":52.232,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23023,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2143.572,"y":211.719,"z":-547.146},"rot":{"x":0.0,"y":175.184,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23024,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2158.642,"y":209.816,"z":-535.502},"rot":{"x":348.421,"y":280.112,"z":9.445}},{"monsterId":0,"gadgetId":70520004,"configId":23015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2167.342,"y":208.632,"z":-538.327},"rot":{"x":0.0,"y":74.883,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":23022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2201.59,"y":222.161,"z":-569.1},"rot":{"x":7.906,"y":129.224,"z":352.679}},{"monsterId":0,"gadgetId":70520005,"configId":23028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2301.759,"y":244.81,"z":-668.348},"rot":{"x":0.0,"y":352.607,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":23013,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":2074.235,"y":202.593,"z":-732.79},"rot":{"x":354.731,"y":250.042,"z":13.958}},{"monsterId":0,"gadgetId":70520005,"configId":23025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2075.838,"y":206.735,"z":-690.455},"rot":{"x":0.0,"y":35.562,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23003,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2089.01,"y":231.085,"z":-633.532},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2088.183,"y":231.365,"z":-631.14},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":23012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2130.204,"y":224.445,"z":-615.319},"rot":{"x":336.519,"y":1.953,"z":350.623}},{"monsterId":0,"gadgetId":70540021,"configId":23011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2130.904,"y":223.115,"z":-617.374},"rot":{"x":337.401,"y":311.711,"z":11.42}},{"monsterId":0,"gadgetId":70540021,"configId":23010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2128.889,"y":223.178,"z":-615.451},"rot":{"x":353.446,"y":263.583,"z":24.371}},{"monsterId":0,"gadgetId":70540021,"configId":23041,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2131.011,"y":227.024,"z":-608.723},"rot":{"x":340.222,"y":1.897,"z":349.15}},{"monsterId":0,"gadgetId":70540021,"configId":23040,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2131.7,"y":225.809,"z":-610.852},"rot":{"x":338.747,"y":312.606,"z":7.42}},{"monsterId":0,"gadgetId":70540021,"configId":23039,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":2129.666,"y":225.803,"z":-608.948},"rot":{"x":351.548,"y":263.44,"z":20.879}},{"monsterId":0,"gadgetId":70520001,"configId":23037,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2146.476,"y":213.47,"z":-582.287},"rot":{"x":338.972,"y":164.617,"z":23.328}},{"monsterId":0,"gadgetId":70520001,"configId":23036,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2153.338,"y":213.39,"z":-586.586},"rot":{"x":349.489,"y":104.157,"z":18.318}},{"monsterId":0,"gadgetId":70520009,"configId":23026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2179.624,"y":220.364,"z":-580.844},"rot":{"x":0.0,"y":63.574,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":23030,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2268.36,"y":233.68,"z":-699.807},"rot":{"x":0.0,"y":41.277,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2214.336,"y":220.81,"z":-727.451},"rot":{"x":0.0,"y":310.378,"z":0.0}}]},{"sceneId":3,"groupId":133225196,"blockId":0,"pos":{"x":-5941.113,"y":0.0,"z":-2531.814},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":196006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5934.35,"y":221.595,"z":-2536.24},"rot":{"x":21.76,"y":351.482,"z":11.721}},{"monsterId":0,"gadgetId":70590036,"configId":196002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-5935.671,"y":220.748,"z":-2533.766},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":196005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-5942.57,"y":220.879,"z":-2530.938},"rot":{"x":0.0,"y":255.975,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":196004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-5947.43,"y":221.298,"z":-2527.161},"rot":{"x":36.89,"y":340.43,"z":-0.001}},{"monsterId":0,"gadgetId":70520001,"configId":196001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-5945.543,"y":221.662,"z":-2530.965},"rot":{"x":0.0,"y":287.267,"z":340.962}}]},{"sceneId":3,"groupId":133004016,"blockId":0,"pos":{"x":2146.01,"y":0.0,"z":-494.14624},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":297,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2146.007,"y":219.309,"z":-492.149},"rot":{"x":0.0,"y":48.156,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":295,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2146.011,"y":219.647,"z":-496.158},"rot":{"x":0.0,"y":50.016,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":296,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2144.013,"y":219.662,"z":-494.135},"rot":{"x":0.0,"y":82.707,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":294,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2148.009,"y":219.34,"z":-494.143},"rot":{"x":0.0,"y":327.809,"z":0.0}}]},{"sceneId":3,"groupId":133102320,"blockId":0,"pos":{"x":1436.716,"y":0.0,"z":371.072},"spawns":[{"monsterId":0,"gadgetId":70590021,"configId":320037,"level":0,"poseId":0,"gatherItemId":107003,"pos":{"x":1436.716,"y":199.984,"z":371.072},"rot":{"x":0.0,"y":301.888,"z":0.0}}]},{"sceneId":3,"groupId":133008076,"blockId":0,"pos":{"x":1216.9863,"y":0.0,"z":-861.9197},"spawns":[{"monsterId":0,"gadgetId":70590027,"configId":76014,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1354.463,"y":346.558,"z":-922.587},"rot":{"x":358.151,"y":3.359,"z":340.994}},{"monsterId":0,"gadgetId":70590027,"configId":76012,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1355.205,"y":347.279,"z":-920.836},"rot":{"x":338.13,"y":28.694,"z":18.453}},{"monsterId":0,"gadgetId":70590027,"configId":76011,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1354.795,"y":346.303,"z":-924.936},"rot":{"x":346.547,"y":8.271,"z":8.651}},{"monsterId":0,"gadgetId":70590027,"configId":76025,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1439.368,"y":284.122,"z":-756.807},"rot":{"x":25.307,"y":49.159,"z":339.72}},{"monsterId":0,"gadgetId":70590027,"configId":76024,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1440.106,"y":283.495,"z":-757.73},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590027,"configId":76023,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1431.901,"y":289.657,"z":-759.886},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590027,"configId":76022,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1446.131,"y":280.897,"z":-770.617},"rot":{"x":358.318,"y":21.952,"z":332.308}},{"monsterId":0,"gadgetId":70590027,"configId":76006,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1445.069,"y":281.163,"z":-763.724},"rot":{"x":337.92,"y":338.615,"z":2.854}},{"monsterId":0,"gadgetId":70590027,"configId":76040,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1401.558,"y":270.023,"z":-636.98},"rot":{"x":7.244,"y":277.511,"z":358.431}},{"monsterId":0,"gadgetId":70590027,"configId":76039,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1403.768,"y":268.904,"z":-633.793},"rot":{"x":351.886,"y":248.933,"z":349.005}},{"monsterId":0,"gadgetId":70590027,"configId":76038,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1407.47,"y":268.897,"z":-635.764},"rot":{"x":13.057,"y":22.972,"z":0.751}},{"monsterId":0,"gadgetId":70590027,"configId":76056,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":936.418,"y":204.135,"z":-1162.174},"rot":{"x":351.945,"y":19.368,"z":26.194}},{"monsterId":0,"gadgetId":70590027,"configId":76055,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":930.105,"y":202.058,"z":-1162.631},"rot":{"x":345.268,"y":122.223,"z":353.91}},{"monsterId":0,"gadgetId":70590027,"configId":76054,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":935.35,"y":204.349,"z":-1167.268},"rot":{"x":1.069,"y":137.876,"z":350.482}},{"monsterId":0,"gadgetId":70590027,"configId":76053,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":935.414,"y":204.365,"z":-1166.414},"rot":{"x":10.447,"y":17.282,"z":26.564}},{"monsterId":0,"gadgetId":70590027,"configId":76052,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":930.081,"y":202.451,"z":-1167.521},"rot":{"x":314.08,"y":10.425,"z":19.856}},{"monsterId":0,"gadgetId":70590027,"configId":76021,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1015.005,"y":346.542,"z":-587.342},"rot":{"x":339.383,"y":16.232,"z":6.319}},{"monsterId":0,"gadgetId":70590027,"configId":76020,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1010.905,"y":345.84,"z":-587.396},"rot":{"x":357.643,"y":330.904,"z":15.306}},{"monsterId":0,"gadgetId":70590027,"configId":76019,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1008.324,"y":345.492,"z":-584.688},"rot":{"x":340.325,"y":17.232,"z":30.49}},{"monsterId":0,"gadgetId":70590027,"configId":76018,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1010.074,"y":346.749,"z":-582.264},"rot":{"x":26.843,"y":299.749,"z":9.767}},{"monsterId":0,"gadgetId":70590027,"configId":76030,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1090.938,"y":380.594,"z":-622.42},"rot":{"x":11.338,"y":18.947,"z":12.924}},{"monsterId":0,"gadgetId":70590027,"configId":76036,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1326.801,"y":285.212,"z":-443.206},"rot":{"x":340.214,"y":43.481,"z":355.5}},{"monsterId":0,"gadgetId":70590027,"configId":76034,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1327.234,"y":285.096,"z":-443.846},"rot":{"x":346.973,"y":100.235,"z":345.238}},{"monsterId":0,"gadgetId":70590027,"configId":76032,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1327.147,"y":287.086,"z":-438.156},"rot":{"x":19.168,"y":280.118,"z":15.539}},{"monsterId":0,"gadgetId":70590027,"configId":76033,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1322.621,"y":286.179,"z":-433.639},"rot":{"x":345.818,"y":6.972,"z":8.492}},{"monsterId":0,"gadgetId":70590027,"configId":76035,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1332.67,"y":290.493,"z":-441.04},"rot":{"x":355.914,"y":10.665,"z":19.43}},{"monsterId":0,"gadgetId":70590027,"configId":76037,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1096.976,"y":200.454,"z":-1258.031},"rot":{"x":321.411,"y":2.988,"z":14.421}},{"monsterId":0,"gadgetId":70590027,"configId":76017,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1098.825,"y":199.495,"z":-1260.356},"rot":{"x":354.925,"y":265.927,"z":12.255}},{"monsterId":0,"gadgetId":70590027,"configId":76016,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1104.108,"y":199.383,"z":-1254.992},"rot":{"x":357.281,"y":224.554,"z":356.837}},{"monsterId":0,"gadgetId":70590027,"configId":76015,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1097.915,"y":200.554,"z":-1257.952},"rot":{"x":17.501,"y":114.172,"z":342.982}},{"monsterId":0,"gadgetId":70590027,"configId":76013,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1101.249,"y":199.868,"z":-1256.218},"rot":{"x":0.176,"y":94.961,"z":10.912}},{"monsterId":0,"gadgetId":70590027,"configId":76010,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1263.552,"y":274.756,"z":-1174.76},"rot":{"x":329.272,"y":15.636,"z":18.534}},{"monsterId":0,"gadgetId":70590027,"configId":76009,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1262.977,"y":274.946,"z":-1173.621},"rot":{"x":342.865,"y":12.7,"z":357.075}},{"monsterId":0,"gadgetId":70590027,"configId":76003,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1430.12,"y":283.932,"z":-1014.564},"rot":{"x":337.384,"y":288.681,"z":1.065}},{"monsterId":0,"gadgetId":70590027,"configId":76001,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1428.734,"y":284.317,"z":-1014.556},"rot":{"x":338.442,"y":355.909,"z":4.537}},{"monsterId":0,"gadgetId":70590027,"configId":76002,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1425.473,"y":283.065,"z":-1017.808},"rot":{"x":337.292,"y":6.092,"z":349.454}},{"monsterId":0,"gadgetId":70590027,"configId":76004,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1386.805,"y":287.787,"z":-1032.015},"rot":{"x":11.397,"y":98.018,"z":30.263}},{"monsterId":0,"gadgetId":70590027,"configId":76008,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1259.033,"y":275.653,"z":-1171.235},"rot":{"x":334.425,"y":5.488,"z":4.107}},{"monsterId":0,"gadgetId":70590027,"configId":76007,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1259.653,"y":276.529,"z":-1168.488},"rot":{"x":350.177,"y":65.309,"z":345.4}},{"monsterId":0,"gadgetId":70590027,"configId":76005,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1266.12,"y":276.227,"z":-1169.236},"rot":{"x":18.003,"y":4.934,"z":328.378}},{"monsterId":0,"gadgetId":70590027,"configId":76031,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1067.767,"y":379.915,"z":-615.565},"rot":{"x":9.248,"y":271.068,"z":25.696}},{"monsterId":0,"gadgetId":70590027,"configId":76027,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1064.636,"y":379.288,"z":-616.241},"rot":{"x":327.321,"y":2.872,"z":14.716}},{"monsterId":0,"gadgetId":70590027,"configId":76029,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1087.398,"y":380.326,"z":-623.704},"rot":{"x":8.126,"y":15.602,"z":10.427}},{"monsterId":0,"gadgetId":70590027,"configId":76028,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1072.519,"y":380.0,"z":-616.824},"rot":{"x":359.86,"y":9.023,"z":0.884}},{"monsterId":0,"gadgetId":70590027,"configId":76026,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1071.611,"y":379.842,"z":-616.554},"rot":{"x":0.0,"y":301.348,"z":0.0}}]},{"sceneId":3,"groupId":133007048,"blockId":0,"pos":{"x":2703.1965,"y":0.0,"z":570.60425},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":48004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2598.85,"y":264.677,"z":577.562},"rot":{"x":0.0,"y":324.678,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":48001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2675.171,"y":259.51,"z":531.241},"rot":{"x":0.0,"y":177.085,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":48005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2753.091,"y":262.713,"z":577.646},"rot":{"x":0.0,"y":260.805,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":48002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2785.674,"y":225.764,"z":595.968},"rot":{"x":0.0,"y":96.379,"z":0.0}}]},{"sceneId":3,"groupId":133222102,"blockId":0,"pos":{"x":-4435.6733,"y":0.0,"z":-3729.9204},"spawns":[{"monsterId":0,"gadgetId":70590041,"configId":102001,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-4433.196,"y":234.575,"z":-3739.796},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590041,"configId":102004,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-4438.151,"y":199.09,"z":-3720.045},"rot":{"x":0.0,"y":345.462,"z":0.0}}]},{"sceneId":3,"groupId":133007047,"blockId":0,"pos":{"x":2927.13,"y":0.0,"z":530.224},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":47002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2927.13,"y":272.507,"z":530.224},"rot":{"x":0.0,"y":217.575,"z":0.0}}]},{"sceneId":3,"groupId":133222107,"blockId":0,"pos":{"x":-4304.497,"y":0.0,"z":-4302.997},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":107002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4303.039,"y":201.681,"z":-4305.113},"rot":{"x":0.0,"y":92.109,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":107001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4305.955,"y":202.318,"z":-4300.881},"rot":{"x":0.0,"y":253.932,"z":0.0}}]},{"sceneId":3,"groupId":133007046,"blockId":0,"pos":{"x":2511.253,"y":0.0,"z":576.676},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":46001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2511.253,"y":271.069,"z":576.676},"rot":{"x":0.0,"y":243.33,"z":0.0}}]},{"sceneId":3,"groupId":133225180,"blockId":0,"pos":{"x":-6520.1147,"y":0.0,"z":-2589.6865},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":180002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6519.006,"y":202.781,"z":-2592.031},"rot":{"x":344.031,"y":60.561,"z":354.658}},{"monsterId":0,"gadgetId":70520002,"configId":180005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6520.982,"y":200.42,"z":-2587.959},"rot":{"x":0.0,"y":0.0,"z":36.112}},{"monsterId":0,"gadgetId":70590036,"configId":180003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6521.525,"y":200.215,"z":-2590.628},"rot":{"x":0.0,"y":0.0,"z":28.734}},{"monsterId":0,"gadgetId":70520001,"configId":180001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6518.946,"y":202.442,"z":-2588.128},"rot":{"x":0.0,"y":0.0,"z":25.949}}]},{"sceneId":3,"groupId":133007043,"blockId":0,"pos":{"x":2505.2148,"y":0.0,"z":380.58463},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":43002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2482.776,"y":208.508,"z":267.221},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":43001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2463.986,"y":209.828,"z":296.159},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":43003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2468.065,"y":210.7,"z":316.09},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":43010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2464.793,"y":262.486,"z":342.226},"rot":{"x":0.0,"y":45.11,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":43004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2523.095,"y":190.565,"z":330.966},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":43007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2438.623,"y":263.632,"z":350.44},"rot":{"x":0.0,"y":349.902,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":43013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2478.164,"y":224.514,"z":367.658},"rot":{"x":0.0,"y":236.655,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":43011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2541.825,"y":209.85,"z":437.865},"rot":{"x":0.0,"y":236.655,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":43006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2531.296,"y":207.044,"z":450.529},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":43014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2556.295,"y":215.744,"z":449.985},"rot":{"x":0.0,"y":191.95,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":43009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2543.482,"y":182.163,"z":404.029},"rot":{"x":0.0,"y":269.048,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":43005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2538.596,"y":182.866,"z":395.836},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":43012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2462.969,"y":217.954,"z":412.362},"rot":{"x":0.0,"y":236.655,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":43015,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2544.92,"y":183.545,"z":414.327},"rot":{"x":0.0,"y":21.455,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":43008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2539.34,"y":207.233,"z":473.076},"rot":{"x":0.0,"y":47.399,"z":0.0}}]},{"sceneId":3,"groupId":155009033,"blockId":0,"pos":{"x":-728.45996,"y":0.0,"z":-205.13199},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":33002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-729.724,"y":180.578,"z":-206.267},"rot":{"x":15.544,"y":80.664,"z":358.227}},{"monsterId":0,"gadgetId":70590036,"configId":33001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-727.196,"y":179.626,"z":-203.997},"rot":{"x":48.1,"y":1.586,"z":328.103}}]},{"sceneId":3,"groupId":133220036,"blockId":0,"pos":{"x":-2673.721,"y":0.0,"z":-4361.079},"spawns":[{"monsterId":0,"gadgetId":70520034,"configId":36006,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2673.721,"y":243.56,"z":-4361.079},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155009032,"blockId":0,"pos":{"x":-776.7197,"y":0.0,"z":-215.677},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":32002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-774.64,"y":184.194,"z":-214.919},"rot":{"x":40.797,"y":89.702,"z":37.281}},{"monsterId":0,"gadgetId":70590036,"configId":32001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-776.034,"y":184.684,"z":-211.962},"rot":{"x":334.46,"y":325.737,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":32003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-779.485,"y":184.926,"z":-220.15},"rot":{"x":9.8,"y":152.28,"z":46.694}}]},{"sceneId":3,"groupId":133225159,"blockId":0,"pos":{"x":-6305.639,"y":0.0,"z":-2959.0046},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":159004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6302.065,"y":221.814,"z":-2955.708},"rot":{"x":36.89,"y":340.43,"z":-0.001}},{"monsterId":0,"gadgetId":70520001,"configId":159003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6307.264,"y":220.153,"z":-2962.568},"rot":{"x":0.0,"y":290.817,"z":338.796}},{"monsterId":0,"gadgetId":70590036,"configId":159002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6307.938,"y":220.009,"z":-2963.364},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":159006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-6311.687,"y":218.425,"z":-2963.244},"rot":{"x":0.0,"y":0.0,"z":33.716}},{"monsterId":0,"gadgetId":70520001,"configId":159001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-6304.299,"y":221.185,"z":-2957.705},"rot":{"x":0.0,"y":287.267,"z":340.962}},{"monsterId":0,"gadgetId":70520002,"configId":159005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-6300.581,"y":222.017,"z":-2951.438},"rot":{"x":0.0,"y":255.975,"z":0.0}}]},{"sceneId":3,"groupId":133008081,"blockId":0,"pos":{"x":1294.65,"y":0.0,"z":-1041.702},"spawns":[{"monsterId":0,"gadgetId":70590025,"configId":81001,"level":0,"poseId":0,"gatherItemId":101005,"pos":{"x":1315.284,"y":293.053,"z":-1019.848},"rot":{"x":333.249,"y":1.008,"z":0.115}},{"monsterId":0,"gadgetId":70590025,"configId":81002,"level":0,"poseId":0,"gatherItemId":101005,"pos":{"x":1285.786,"y":297.776,"z":-1067.072},"rot":{"x":22.338,"y":359.97,"z":359.992}},{"monsterId":0,"gadgetId":70590025,"configId":81003,"level":0,"poseId":0,"gatherItemId":101005,"pos":{"x":1319.37,"y":295.487,"z":-1056.446},"rot":{"x":359.121,"y":2.83,"z":12.085}},{"monsterId":0,"gadgetId":70590025,"configId":81004,"level":0,"poseId":0,"gatherItemId":101005,"pos":{"x":1258.16,"y":308.274,"z":-1023.442},"rot":{"x":0.0,"y":0.0,"z":351.859}}]},{"sceneId":3,"groupId":155009024,"blockId":0,"pos":{"x":-807.2964,"y":0.0,"z":-227.10266},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":24003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-804.862,"y":199.964,"z":-222.661},"rot":{"x":0.0,"y":149.959,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-806.803,"y":200.324,"z":-228.788},"rot":{"x":0.0,"y":100.798,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-810.224,"y":199.35,"z":-229.859},"rot":{"x":0.0,"y":87.312,"z":0.0}}]},{"sceneId":3,"groupId":155007101,"blockId":0,"pos":{"x":-338.983,"y":0.0,"z":1621.3232},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":101004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-337.407,"y":208.969,"z":1618.563},"rot":{"x":355.929,"y":269.508,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":101005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-340.24,"y":208.654,"z":1623.171},"rot":{"x":0.0,"y":310.671,"z":14.151}},{"monsterId":0,"gadgetId":70520001,"configId":101006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-339.302,"y":208.727,"z":1622.236},"rot":{"x":11.165,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133007017,"blockId":0,"pos":{"x":2931.1501,"y":0.0,"z":391.46628},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":17002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2856.442,"y":220.146,"z":401.227},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":17003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2854.977,"y":232.702,"z":426.831},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":17010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2891.295,"y":220.139,"z":367.25},"rot":{"x":0.0,"y":295.261,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":17004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2892.793,"y":219.589,"z":381.233},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":17012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2922.408,"y":229.721,"z":330.667},"rot":{"x":0.0,"y":70.051,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":17008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2829.155,"y":261.974,"z":503.485},"rot":{"x":0.0,"y":191.95,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2966.517,"y":290.926,"z":427.37},"rot":{"x":0.0,"y":199.481,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":17005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2948.72,"y":222.607,"z":318.847},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":17001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2970.675,"y":222.47,"z":326.128},"rot":{"x":0.0,"y":276.893,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":17011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":3046.777,"y":281.905,"z":358.367},"rot":{"x":0.0,"y":63.493,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":3062.89,"y":241.052,"z":464.724},"rot":{"x":0.0,"y":124.017,"z":0.0}}]},{"sceneId":3,"groupId":133007013,"blockId":0,"pos":{"x":2681.3103,"y":0.0,"z":119.67269},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":13019,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2598.304,"y":229.526,"z":110.956},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2605.919,"y":229.616,"z":110.61},"rot":{"x":0.0,"y":9.074,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13018,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2595.464,"y":229.574,"z":155.768},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2623.517,"y":229.472,"z":87.608},"rot":{"x":0.0,"y":158.388,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2609.434,"y":228.702,"z":93.874},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2617.213,"y":229.92,"z":175.509},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":13004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2631.767,"y":229.189,"z":24.324},"rot":{"x":0.0,"y":110.657,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2645.633,"y":229.072,"z":71.255},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2642.548,"y":229.56,"z":84.03},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2638.506,"y":229.917,"z":181.782},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":13006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2652.684,"y":230.492,"z":29.474},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13023,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2680.48,"y":229.545,"z":85.838},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2720.916,"y":206.825,"z":23.387},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2712.261,"y":206.981,"z":13.677},"rot":{"x":0.0,"y":323.761,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2742.7,"y":206.826,"z":12.035},"rot":{"x":0.0,"y":94.638,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":13005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2776.977,"y":208.507,"z":32.853},"rot":{"x":0.0,"y":44.244,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2801.955,"y":207.141,"z":70.459},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":13026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2807.348,"y":208.379,"z":142.357},"rot":{"x":0.0,"y":101.582,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13024,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2697.213,"y":229.601,"z":162.22},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13014,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2667.196,"y":229.705,"z":183.177},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2813.723,"y":209.137,"z":184.068},"rot":{"x":0.0,"y":136.605,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2656.41,"y":229.858,"z":193.475},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2680.424,"y":229.524,"z":188.586},"rot":{"x":0.0,"y":91.974,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":13008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2792.931,"y":209.835,"z":218.511},"rot":{"x":0.0,"y":212.654,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2732.919,"y":218.204,"z":229.459},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":13010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2569.634,"y":206.996,"z":246.198},"rot":{"x":0.0,"y":41.706,"z":0.0}}]},{"sceneId":3,"groupId":133008037,"blockId":0,"pos":{"x":886.7425,"y":0.0,"z":-1293.1694},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":37001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":989.153,"y":201.348,"z":-1288.469},"rot":{"x":348.012,"y":50.305,"z":7.558}},{"monsterId":0,"gadgetId":70520024,"configId":37002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":784.332,"y":200.067,"z":-1297.87},"rot":{"x":0.0,"y":33.847,"z":0.0}}]},{"sceneId":3,"groupId":133007012,"blockId":0,"pos":{"x":2903.2737,"y":0.0,"z":149.6087},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":12023,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2819.391,"y":210.111,"z":143.157},"rot":{"x":0.0,"y":293.041,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2823.685,"y":207.474,"z":246.966},"rot":{"x":0.0,"y":137.85,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2832.196,"y":207.084,"z":253.692},"rot":{"x":0.0,"y":328.079,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2959.428,"y":215.942,"z":234.21},"rot":{"x":0.0,"y":66.633,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2841.79,"y":208.955,"z":227.525},"rot":{"x":0.0,"y":48.934,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2912.807,"y":207.247,"z":210.888},"rot":{"x":0.0,"y":138.784,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2914.703,"y":210.5,"z":152.704},"rot":{"x":0.0,"y":337.994,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2913.246,"y":211.923,"z":128.206},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12014,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2892.811,"y":210.757,"z":51.706},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2893.298,"y":208.85,"z":38.282},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2838.47,"y":211.35,"z":34.123},"rot":{"x":0.0,"y":9.296,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2840.215,"y":210.857,"z":54.622},"rot":{"x":0.0,"y":9.074,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2850.534,"y":212.045,"z":53.99},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2857.064,"y":210.857,"z":141.126},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2851.532,"y":210.857,"z":143.09},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2987.154,"y":209.045,"z":83.361},"rot":{"x":0.0,"y":99.839,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2983.528,"y":215.951,"z":183.989},"rot":{"x":0.0,"y":300.968,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2980.793,"y":215.767,"z":246.642},"rot":{"x":0.0,"y":207.339,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2927.061,"y":209.492,"z":75.128},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":3007.399,"y":215.639,"z":190.279},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2859.99,"y":207.606,"z":46.673},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2954.844,"y":215.951,"z":248.902},"rot":{"x":0.0,"y":119.899,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":3033.363,"y":273.542,"z":251.739},"rot":{"x":0.0,"y":78.033,"z":0.0}}]},{"sceneId":3,"groupId":155008119,"blockId":0,"pos":{"x":-195.89433,"y":0.0,"z":152.791},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":119003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-196.87,"y":233.578,"z":152.43},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":119001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-189.066,"y":233.802,"z":155.731},"rot":{"x":355.043,"y":27.474,"z":354.779}},{"monsterId":0,"gadgetId":70590036,"configId":119005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-201.747,"y":233.568,"z":150.212},"rot":{"x":0.0,"y":176.185,"z":0.0}}]},{"sceneId":3,"groupId":133007015,"blockId":0,"pos":{"x":2648.3826,"y":0.0,"z":324.70694},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":15023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2618.165,"y":213.077,"z":257.957},"rot":{"x":0.0,"y":253.712,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":15022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2618.539,"y":212.665,"z":257.719},"rot":{"x":0.0,"y":253.712,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":15021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2617.75,"y":212.379,"z":257.574},"rot":{"x":0.0,"y":253.712,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":15002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2591.469,"y":209.498,"z":272.71},"rot":{"x":0.0,"y":76.517,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":15011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2638.824,"y":210.437,"z":280.123},"rot":{"x":0.0,"y":20.164,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":15006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2693.632,"y":210.133,"z":277.52},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":15007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2711.615,"y":207.014,"z":276.619},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":15019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2601.636,"y":208.385,"z":291.041},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":15018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2601.303,"y":207.973,"z":290.748},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":15017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":2601.385,"y":207.687,"z":291.545},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":15008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2577.902,"y":208.647,"z":349.437},"rot":{"x":0.0,"y":236.655,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":15009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2710.701,"y":207.615,"z":343.665},"rot":{"x":0.0,"y":147.957,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":15013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2596.186,"y":201.153,"z":408.962},"rot":{"x":0.0,"y":68.758,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":15004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2670.979,"y":207.752,"z":483.731},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":15010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2738.498,"y":230.67,"z":449.738},"rot":{"x":0.0,"y":158.844,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":15005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2785.536,"y":207.603,"z":406.222},"rot":{"x":0.0,"y":41.706,"z":0.0}}]},{"sceneId":3,"groupId":155008118,"blockId":0,"pos":{"x":-77.989,"y":0.0,"z":207.401},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":118001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-82.213,"y":209.094,"z":201.052},"rot":{"x":0.0,"y":55.505,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":118004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-76.006,"y":207.607,"z":212.838},"rot":{"x":0.0,"y":296.424,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":118003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-75.748,"y":207.929,"z":208.313},"rot":{"x":0.0,"y":284.396,"z":0.0}}]},{"sceneId":3,"groupId":133007014,"blockId":0,"pos":{"x":2456.161,"y":0.0,"z":126.47421},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":14019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2362.934,"y":268.221,"z":33.66},"rot":{"x":6.48,"y":56.867,"z":321.26}},{"monsterId":0,"gadgetId":70520004,"configId":14008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2416.769,"y":208.604,"z":41.312},"rot":{"x":0.0,"y":179.616,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":14014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2420.665,"y":208.547,"z":57.167},"rot":{"x":0.0,"y":345.998,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":14004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2483.467,"y":206.45,"z":46.912},"rot":{"x":0.0,"y":284.191,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":14018,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2316.197,"y":299.566,"z":100.707},"rot":{"x":0.0,"y":74.274,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":14007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2407.054,"y":239.693,"z":124.812},"rot":{"x":0.0,"y":136.44,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":14011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2477.698,"y":205.683,"z":125.561},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":14012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2424.66,"y":216.618,"z":147.876},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":14010,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2412.139,"y":208.396,"z":130.137},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":14001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2514.569,"y":207.932,"z":20.025},"rot":{"x":0.0,"y":23.406,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":14015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2518.491,"y":207.518,"z":106.096},"rot":{"x":0.0,"y":251.208,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":14002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2522.167,"y":206.132,"z":141.254},"rot":{"x":0.0,"y":130.172,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":14005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2439.187,"y":224.789,"z":165.244},"rot":{"x":0.0,"y":136.44,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":14009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2551.813,"y":206.856,"z":79.589},"rot":{"x":0.0,"y":41.706,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":14017,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2508.505,"y":207.138,"z":221.663},"rot":{"x":0.0,"y":356.42,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":14003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2511.961,"y":205.544,"z":224.345},"rot":{"x":0.0,"y":9.074,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":14013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":2483.883,"y":208.45,"z":210.212},"rot":{"x":0.0,"y":95.995,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":14006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2455.953,"y":220.632,"z":195.887},"rot":{"x":0.0,"y":136.44,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":14016,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2438.946,"y":252.399,"z":230.551},"rot":{"x":0.0,"y":220.607,"z":0.0}}]},{"sceneId":3,"groupId":155004013,"blockId":0,"pos":{"x":14.476,"y":0.0,"z":1613.349},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":13002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":14.476,"y":210.955,"z":1613.349},"rot":{"x":0.0,"y":26.264,"z":0.0}}]},{"sceneId":3,"groupId":155004012,"blockId":0,"pos":{"x":105.89801,"y":0.0,"z":1297.163},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":12003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":106.078,"y":200.124,"z":1297.705},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":12001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":104.829,"y":200.454,"z":1298.396},"rot":{"x":0.0,"y":0.0,"z":341.571}},{"monsterId":0,"gadgetId":70520001,"configId":12002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":106.787,"y":200.052,"z":1295.388},"rot":{"x":342.169,"y":315.366,"z":0.0}}]},{"sceneId":3,"groupId":133220006,"blockId":0,"pos":{"x":-2423.3406,"y":0.0,"z":-4289.661},"spawns":[{"monsterId":0,"gadgetId":70590041,"configId":6037,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-2376.588,"y":231.841,"z":-4356.043},"rot":{"x":0.189,"y":111.407,"z":357.4}},{"monsterId":0,"gadgetId":70590041,"configId":6015,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-2542.487,"y":274.222,"z":-4261.517},"rot":{"x":0.0,"y":61.302,"z":0.0}},{"monsterId":0,"gadgetId":70590041,"configId":6013,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-2350.946,"y":196.337,"z":-4251.423},"rot":{"x":0.0,"y":56.508,"z":0.0}}]},{"sceneId":3,"groupId":133007034,"blockId":0,"pos":{"x":2933.6191,"y":0.0,"z":177.23732},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":428,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2933.588,"y":213.298,"z":178.983},"rot":{"x":0.0,"y":289.257,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":427,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2932.191,"y":213.486,"z":176.575},"rot":{"x":0.0,"y":9.149,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":426,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2935.079,"y":213.787,"z":176.154},"rot":{"x":0.0,"y":86.117,"z":0.0}}]},{"sceneId":3,"groupId":155004007,"blockId":0,"pos":{"x":50.251,"y":0.0,"z":1357.771},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":7005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":50.251,"y":204.212,"z":1357.771},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133007031,"blockId":0,"pos":{"x":2147.2617,"y":0.0,"z":23.6823},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":31005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2096.128,"y":224.696,"z":34.482},"rot":{"x":0.0,"y":299.734,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2092.908,"y":225.001,"z":32.447},"rot":{"x":0.0,"y":274.263,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":31009,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2112.694,"y":284.879,"z":54.012},"rot":{"x":0.0,"y":119.663,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":31006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2129.901,"y":229.77,"z":6.079},"rot":{"x":0.0,"y":109.77,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":31004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":2140.96,"y":227.722,"z":3.199},"rot":{"x":0.0,"y":322.775,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2133.005,"y":226.639,"z":10.637},"rot":{"x":0.0,"y":277.965,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2164.461,"y":231.789,"z":13.108},"rot":{"x":0.0,"y":8.584,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2163.088,"y":297.394,"z":40.926},"rot":{"x":0.0,"y":142.406,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":2190.997,"y":238.992,"z":4.29},"rot":{"x":0.0,"y":90.702,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":31010,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":2248.476,"y":298.645,"z":37.643},"rot":{"x":0.0,"y":296.846,"z":0.0}}]},{"sceneId":3,"groupId":155004006,"blockId":0,"pos":{"x":115.960495,"y":0.0,"z":1213.983},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":6003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":121.068,"y":205.764,"z":1222.692},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":110.853,"y":206.984,"z":1205.274},"rot":{"x":4.456,"y":0.253,"z":2.696}}]},{"sceneId":3,"groupId":155007061,"blockId":0,"pos":{"x":-274.22665,"y":0.0,"z":1575.7788},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":61015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-337.386,"y":187.38,"z":1484.337},"rot":{"x":5.43,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":61014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-325.821,"y":186.171,"z":1493.542},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":61013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-316.588,"y":183.61,"z":1511.119},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":61004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-306.783,"y":192.392,"z":1590.261},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":61003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-309.939,"y":191.755,"z":1589.605},"rot":{"x":0.0,"y":285.039,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":61002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-307.205,"y":191.825,"z":1589.486},"rot":{"x":21.122,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":61001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-308.511,"y":191.9,"z":1590.081},"rot":{"x":0.0,"y":219.554,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":61009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-253.661,"y":206.462,"z":1609.978},"rot":{"x":0.0,"y":198.88,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":61008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-258.65,"y":204.819,"z":1602.344},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":61005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-220.914,"y":204.504,"z":1613.26},"rot":{"x":0.0,"y":46.111,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":61012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-196.013,"y":204.951,"z":1631.538},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":61010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-149.249,"y":206.619,"z":1603.797},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133104263,"blockId":0,"pos":{"x":126.583565,"y":0.0,"z":909.6646},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":263063,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":131.176,"y":217.119,"z":816.223},"rot":{"x":0.83,"y":2.987,"z":359.703}},{"monsterId":0,"gadgetId":70540005,"configId":263053,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":139.42,"y":239.92,"z":874.696},"rot":{"x":351.847,"y":359.566,"z":6.091}},{"monsterId":0,"gadgetId":70520009,"configId":263016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":125.914,"y":240.276,"z":883.027},"rot":{"x":354.146,"y":0.386,"z":6.2}},{"monsterId":0,"gadgetId":70540021,"configId":263004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":115.618,"y":234.194,"z":874.801},"rot":{"x":349.985,"y":359.925,"z":0.857}},{"monsterId":0,"gadgetId":70540021,"configId":263002,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":114.524,"y":232.792,"z":874.369},"rot":{"x":1.709,"y":265.148,"z":9.906}},{"monsterId":0,"gadgetId":70540021,"configId":263003,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":116.452,"y":233.515,"z":872.493},"rot":{"x":353.673,"y":313.567,"z":7.825}},{"monsterId":0,"gadgetId":70520005,"configId":263027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":166.486,"y":241.612,"z":917.88},"rot":{"x":1.65,"y":195.778,"z":21.871}},{"monsterId":0,"gadgetId":70520005,"configId":263028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":192.494,"y":237.08,"z":913.472},"rot":{"x":350.8,"y":259.261,"z":357.599}},{"monsterId":0,"gadgetId":70520001,"configId":263019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":235.946,"y":210.228,"z":926.335},"rot":{"x":346.763,"y":145.777,"z":340.693}},{"monsterId":0,"gadgetId":70540004,"configId":263024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":96.616,"y":252.031,"z":895.677},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":263025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":96.616,"y":252.031,"z":895.869},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":102.42,"y":240.342,"z":890.662},"rot":{"x":345.42,"y":358.255,"z":13.576}},{"monsterId":0,"gadgetId":70520009,"configId":263015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":88.852,"y":245.292,"z":922.663},"rot":{"x":12.568,"y":356.045,"z":341.213}},{"monsterId":0,"gadgetId":70520009,"configId":263054,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":77.954,"y":232.518,"z":849.869},"rot":{"x":357.61,"y":204.129,"z":9.62}},{"monsterId":0,"gadgetId":70520004,"configId":263022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":72.935,"y":244.831,"z":906.597},"rot":{"x":7.446,"y":153.428,"z":350.859}},{"monsterId":0,"gadgetId":70520004,"configId":263013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":77.907,"y":237.809,"z":888.906},"rot":{"x":19.73,"y":151.651,"z":351.541}},{"monsterId":0,"gadgetId":70520009,"configId":263069,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":62.009,"y":233.609,"z":809.382},"rot":{"x":355.222,"y":49.04,"z":0.353}},{"monsterId":0,"gadgetId":70520005,"configId":263012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":52.153,"y":236.56,"z":874.232},"rot":{"x":352.689,"y":310.919,"z":359.504}},{"monsterId":0,"gadgetId":70520004,"configId":263021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":67.647,"y":238.178,"z":888.235},"rot":{"x":18.721,"y":151.796,"z":353.059}},{"monsterId":0,"gadgetId":70520009,"configId":263064,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":47.27,"y":233.599,"z":840.643},"rot":{"x":6.221,"y":103.597,"z":353.291}},{"monsterId":0,"gadgetId":70540001,"configId":263008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":18.986,"y":248.372,"z":833.941},"rot":{"x":352.368,"y":0.849,"z":347.321}},{"monsterId":0,"gadgetId":70540001,"configId":263007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":18.567,"y":248.007,"z":833.7},"rot":{"x":352.368,"y":0.849,"z":347.321}},{"monsterId":0,"gadgetId":70540001,"configId":263006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":18.597,"y":247.818,"z":834.529},"rot":{"x":352.368,"y":0.849,"z":347.321}},{"monsterId":0,"gadgetId":70520005,"configId":263046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":21.162,"y":296.117,"z":871.571},"rot":{"x":12.007,"y":5.442,"z":3.005}},{"monsterId":0,"gadgetId":70520009,"configId":263072,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":3.857,"y":250.823,"z":847.233},"rot":{"x":6.221,"y":103.597,"z":353.291}},{"monsterId":0,"gadgetId":70520013,"configId":263070,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":15.974,"y":294.139,"z":917.487},"rot":{"x":0.0,"y":268.037,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":263049,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":14.208,"y":294.822,"z":919.047},"rot":{"x":8.579,"y":357.346,"z":356.712}},{"monsterId":0,"gadgetId":70520004,"configId":263048,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":14.885,"y":294.503,"z":919.95},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":263047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":22.197,"y":289.873,"z":932.738},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":263071,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":43.986,"y":285.249,"z":915.395},"rot":{"x":0.0,"y":36.718,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263050,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":17.007,"y":274.751,"z":965.126},"rot":{"x":23.515,"y":0.187,"z":0.898}},{"monsterId":0,"gadgetId":70520005,"configId":263058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":37.626,"y":277.696,"z":949.388},"rot":{"x":0.0,"y":40.638,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":100.776,"y":256.726,"z":944.781},"rot":{"x":354.562,"y":0.78,"z":343.69}},{"monsterId":0,"gadgetId":70540004,"configId":263011,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":112.544,"y":247.004,"z":937.299},"rot":{"x":0.0,"y":279.216,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":263010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":112.733,"y":247.004,"z":937.268},"rot":{"x":0.0,"y":279.216,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":127.302,"y":262.686,"z":960.582},"rot":{"x":357.674,"y":55.268,"z":11.602}},{"monsterId":0,"gadgetId":70520009,"configId":263065,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":151.923,"y":218.0,"z":811.513},"rot":{"x":354.535,"y":316.72,"z":357.178}},{"monsterId":0,"gadgetId":70520005,"configId":263026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":157.7,"y":238.695,"z":893.973},"rot":{"x":355.814,"y":359.971,"z":0.783}},{"monsterId":0,"gadgetId":70520009,"configId":263061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":169.131,"y":205.142,"z":837.648},"rot":{"x":9.234,"y":101.169,"z":3.612}},{"monsterId":0,"gadgetId":70520004,"configId":263018,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":174.392,"y":209.354,"z":862.596},"rot":{"x":357.41,"y":359.25,"z":7.152}},{"monsterId":0,"gadgetId":70520009,"configId":263059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":186.664,"y":238.488,"z":888.914},"rot":{"x":10.647,"y":162.194,"z":2.663}},{"monsterId":0,"gadgetId":70520009,"configId":263030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":182.861,"y":248.298,"z":955.881},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263056,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":201.041,"y":210.171,"z":897.418},"rot":{"x":355.23,"y":309.172,"z":3.02}},{"monsterId":0,"gadgetId":70520009,"configId":263051,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":53.78,"y":272.723,"z":972.046},"rot":{"x":12.462,"y":358.361,"z":345.069}},{"monsterId":0,"gadgetId":70520005,"configId":263057,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":125.825,"y":259.433,"z":986.456},"rot":{"x":6.73,"y":57.23,"z":5.885}},{"monsterId":0,"gadgetId":70520005,"configId":263066,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":177.041,"y":249.736,"z":980.681},"rot":{"x":0.76,"y":187.921,"z":8.726}},{"monsterId":0,"gadgetId":70520004,"configId":263017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":226.468,"y":208.779,"z":881.178},"rot":{"x":14.966,"y":4.393,"z":30.115}},{"monsterId":0,"gadgetId":70540001,"configId":263041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":221.99,"y":234.632,"z":929.292},"rot":{"x":357.896,"y":359.879,"z":357.812}},{"monsterId":0,"gadgetId":70540001,"configId":263040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":221.626,"y":234.192,"z":929.092},"rot":{"x":357.896,"y":359.879,"z":357.812}},{"monsterId":0,"gadgetId":70540001,"configId":263039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":221.694,"y":234.078,"z":929.932},"rot":{"x":357.896,"y":359.879,"z":357.812}},{"monsterId":0,"gadgetId":70540001,"configId":263037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":88.516,"y":260.92,"z":1001.025},"rot":{"x":18.488,"y":1.728,"z":10.589}},{"monsterId":0,"gadgetId":70540001,"configId":263036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":88.251,"y":260.571,"z":1000.607},"rot":{"x":18.488,"y":1.728,"z":10.589}},{"monsterId":0,"gadgetId":70540001,"configId":263035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":88.405,"y":260.066,"z":1001.275},"rot":{"x":18.488,"y":1.728,"z":10.589}},{"monsterId":0,"gadgetId":70520009,"configId":263032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":208.922,"y":240.419,"z":1007.543},"rot":{"x":19.273,"y":358.153,"z":349.155}},{"monsterId":0,"gadgetId":70520009,"configId":263031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":222.628,"y":238.097,"z":999.289},"rot":{"x":8.132,"y":357.367,"z":340.193}},{"monsterId":0,"gadgetId":70540001,"configId":263045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":231.136,"y":236.775,"z":847.868},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":230.803,"y":236.363,"z":847.575},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":263043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":230.885,"y":236.077,"z":848.372},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":263029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":238.547,"y":231.013,"z":938.735},"rot":{"x":343.305,"y":1.03,"z":352.125}},{"monsterId":0,"gadgetId":70520001,"configId":263020,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":244.78,"y":209.276,"z":937.08},"rot":{"x":327.22,"y":80.223,"z":357.396}},{"monsterId":0,"gadgetId":70520005,"configId":263062,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":228.694,"y":239.124,"z":993.251},"rot":{"x":323.872,"y":173.983,"z":8.941}},{"monsterId":0,"gadgetId":70520005,"configId":263067,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":251.389,"y":224.174,"z":894.38},"rot":{"x":357.704,"y":55.589,"z":355.078}},{"monsterId":0,"gadgetId":70520009,"configId":263068,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":250.554,"y":234.555,"z":993.027},"rot":{"x":3.721,"y":116.095,"z":344.574}},{"monsterId":0,"gadgetId":70520009,"configId":263055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":144.886,"y":204.919,"z":1015.825},"rot":{"x":12.126,"y":226.566,"z":12.51}}]},{"sceneId":3,"groupId":133008004,"blockId":0,"pos":{"x":806.597,"y":0.0,"z":-1280.823},"spawns":[{"monsterId":0,"gadgetId":70590030,"configId":4001,"level":0,"poseId":0,"gatherItemId":100618,"pos":{"x":806.597,"y":199.5,"z":-1280.823},"rot":{"x":331.47,"y":271.811,"z":347.993}}]},{"sceneId":3,"groupId":133221018,"blockId":0,"pos":{"x":-3213.7341,"y":0.0,"z":-4489.934},"spawns":[{"monsterId":0,"gadgetId":70520034,"configId":18005,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-3082.53,"y":238.817,"z":-4500.59},"rot":{"x":0.0,"y":354.263,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3162.092,"y":252.04,"z":-4465.321},"rot":{"x":0.0,"y":147.525,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3168.03,"y":248.022,"z":-4429.889},"rot":{"x":0.0,"y":291.396,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3167.879,"y":247.61,"z":-4430.306},"rot":{"x":0.0,"y":291.396,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3168.591,"y":247.324,"z":-4429.939},"rot":{"x":0.0,"y":291.396,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":18004,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3173.035,"y":205.397,"z":-4460.556},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":18003,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3172.208,"y":205.117,"z":-4462.948},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":18002,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3174.149,"y":204.107,"z":-4461.223},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3084.326,"y":245.705,"z":-4529.489},"rot":{"x":0.0,"y":4.334,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3074.75,"y":247.018,"z":-4452.58},"rot":{"x":0.0,"y":41.384,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3189.045,"y":202.297,"z":-4559.054},"rot":{"x":0.0,"y":79.778,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3189.393,"y":201.885,"z":-4558.778},"rot":{"x":0.0,"y":79.778,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3188.594,"y":201.599,"z":-4558.717},"rot":{"x":0.0,"y":79.778,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3217.652,"y":259.721,"z":-4536.291},"rot":{"x":0.0,"y":246.326,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3220.201,"y":222.253,"z":-4514.762},"rot":{"x":0.0,"y":157.752,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3213.201,"y":247.944,"z":-4430.678},"rot":{"x":0.0,"y":346.763,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":18029,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3243.433,"y":210.114,"z":-4515.752},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":18028,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3246.292,"y":209.941,"z":-4507.876},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":18027,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3239.321,"y":210.308,"z":-4511.832},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3259.786,"y":255.962,"z":-4424.913},"rot":{"x":0.0,"y":124.3,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":18031,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3298.166,"y":203.305,"z":-4532.286},"rot":{"x":0.0,"y":266.474,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3298.907,"y":202.361,"z":-4462.576},"rot":{"x":0.0,"y":204.258,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3298.484,"y":201.949,"z":-4462.446},"rot":{"x":0.0,"y":204.258,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3298.886,"y":201.663,"z":-4463.139},"rot":{"x":0.0,"y":204.258,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":18030,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3315.869,"y":201.396,"z":-4526.885},"rot":{"x":0.0,"y":304.856,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3323.392,"y":270.993,"z":-4437.567},"rot":{"x":0.0,"y":136.141,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":18026,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3302.616,"y":210.126,"z":-4601.826},"rot":{"x":359.0,"y":98.571,"z":8.389}}]},{"sceneId":3,"groupId":155008086,"blockId":0,"pos":{"x":-342.802,"y":0.0,"z":391.75848},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":86002,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-344.736,"y":215.88,"z":388.218},"rot":{"x":0.0,"y":260.766,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":86004,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-340.868,"y":215.88,"z":395.299},"rot":{"x":0.0,"y":276.509,"z":0.0}}]},{"sceneId":3,"groupId":133221019,"blockId":0,"pos":{"x":-3308.5476,"y":0.0,"z":-4615.608},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":19008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3319.13,"y":280.416,"z":-4613.619},"rot":{"x":0.0,"y":116.295,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3319.245,"y":280.004,"z":-4613.19},"rot":{"x":0.0,"y":116.295,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3318.567,"y":279.718,"z":-4613.617},"rot":{"x":0.0,"y":116.295,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3241.228,"y":273.341,"z":-4614.394},"rot":{"x":0.0,"y":34.464,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3313.922,"y":276.371,"z":-4638.167},"rot":{"x":0.0,"y":108.13,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":19031,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3327.642,"y":209.415,"z":-4611.276},"rot":{"x":1.254,"y":65.826,"z":15.456}},{"monsterId":0,"gadgetId":70520028,"configId":19030,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3327.036,"y":209.568,"z":-4610.931},"rot":{"x":2.636,"y":236.316,"z":343.178}},{"monsterId":0,"gadgetId":70520028,"configId":19032,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3301.612,"y":214.811,"z":-4609.668},"rot":{"x":286.014,"y":319.879,"z":194.535}}]},{"sceneId":3,"groupId":133104259,"blockId":0,"pos":{"x":374.28238,"y":0.0,"z":896.98773},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":259023,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":500.075,"y":229.017,"z":899.532},"rot":{"x":0.0,"y":243.509,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":259009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":492.396,"y":226.365,"z":899.783},"rot":{"x":18.143,"y":259.997,"z":353.426}},{"monsterId":0,"gadgetId":70520005,"configId":259007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":488.058,"y":225.523,"z":997.832},"rot":{"x":355.31,"y":169.977,"z":6.478}},{"monsterId":0,"gadgetId":70520005,"configId":259010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":456.853,"y":213.506,"z":898.075},"rot":{"x":350.997,"y":295.679,"z":8.384}},{"monsterId":0,"gadgetId":70520009,"configId":259022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":447.867,"y":219.128,"z":975.886},"rot":{"x":357.481,"y":352.0,"z":354.948}},{"monsterId":0,"gadgetId":70520005,"configId":259030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":263.512,"y":231.477,"z":965.115},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":259013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":260.592,"y":233.071,"z":996.352},"rot":{"x":355.728,"y":25.289,"z":347.855}},{"monsterId":0,"gadgetId":70520004,"configId":259025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":274.515,"y":221.439,"z":883.527},"rot":{"x":2.053,"y":9.56,"z":3.969}},{"monsterId":0,"gadgetId":70520004,"configId":259021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":272.165,"y":221.838,"z":883.188},"rot":{"x":343.527,"y":218.223,"z":357.043}},{"monsterId":0,"gadgetId":70520004,"configId":259019,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":284.919,"y":218.853,"z":887.342},"rot":{"x":355.615,"y":137.934,"z":359.144}},{"monsterId":0,"gadgetId":70520005,"configId":259031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":285.297,"y":229.85,"z":989.527},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":259005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":298.031,"y":217.141,"z":910.101},"rot":{"x":343.395,"y":214.909,"z":356.46}},{"monsterId":0,"gadgetId":70520001,"configId":259033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":289.09,"y":222.908,"z":933.237},"rot":{"x":0.0,"y":76.674,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":259017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":304.283,"y":223.169,"z":973.168},"rot":{"x":355.752,"y":277.726,"z":0.861}},{"monsterId":0,"gadgetId":70520009,"configId":259015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":347.854,"y":239.49,"z":1017.973},"rot":{"x":349.551,"y":346.129,"z":4.516}},{"monsterId":0,"gadgetId":70520009,"configId":259011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":403.164,"y":230.979,"z":1013.517},"rot":{"x":353.479,"y":318.996,"z":353.894}},{"monsterId":0,"gadgetId":70520005,"configId":259016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":384.873,"y":180.7,"z":848.936},"rot":{"x":6.298,"y":137.7,"z":10.198}},{"monsterId":0,"gadgetId":70520009,"configId":259006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":443.956,"y":210.768,"z":906.314},"rot":{"x":357.708,"y":54.183,"z":1.688}},{"monsterId":0,"gadgetId":70520005,"configId":259027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":289.521,"y":221.761,"z":832.263},"rot":{"x":17.41,"y":10.853,"z":5.551}},{"monsterId":0,"gadgetId":70520005,"configId":259028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":308.751,"y":213.868,"z":841.651},"rot":{"x":16.721,"y":10.815,"z":0.53}},{"monsterId":0,"gadgetId":70520009,"configId":259008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":331.821,"y":191.345,"z":846.835},"rot":{"x":0.918,"y":28.882,"z":347.422}},{"monsterId":0,"gadgetId":70520009,"configId":259014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":353.822,"y":183.576,"z":822.991},"rot":{"x":9.105,"y":93.109,"z":356.072}},{"monsterId":0,"gadgetId":70520009,"configId":259020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":427.094,"y":181.091,"z":808.324},"rot":{"x":354.301,"y":124.552,"z":0.409}},{"monsterId":0,"gadgetId":70520004,"configId":259002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":484.484,"y":219.188,"z":814.272},"rot":{"x":354.718,"y":359.632,"z":11.468}},{"monsterId":0,"gadgetId":70520009,"configId":259012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":498.836,"y":222.87,"z":801.957},"rot":{"x":357.534,"y":56.543,"z":356.274}},{"monsterId":0,"gadgetId":70520005,"configId":259029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":441.2,"y":190.831,"z":784.884},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":259003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":472.595,"y":222.231,"z":786.088},"rot":{"x":358.284,"y":359.751,"z":16.536}}]},{"sceneId":3,"groupId":133221020,"blockId":0,"pos":{"x":-3124.9785,"y":0.0,"z":-4312.661},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":20014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3124.747,"y":220.137,"z":-4345.997},"rot":{"x":0.0,"y":112.041,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":20023,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3150.523,"y":200.034,"z":-4332.106},"rot":{"x":0.874,"y":192.451,"z":0.193}},{"monsterId":0,"gadgetId":70520001,"configId":20020,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3146.182,"y":201.45,"z":-4335.15},"rot":{"x":0.0,"y":0.0,"z":34.51}},{"monsterId":0,"gadgetId":70540001,"configId":20008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3146.462,"y":217.119,"z":-4319.92},"rot":{"x":0.0,"y":358.133,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3146.785,"y":216.707,"z":-4320.224},"rot":{"x":0.0,"y":358.133,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":20021,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3148.704,"y":201.166,"z":-4328.93},"rot":{"x":326.141,"y":38.902,"z":358.124}},{"monsterId":0,"gadgetId":70540001,"configId":20006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3146.729,"y":216.421,"z":-4319.424},"rot":{"x":0.0,"y":358.133,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":20019,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3101.921,"y":202.337,"z":-4260.426},"rot":{"x":309.92,"y":296.037,"z":310.193}},{"monsterId":0,"gadgetId":70520029,"configId":20017,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3183.16,"y":198.22,"z":-4343.003},"rot":{"x":0.0,"y":295.8,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":20016,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3180.018,"y":198.501,"z":-4337.705},"rot":{"x":0.0,"y":65.08,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":20022,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3152.826,"y":200.092,"z":-4338.144},"rot":{"x":359.391,"y":317.165,"z":359.344}},{"monsterId":0,"gadgetId":70540001,"configId":20004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3077.675,"y":219.653,"z":-4342.239},"rot":{"x":0.0,"y":350.289,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3077.953,"y":219.241,"z":-4342.584},"rot":{"x":0.0,"y":350.289,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3078.007,"y":218.955,"z":-4341.785},"rot":{"x":0.0,"y":350.289,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3073.068,"y":214.306,"z":-4276.543},"rot":{"x":0.0,"y":45.929,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3111.635,"y":216.19,"z":-4272.178},"rot":{"x":0.0,"y":194.628,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3111.519,"y":215.492,"z":-4272.729},"rot":{"x":0.0,"y":194.628,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":20011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3111.238,"y":215.778,"z":-4271.979},"rot":{"x":0.0,"y":194.628,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":20018,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3105.441,"y":198.813,"z":-4239.494},"rot":{"x":0.0,"y":51.0,"z":0.0}}]},{"sceneId":3,"groupId":133221021,"blockId":0,"pos":{"x":-3394.9617,"y":0.0,"z":-4531.988},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":21016,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3346.963,"y":204.92,"z":-4522.655},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":21017,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3359.009,"y":205.631,"z":-4521.68},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":21015,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3334.813,"y":212.165,"z":-4601.656},"rot":{"x":273.091,"y":195.634,"z":180.0}},{"monsterId":0,"gadgetId":70540001,"configId":21004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3407.291,"y":296.339,"z":-4550.515},"rot":{"x":0.0,"y":193.083,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3406.9,"y":295.927,"z":-4550.305},"rot":{"x":0.0,"y":193.083,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3407.16,"y":295.641,"z":-4551.063},"rot":{"x":0.0,"y":193.083,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":21009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3397.019,"y":251.073,"z":-4509.866},"rot":{"x":0.0,"y":334.659,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3414.977,"y":219.229,"z":-4500.771},"rot":{"x":0.0,"y":208.578,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3414.544,"y":218.817,"z":-4500.672},"rot":{"x":0.0,"y":208.578,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3414.997,"y":218.531,"z":-4501.333},"rot":{"x":0.0,"y":208.578,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":21010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3440.905,"y":202.394,"z":-4541.35},"rot":{"x":0.0,"y":45.017,"z":0.0}}]},{"sceneId":3,"groupId":155007059,"blockId":0,"pos":{"x":-373.373,"y":0.0,"z":1501.284},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":59002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-373.373,"y":181.774,"z":1501.284},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155007058,"blockId":0,"pos":{"x":-157.7065,"y":0.0,"z":1495.4578},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":58005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-164.561,"y":220.184,"z":1512.76},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":58002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-179.541,"y":219.469,"z":1491.406},"rot":{"x":0.0,"y":0.0,"z":351.091}},{"monsterId":0,"gadgetId":70520009,"configId":58004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-140.798,"y":212.393,"z":1482.732},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":58003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-145.926,"y":214.844,"z":1494.933},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133222047,"blockId":0,"pos":{"x":-4536.596,"y":0.0,"z":-4688.6797},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":47016,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4544.866,"y":198.803,"z":-4686.781},"rot":{"x":0.0,"y":37.816,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":47017,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4507.744,"y":198.79,"z":-4679.211},"rot":{"x":0.0,"y":303.249,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":47015,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4557.179,"y":199.051,"z":-4700.047},"rot":{"x":0.0,"y":258.467,"z":0.0}}]},{"sceneId":3,"groupId":133221023,"blockId":0,"pos":{"x":-3398.8254,"y":0.0,"z":-4644.863},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":23012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3365.167,"y":286.024,"z":-4636.621},"rot":{"x":0.0,"y":22.078,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3409.447,"y":205.097,"z":-4645.342},"rot":{"x":0.0,"y":216.643,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":23018,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3400.96,"y":203.291,"z":-4651.148},"rot":{"x":3.427,"y":246.148,"z":11.988}},{"monsterId":0,"gadgetId":70540001,"configId":23003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3409.005,"y":204.685,"z":-4645.306},"rot":{"x":0.0,"y":216.643,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3409.547,"y":204.399,"z":-4645.896},"rot":{"x":0.0,"y":216.643,"z":0.0}}]},{"sceneId":3,"groupId":133008002,"blockId":0,"pos":{"x":1306.499,"y":0.0,"z":-801.903},"spawns":[{"monsterId":0,"gadgetId":70590030,"configId":2001,"level":0,"poseId":0,"gatherItemId":100618,"pos":{"x":1306.499,"y":275.063,"z":-801.903},"rot":{"x":322.656,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133002909,"blockId":0,"pos":{"x":2240.4458,"y":0.0,"z":-872.8015},"spawns":[{"monsterId":0,"gadgetId":71700157,"configId":909003,"level":0,"poseId":0,"gatherItemId":100609,"pos":{"x":2240.753,"y":217.078,"z":-875.033},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":71700159,"configId":909001,"level":0,"poseId":0,"gatherItemId":100611,"pos":{"x":2240.139,"y":221.129,"z":-870.57},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155007055,"blockId":0,"pos":{"x":-248.757,"y":0.0,"z":1574.0226},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":55011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-264.117,"y":183.102,"z":1565.357},"rot":{"x":0.0,"y":221.923,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":55012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-263.771,"y":183.057,"z":1564.331},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":55005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-249.966,"y":183.722,"z":1578.064},"rot":{"x":342.388,"y":300.961,"z":352.426}},{"monsterId":0,"gadgetId":70520001,"configId":55004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-249.102,"y":183.716,"z":1578.764},"rot":{"x":4.655,"y":11.118,"z":358.114}},{"monsterId":0,"gadgetId":70520001,"configId":55003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-238.566,"y":183.746,"z":1577.39},"rot":{"x":29.937,"y":281.713,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":55002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-237.95,"y":183.65,"z":1576.908},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":55001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-237.827,"y":183.491,"z":1577.344},"rot":{"x":16.689,"y":17.884,"z":8.332}}]},{"sceneId":3,"groupId":133008031,"blockId":0,"pos":{"x":760.30035,"y":0.0,"z":-1135.6396},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":31004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":760.997,"y":199.715,"z":-1217.003},"rot":{"x":0.0,"y":296.94,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":31010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":766.136,"y":201.984,"z":-1159.858},"rot":{"x":0.0,"y":190.312,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":31007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":753.768,"y":202.887,"z":-1030.058},"rot":{"x":0.0,"y":40.778,"z":0.0}}]},{"sceneId":3,"groupId":155007047,"blockId":0,"pos":{"x":-98.70241,"y":0.0,"z":1509.5315},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":47008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-87.145,"y":196.7,"z":1554.255},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":47005,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-62.22,"y":196.355,"z":1535.83},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":47006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-44.106,"y":196.6,"z":1551.291},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":47007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-43.696,"y":198.472,"z":1573.594},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":47010,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-103.359,"y":196.412,"z":1518.205},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":47009,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-100.648,"y":196.496,"z":1501.416},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":47011,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-90.843,"y":196.057,"z":1514.444},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":47014,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-170.138,"y":196.159,"z":1451.667},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":47012,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-147.763,"y":196.15,"z":1446.69},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":47013,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-137.106,"y":196.209,"z":1447.922},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133008022,"blockId":0,"pos":{"x":956.5052,"y":0.0,"z":-1199.0497},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":22001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1021.483,"y":412.469,"z":-1053.083},"rot":{"x":0.0,"y":141.39,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":22006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":993.156,"y":316.519,"z":-1139.616},"rot":{"x":0.0,"y":239.191,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":22004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":946.899,"y":201.473,"z":-1219.619},"rot":{"x":0.0,"y":94.621,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":22010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":963.155,"y":200.135,"z":-1266.75},"rot":{"x":0.0,"y":297.024,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22009,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":953.849,"y":199.775,"z":-1269.995},"rot":{"x":0.0,"y":207.647,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":22007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":954.433,"y":199.894,"z":-1268.596},"rot":{"x":0.0,"y":4.041,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":22002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":862.561,"y":201.964,"z":-1175.688},"rot":{"x":0.0,"y":337.687,"z":0.0}}]},{"sceneId":3,"groupId":155007040,"blockId":0,"pos":{"x":-381.5476,"y":0.0,"z":1500.9437},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":40016,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-455.839,"y":179.647,"z":1426.588},"rot":{"x":0.0,"y":295.901,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40001,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-424.712,"y":179.77,"z":1473.059},"rot":{"x":0.0,"y":295.901,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40009,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-405.782,"y":179.855,"z":1459.803},"rot":{"x":0.0,"y":295.901,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40010,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-400.541,"y":179.636,"z":1471.579},"rot":{"x":0.0,"y":295.901,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":40005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-389.225,"y":182.576,"z":1432.871},"rot":{"x":12.327,"y":0.29,"z":2.684}},{"monsterId":0,"gadgetId":70520029,"configId":40011,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-393.009,"y":179.764,"z":1459.027},"rot":{"x":0.0,"y":295.901,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":40006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-368.183,"y":182.748,"z":1454.94},"rot":{"x":11.794,"y":1.806,"z":17.355}},{"monsterId":0,"gadgetId":70520029,"configId":40012,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-385.154,"y":179.488,"z":1537.375},"rot":{"x":0.0,"y":295.901,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":40007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-354.117,"y":181.229,"z":1477.408},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40002,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-415.169,"y":179.609,"z":1550.565},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40018,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-347.19,"y":180.1,"z":1543.753},"rot":{"x":0.0,"y":295.901,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40008,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-334.686,"y":179.704,"z":1505.012},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40017,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-339.268,"y":179.717,"z":1522.69},"rot":{"x":0.0,"y":295.901,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40004,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-328.828,"y":179.636,"z":1559.476},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40019,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-394.325,"y":179.813,"z":1575.332},"rot":{"x":0.0,"y":295.901,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":40003,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-368.733,"y":179.629,"z":1565.621},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155005116,"blockId":0,"pos":{"x":764.346,"y":0.0,"z":541.28064},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":116001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":773.041,"y":218.71,"z":543.401},"rot":{"x":348.82,"y":230.924,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":116002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":761.78,"y":219.243,"z":544.029},"rot":{"x":340.958,"y":325.07,"z":6.05}},{"monsterId":0,"gadgetId":70590036,"configId":116003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":758.217,"y":219.942,"z":536.412},"rot":{"x":340.958,"y":325.07,"z":6.05}}]},{"sceneId":3,"groupId":133104237,"blockId":0,"pos":{"x":666.5982,"y":0.0,"z":650.1381},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":237051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":526.485,"y":200.315,"z":517.681},"rot":{"x":358.7,"y":292.941,"z":358.478}},{"monsterId":0,"gadgetId":70540001,"configId":237041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":556.408,"y":203.242,"z":515.117},"rot":{"x":358.267,"y":359.478,"z":6.255}},{"monsterId":0,"gadgetId":70540001,"configId":237040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":556.124,"y":202.788,"z":514.835},"rot":{"x":358.267,"y":359.478,"z":6.255}},{"monsterId":0,"gadgetId":70540001,"configId":237039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":556.23,"y":202.536,"z":515.641},"rot":{"x":358.267,"y":359.478,"z":6.255}},{"monsterId":0,"gadgetId":70540001,"configId":237044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":625.101,"y":202.975,"z":524.841},"rot":{"x":1.793,"y":359.845,"z":0.89}},{"monsterId":0,"gadgetId":70540001,"configId":237043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":625.134,"y":202.668,"z":525.634},"rot":{"x":1.793,"y":359.845,"z":0.89}},{"monsterId":0,"gadgetId":70540001,"configId":237045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":625.497,"y":203.322,"z":525.14},"rot":{"x":1.793,"y":359.845,"z":0.89}},{"monsterId":0,"gadgetId":70520009,"configId":237050,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":644.697,"y":202.966,"z":521.826},"rot":{"x":350.21,"y":255.27,"z":350.783}},{"monsterId":0,"gadgetId":70520008,"configId":237037,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":590.551,"y":199.873,"z":555.029},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":237046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":642.056,"y":200.013,"z":608.276},"rot":{"x":359.107,"y":0.028,"z":356.424}},{"monsterId":0,"gadgetId":70520005,"configId":237014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":632.478,"y":200.122,"z":625.755},"rot":{"x":352.17,"y":31.318,"z":7.664}},{"monsterId":0,"gadgetId":70520009,"configId":237004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":656.379,"y":205.144,"z":631.613},"rot":{"x":0.0,"y":72.448,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":237003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":658.301,"y":204.772,"z":634.001},"rot":{"x":0.0,"y":63.43,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":237002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":653.751,"y":204.944,"z":633.23},"rot":{"x":0.0,"y":223.692,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":237020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":681.763,"y":211.336,"z":639.11},"rot":{"x":0.0,"y":351.19,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":237019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":681.479,"y":210.924,"z":638.769},"rot":{"x":0.0,"y":351.19,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":237018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":681.438,"y":210.638,"z":639.569},"rot":{"x":0.0,"y":351.19,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":698.61,"y":215.203,"z":647.233},"rot":{"x":0.0,"y":210.397,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":237052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":533.205,"y":200.383,"z":659.329},"rot":{"x":2.401,"y":116.564,"z":359.2}},{"monsterId":0,"gadgetId":70520005,"configId":237007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":702.288,"y":224.167,"z":658.147},"rot":{"x":0.0,"y":198.8,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":707.456,"y":223.947,"z":657.685},"rot":{"x":0.0,"y":307.51,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":703.317,"y":224.103,"z":659.372},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":722.836,"y":200.118,"z":604.552},"rot":{"x":359.96,"y":89.784,"z":349.38}},{"monsterId":0,"gadgetId":70520004,"configId":237047,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":563.701,"y":203.065,"z":677.544},"rot":{"x":348.329,"y":359.143,"z":12.786}},{"monsterId":0,"gadgetId":70520009,"configId":237021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":744.337,"y":208.143,"z":634.762},"rot":{"x":0.0,"y":11.506,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":743.153,"y":207.699,"z":632.381},"rot":{"x":0.0,"y":262.963,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":731.604,"y":214.26,"z":662.297},"rot":{"x":0.0,"y":103.003,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":237027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":738.259,"y":212.873,"z":649.357},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":237026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":737.926,"y":212.461,"z":649.064},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":237025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":738.008,"y":212.175,"z":649.861},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":237036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":747.744,"y":225.424,"z":676.754},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":237034,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":746.671,"y":225.897,"z":675.886},"rot":{"x":0.0,"y":271.567,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":237008,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":746.853,"y":226.031,"z":675.611},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":627.021,"y":216.84,"z":695.496},"rot":{"x":18.561,"y":296.501,"z":16.232}},{"monsterId":0,"gadgetId":70520009,"configId":237010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":722.548,"y":222.05,"z":700.661},"rot":{"x":0.0,"y":64.808,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":237023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":688.854,"y":234.78,"z":721.881},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":237031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":738.679,"y":226.439,"z":719.432},"rot":{"x":0.0,"y":261.046,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":237015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":590.642,"y":225.922,"z":741.151},"rot":{"x":5.912,"y":187.844,"z":356.323}},{"monsterId":0,"gadgetId":70520005,"configId":237013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":643.483,"y":225.598,"z":742.892},"rot":{"x":0.0,"y":180.69,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237055,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":600.055,"y":229.125,"z":757.041},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237054,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":594.179,"y":228.044,"z":756.918},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":237033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":720.693,"y":238.596,"z":766.28},"rot":{"x":0.0,"y":261.046,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":237032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":746.061,"y":233.93,"z":753.317},"rot":{"x":0.0,"y":261.046,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":742.058,"y":235.977,"z":763.956},"rot":{"x":0.0,"y":103.003,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":749.717,"y":225.996,"z":675.728},"rot":{"x":10.515,"y":309.663,"z":23.083}},{"monsterId":0,"gadgetId":70520009,"configId":237022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":763.898,"y":229.104,"z":679.268},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":748.733,"y":224.212,"z":697.17},"rot":{"x":0.0,"y":103.003,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":237053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":559.603,"y":210.761,"z":732.251},"rot":{"x":347.96,"y":160.003,"z":11.425}},{"monsterId":0,"gadgetId":70520004,"configId":237049,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":546.784,"y":201.551,"z":705.219},"rot":{"x":356.085,"y":172.758,"z":343.833}},{"monsterId":0,"gadgetId":70520004,"configId":237048,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":553.003,"y":202.073,"z":690.813},"rot":{"x":356.365,"y":113.235,"z":352.647}},{"monsterId":0,"gadgetId":70520005,"configId":237011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":760.651,"y":209.522,"z":621.673},"rot":{"x":3.366,"y":6.124,"z":2.158}}]},{"sceneId":3,"groupId":133104236,"blockId":0,"pos":{"x":863.8691,"y":0.0,"z":654.00037},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":236049,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":781.734,"y":240.87,"z":738.921},"rot":{"x":351.704,"y":31.169,"z":129.97}},{"monsterId":0,"gadgetId":70520001,"configId":236040,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":783.561,"y":240.16,"z":742.34},"rot":{"x":2.7,"y":51.497,"z":131.304}},{"monsterId":0,"gadgetId":70520009,"configId":236035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":775.912,"y":248.411,"z":752.926},"rot":{"x":0.0,"y":208.186,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":236016,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":804.71,"y":227.081,"z":733.666},"rot":{"x":0.0,"y":136.535,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":236015,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":801.6,"y":227.53,"z":728.153},"rot":{"x":0.0,"y":136.535,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":236058,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":801.131,"y":227.585,"z":731.715},"rot":{"x":0.0,"y":136.535,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":236014,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":799.241,"y":228.12,"z":733.614},"rot":{"x":0.0,"y":136.535,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":912.326,"y":235.228,"z":762.633},"rot":{"x":0.0,"y":164.711,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":236054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":891.211,"y":242.211,"z":736.316},"rot":{"x":0.0,"y":114.157,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":236052,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":891.773,"y":241.513,"z":736.338},"rot":{"x":0.0,"y":114.157,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":236053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":891.08,"y":241.799,"z":736.739},"rot":{"x":0.0,"y":114.157,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":236048,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":895.13,"y":240.823,"z":742.092},"rot":{"x":0.0,"y":315.434,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":236062,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":934.189,"y":238.524,"z":735.804},"rot":{"x":5.157,"y":0.712,"z":15.71}},{"monsterId":0,"gadgetId":70520008,"configId":236003,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":984.598,"y":200.055,"z":628.272},"rot":{"x":0.0,"y":320.57,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":236001,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":973.731,"y":200.025,"z":623.716},"rot":{"x":0.0,"y":2.63,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":236044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":949.907,"y":209.45,"z":645.768},"rot":{"x":0.0,"y":121.588,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":236021,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":934.22,"y":206.43,"z":620.33},"rot":{"x":327.919,"y":208.086,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":236020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":932.352,"y":206.008,"z":618.785},"rot":{"x":0.0,"y":152.582,"z":294.123}},{"monsterId":0,"gadgetId":70540005,"configId":236050,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":947.103,"y":242.494,"z":714.977},"rot":{"x":0.0,"y":308.287,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":236036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":933.823,"y":238.897,"z":708.314},"rot":{"x":0.0,"y":266.001,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":236010,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":920.855,"y":209.851,"z":641.828},"rot":{"x":0.0,"y":268.222,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":236007,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":924.574,"y":209.706,"z":645.822},"rot":{"x":0.0,"y":268.222,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":236063,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":909.592,"y":209.82,"z":657.247},"rot":{"x":0.0,"y":112.973,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":236006,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":927.311,"y":209.672,"z":648.905},"rot":{"x":0.0,"y":268.222,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":921.016,"y":228.1,"z":687.199},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":236061,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":913.215,"y":236.175,"z":726.826},"rot":{"x":354.822,"y":0.676,"z":345.123}},{"monsterId":0,"gadgetId":70520004,"configId":236060,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":914.279,"y":235.604,"z":724.038},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":236002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":890.37,"y":206.944,"z":577.985},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":236039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":903.138,"y":203.322,"z":592.857},"rot":{"x":0.0,"y":104.426,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":236008,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":897.827,"y":208.864,"z":635.591},"rot":{"x":0.0,"y":268.222,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":236009,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":901.622,"y":209.124,"z":640.929},"rot":{"x":0.0,"y":268.222,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":236011,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":907.106,"y":208.515,"z":635.631},"rot":{"x":0.0,"y":268.222,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":882.623,"y":215.971,"z":670.579},"rot":{"x":0.0,"y":317.519,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":236046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":856.185,"y":204.168,"z":536.722},"rot":{"x":0.0,"y":181.586,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":236025,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":850.748,"y":215.218,"z":597.335},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":236024,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":851.575,"y":214.938,"z":594.943},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":236023,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":849.634,"y":213.928,"z":596.668},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":236055,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":857.71,"y":209.959,"z":627.52},"rot":{"x":0.0,"y":3.343,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":236056,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":838.739,"y":210.357,"z":591.889},"rot":{"x":0.0,"y":3.343,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":236037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":833.716,"y":222.686,"z":640.348},"rot":{"x":0.0,"y":0.391,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":236005,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":838.539,"y":221.798,"z":680.682},"rot":{"x":0.0,"y":0.0,"z":321.029}},{"monsterId":0,"gadgetId":70520004,"configId":236004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":838.506,"y":221.752,"z":681.697},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":236043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":820.198,"y":211.956,"z":574.589},"rot":{"x":0.0,"y":250.31,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":236033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":824.818,"y":212.436,"z":612.612},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":236032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":824.485,"y":212.024,"z":612.319},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":236031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":824.567,"y":211.738,"z":613.116},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":794.67,"y":201.798,"z":526.983},"rot":{"x":0.0,"y":346.527,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":236018,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":788.193,"y":202.446,"z":558.219},"rot":{"x":5.695,"y":357.812,"z":38.49}},{"monsterId":0,"gadgetId":70540021,"configId":236029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":800.126,"y":211.417,"z":604.194},"rot":{"x":0.0,"y":354.514,"z":261.438}},{"monsterId":0,"gadgetId":70540021,"configId":236028,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":802.116,"y":211.218,"z":603.219},"rot":{"x":0.0,"y":314.0,"z":324.109}},{"monsterId":0,"gadgetId":70540021,"configId":236027,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":799.764,"y":212.734,"z":602.045},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":236019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":787.055,"y":202.779,"z":559.914},"rot":{"x":314.31,"y":311.956,"z":38.535}},{"monsterId":0,"gadgetId":70520001,"configId":236017,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":783.073,"y":202.037,"z":561.349},"rot":{"x":331.488,"y":352.868,"z":27.215}},{"monsterId":0,"gadgetId":70520009,"configId":236057,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":787.56,"y":210.613,"z":631.127},"rot":{"x":0.0,"y":312.439,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":236038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":827.964,"y":233.317,"z":705.677},"rot":{"x":0.0,"y":165.238,"z":0.0}}]},{"sceneId":3,"groupId":155005112,"blockId":0,"pos":{"x":671.80133,"y":0.0,"z":502.23535},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":112005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":664.103,"y":243.215,"z":500.324},"rot":{"x":19.842,"y":191.902,"z":357.925}},{"monsterId":0,"gadgetId":70590036,"configId":112003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":672.071,"y":244.319,"z":502.655},"rot":{"x":340.958,"y":0.0,"z":6.05}},{"monsterId":0,"gadgetId":70590036,"configId":112002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":679.23,"y":244.875,"z":503.727},"rot":{"x":340.958,"y":0.0,"z":6.05}}]},{"sceneId":3,"groupId":133104232,"blockId":0,"pos":{"x":443.6261,"y":0.0,"z":614.189},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":232046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":482.656,"y":202.172,"z":526.359},"rot":{"x":0.0,"y":273.837,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":232047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":483.446,"y":202.458,"z":526.223},"rot":{"x":0.0,"y":273.837,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":232048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":483.176,"y":202.87,"z":526.575},"rot":{"x":0.0,"y":273.837,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":232030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":456.969,"y":200.585,"z":593.025},"rot":{"x":350.62,"y":117.761,"z":353.121}},{"monsterId":0,"gadgetId":70520009,"configId":232027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":506.946,"y":204.792,"z":602.616},"rot":{"x":355.153,"y":9.516,"z":1.901}},{"monsterId":0,"gadgetId":70520005,"configId":232029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":410.981,"y":202.273,"z":597.256},"rot":{"x":349.741,"y":311.903,"z":7.374}},{"monsterId":0,"gadgetId":70520009,"configId":232032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":374.916,"y":202.45,"z":553.753},"rot":{"x":0.0,"y":330.244,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":232018,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":376.48,"y":203.732,"z":579.306},"rot":{"x":0.0,"y":0.0,"z":356.424}},{"monsterId":0,"gadgetId":70520013,"configId":232042,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":382.003,"y":204.231,"z":592.203},"rot":{"x":0.0,"y":44.482,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":232011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":424.282,"y":204.86,"z":626.211},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":232014,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":435.383,"y":203.582,"z":619.35},"rot":{"x":0.0,"y":31.31,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":232035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":397.179,"y":206.114,"z":633.431},"rot":{"x":0.0,"y":221.594,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":232020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":364.485,"y":204.783,"z":579.239},"rot":{"x":2.91,"y":66.124,"z":357.736}},{"monsterId":0,"gadgetId":70520005,"configId":232028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":455.329,"y":203.903,"z":734.102},"rot":{"x":350.717,"y":34.421,"z":3.991}},{"monsterId":0,"gadgetId":70520004,"configId":232043,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":490.654,"y":202.711,"z":719.732},"rot":{"x":0.449,"y":14.518,"z":358.267}},{"monsterId":0,"gadgetId":70520004,"configId":232026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":510.561,"y":202.154,"z":725.83},"rot":{"x":355.865,"y":289.279,"z":352.915}},{"monsterId":0,"gadgetId":70520004,"configId":232044,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":506.198,"y":202.029,"z":706.002},"rot":{"x":11.948,"y":126.529,"z":351.41}}]},{"sceneId":3,"groupId":133222008,"blockId":0,"pos":{"x":-4322.843,"y":0.0,"z":-4223.1177},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":8015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4321.744,"y":226.006,"z":-4225.745},"rot":{"x":68.974,"y":295.588,"z":7.103}},{"monsterId":0,"gadgetId":70520004,"configId":8012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4321.364,"y":225.851,"z":-4225.112},"rot":{"x":67.967,"y":305.28,"z":329.561}},{"monsterId":0,"gadgetId":70520004,"configId":8008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4325.421,"y":228.189,"z":-4218.495},"rot":{"x":52.58,"y":295.14,"z":358.27}}]},{"sceneId":3,"groupId":133106277,"blockId":0,"pos":{"x":-892.589,"y":0.0,"z":1028.3894},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":277001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-892.41,"y":179.375,"z":1031.043},"rot":{"x":340.598,"y":1.969,"z":348.517}},{"monsterId":0,"gadgetId":70520019,"configId":277005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-896.789,"y":179.665,"z":1024.829},"rot":{"x":33.42,"y":135.79,"z":1.304}},{"monsterId":0,"gadgetId":70520019,"configId":277004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-898.785,"y":179.851,"z":1023.9},"rot":{"x":355.06,"y":357.808,"z":347.876}},{"monsterId":0,"gadgetId":70520019,"configId":277010,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-885.945,"y":178.57,"z":1032.227},"rot":{"x":342.516,"y":312.104,"z":6.287}},{"monsterId":0,"gadgetId":70520003,"configId":277002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-889.016,"y":178.604,"z":1029.948},"rot":{"x":357.328,"y":0.125,"z":354.644}}]},{"sceneId":3,"groupId":133004903,"blockId":0,"pos":{"x":2235.971,"y":0.0,"z":-905.556},"spawns":[{"monsterId":0,"gadgetId":71700111,"configId":903001,"level":0,"poseId":0,"gatherItemId":100481,"pos":{"x":2235.971,"y":214.85,"z":-905.556},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155002033,"blockId":0,"pos":{"x":1279.8744,"y":0.0,"z":852.073},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":33003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1289.915,"y":179.922,"z":855.772},"rot":{"x":333.169,"y":181.772,"z":351.25}},{"monsterId":0,"gadgetId":70520004,"configId":33002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1273.51,"y":180.089,"z":851.471},"rot":{"x":7.718,"y":144.835,"z":27.291}},{"monsterId":0,"gadgetId":70520004,"configId":33001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1276.198,"y":180.266,"z":848.976},"rot":{"x":343.614,"y":65.764,"z":5.102}}]},{"sceneId":3,"groupId":155002032,"blockId":0,"pos":{"x":1352.3359,"y":0.0,"z":811.5482},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":32003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1368.866,"y":214.52,"z":826.623},"rot":{"x":0.0,"y":126.562,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":32004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1348.896,"y":221.696,"z":792.203},"rot":{"x":0.0,"y":349.789,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":32002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1349.824,"y":218.926,"z":815.678},"rot":{"x":0.0,"y":22.325,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":32001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1341.758,"y":219.767,"z":811.689},"rot":{"x":359.931,"y":47.242,"z":27.062}}]},{"sceneId":3,"groupId":133106274,"blockId":0,"pos":{"x":-670.058,"y":0.0,"z":877.56226},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":274004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-671.519,"y":147.774,"z":875.687},"rot":{"x":0.0,"y":317.277,"z":0.0}},{"monsterId":0,"gadgetId":70520019,"configId":274005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-668.532,"y":146.167,"z":878.225},"rot":{"x":342.023,"y":55.911,"z":7.924}},{"monsterId":0,"gadgetId":70520003,"configId":274002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-669.116,"y":146.378,"z":876.767},"rot":{"x":353.694,"y":1.839,"z":327.518}},{"monsterId":0,"gadgetId":70520003,"configId":274001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-671.065,"y":147.038,"z":879.57},"rot":{"x":13.904,"y":73.537,"z":0.0}}]},{"sceneId":3,"groupId":133104253,"blockId":0,"pos":{"x":64.788506,"y":0.0,"z":671.75183},"spawns":[{"monsterId":0,"gadgetId":70540014,"configId":253014,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":202.485,"y":200.0,"z":738.568},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":253057,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":239.165,"y":200.1,"z":737.104},"rot":{"x":0.0,"y":357.273,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":253010,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":133.768,"y":201.622,"z":716.969},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":253041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":26.216,"y":231.729,"z":717.327},"rot":{"x":1.301,"y":0.411,"z":327.042}},{"monsterId":0,"gadgetId":70520005,"configId":253058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":8.692,"y":255.325,"z":761.623},"rot":{"x":2.351,"y":243.482,"z":2.07}},{"monsterId":0,"gadgetId":70540021,"configId":253032,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":9.408,"y":258.36,"z":764.942},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":253031,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":10.235,"y":258.08,"z":762.55},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":253030,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":8.294,"y":257.07,"z":764.275},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":253022,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":102.248,"y":207.57,"z":705.881},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":253055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":116.678,"y":204.949,"z":706.74},"rot":{"x":4.245,"y":309.071,"z":351.995}},{"monsterId":0,"gadgetId":70540014,"configId":253012,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":167.585,"y":200.0,"z":700.049},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":253056,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":32.284,"y":214.418,"z":673.684},"rot":{"x":4.209,"y":156.488,"z":18.002}},{"monsterId":0,"gadgetId":70540014,"configId":253024,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":129.079,"y":204.058,"z":684.794},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":253061,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":6.78,"y":255.264,"z":761.19},"rot":{"x":2.749,"y":173.452,"z":358.5}},{"monsterId":0,"gadgetId":70520005,"configId":253060,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":7.633,"y":255.385,"z":763.225},"rot":{"x":359.701,"y":297.564,"z":3.117}},{"monsterId":0,"gadgetId":70520009,"configId":253040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":5.095,"y":228.026,"z":652.517},"rot":{"x":15.726,"y":125.374,"z":0.456}},{"monsterId":0,"gadgetId":70520004,"configId":253043,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":45.48,"y":212.621,"z":650.953},"rot":{"x":0.0,"y":147.16,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":253048,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":63.31,"y":209.571,"z":653.766},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":253047,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":51.945,"y":210.928,"z":665.398},"rot":{"x":357.671,"y":147.0,"z":7.862}},{"monsterId":0,"gadgetId":70520004,"configId":253042,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":50.317,"y":212.276,"z":660.704},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":253018,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":118.21,"y":202.49,"z":649.864},"rot":{"x":0.0,"y":83.036,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":253028,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":17.612,"y":228.813,"z":643.654},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":253027,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":18.439,"y":228.533,"z":641.262},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":253026,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":16.498,"y":227.523,"z":642.987},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":253045,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":58.35,"y":209.775,"z":636.289},"rot":{"x":0.0,"y":147.16,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":253006,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":83.953,"y":204.152,"z":629.166},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":253002,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":137.121,"y":200.832,"z":641.017},"rot":{"x":0.0,"y":259.958,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":253016,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":137.172,"y":200.472,"z":643.29},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":253039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":5.639,"y":222.991,"z":619.483},"rot":{"x":334.937,"y":313.869,"z":351.923}},{"monsterId":0,"gadgetId":70540014,"configId":253008,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":86.687,"y":204.152,"z":627.565},"rot":{"x":0.0,"y":252.427,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":253059,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":72.907,"y":208.927,"z":614.746},"rot":{"x":5.209,"y":123.582,"z":358.979}},{"monsterId":0,"gadgetId":70540014,"configId":253004,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":83.978,"y":204.152,"z":627.948},"rot":{"x":0.0,"y":166.052,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":253038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":4.973,"y":210.238,"z":550.526},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":253037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":4.64,"y":209.826,"z":550.233},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":253036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":4.722,"y":209.54,"z":551.03},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133104252,"blockId":0,"pos":{"x":900.13153,"y":0.0,"z":328.35028},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":252017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1015.162,"y":208.286,"z":331.561},"rot":{"x":15.252,"y":313.506,"z":350.285}},{"monsterId":0,"gadgetId":70520009,"configId":252016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":953.033,"y":200.124,"z":326.193},"rot":{"x":0.71,"y":190.901,"z":1.048}},{"monsterId":0,"gadgetId":70540021,"configId":252002,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":935.263,"y":213.591,"z":339.025},"rot":{"x":-0.002,"y":344.118,"z":27.525}},{"monsterId":0,"gadgetId":70540021,"configId":252001,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":934.97,"y":213.584,"z":338.938},"rot":{"x":25.045,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":252004,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":902.109,"y":281.102,"z":339.576},"rot":{"x":0.0,"y":279.216,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":252005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":901.919,"y":281.102,"z":339.607},"rot":{"x":0.0,"y":279.216,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":252018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":896.455,"y":213.576,"z":352.614},"rot":{"x":0.0,"y":150.49,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":252015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":885.516,"y":209.0,"z":265.274},"rot":{"x":3.353,"y":304.854,"z":354.938}},{"monsterId":0,"gadgetId":70540004,"configId":252008,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":883.623,"y":275.289,"z":324.901},"rot":{"x":8.36,"y":108.88,"z":16.516}},{"monsterId":0,"gadgetId":70540004,"configId":252007,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":883.443,"y":275.317,"z":324.963},"rot":{"x":8.36,"y":108.88,"z":16.516}},{"monsterId":0,"gadgetId":70540004,"configId":252011,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":878.371,"y":281.293,"z":339.323},"rot":{"x":0.0,"y":107.665,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":252010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":878.188,"y":281.293,"z":339.381},"rot":{"x":0.0,"y":107.665,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":252014,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":887.732,"y":285.606,"z":348.475},"rot":{"x":0.0,"y":107.665,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":252013,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":887.549,"y":285.606,"z":348.533},"rot":{"x":0.0,"y":107.665,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":252019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":778.639,"y":208.418,"z":266.89},"rot":{"x":5.798,"y":329.381,"z":2.782}}]},{"sceneId":3,"groupId":133104251,"blockId":0,"pos":{"x":118.79177,"y":0.0,"z":314.193},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":251068,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":231.818,"y":223.843,"z":285.858},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":251079,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":239.185,"y":213.485,"z":318.083},"rot":{"x":341.708,"y":245.784,"z":353.207}},{"monsterId":0,"gadgetId":70520005,"configId":251085,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":200.456,"y":229.347,"z":271.859},"rot":{"x":354.871,"y":37.728,"z":345.107}},{"monsterId":0,"gadgetId":70520009,"configId":251069,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":206.018,"y":226.752,"z":284.875},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":251070,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":205.267,"y":222.655,"z":311.443},"rot":{"x":357.907,"y":294.102,"z":6.728}},{"monsterId":0,"gadgetId":70520005,"configId":251067,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":186.15,"y":233.724,"z":281.042},"rot":{"x":352.153,"y":0.79,"z":348.517}},{"monsterId":0,"gadgetId":70520004,"configId":251088,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":177.564,"y":223.277,"z":321.24},"rot":{"x":347.901,"y":253.133,"z":353.606}},{"monsterId":0,"gadgetId":70520009,"configId":251081,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":184.249,"y":220.441,"z":347.057},"rot":{"x":358.69,"y":314.002,"z":357.492}},{"monsterId":0,"gadgetId":70520009,"configId":251077,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":155.571,"y":237.336,"z":285.066},"rot":{"x":22.83,"y":196.976,"z":11.793}},{"monsterId":0,"gadgetId":70540005,"configId":251044,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":157.437,"y":246.77,"z":298.34},"rot":{"x":5.369,"y":74.114,"z":351.828}},{"monsterId":0,"gadgetId":70540005,"configId":251043,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":156.771,"y":247.022,"z":298.895},"rot":{"x":350.003,"y":0.047,"z":359.463}},{"monsterId":0,"gadgetId":70540005,"configId":251042,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":157.24,"y":246.77,"z":299.015},"rot":{"x":2.459,"y":359.722,"z":347.086}},{"monsterId":0,"gadgetId":70520001,"configId":251008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":149.523,"y":227.307,"z":331.113},"rot":{"x":24.458,"y":347.667,"z":333.116}},{"monsterId":0,"gadgetId":70520001,"configId":251007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":153.762,"y":222.191,"z":356.723},"rot":{"x":319.592,"y":314.929,"z":12.289}},{"monsterId":0,"gadgetId":70520001,"configId":251010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":133.066,"y":224.889,"z":344.135},"rot":{"x":43.321,"y":352.686,"z":350.728}},{"monsterId":0,"gadgetId":70540021,"configId":251060,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":108.843,"y":242.359,"z":267.751},"rot":{"x":1.701,"y":10.568,"z":13.128}},{"monsterId":0,"gadgetId":70540021,"configId":251062,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":108.841,"y":242.339,"z":268.511},"rot":{"x":4.321,"y":42.073,"z":15.29}},{"monsterId":0,"gadgetId":70520009,"configId":251054,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":120.292,"y":240.614,"z":268.394},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":251061,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":108.279,"y":243.394,"z":268.359},"rot":{"x":4.486,"y":88.739,"z":31.153}},{"monsterId":0,"gadgetId":70520001,"configId":251034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":109.237,"y":247.327,"z":300.974},"rot":{"x":339.71,"y":309.511,"z":4.287}},{"monsterId":0,"gadgetId":70520001,"configId":251033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":108.194,"y":246.924,"z":298.958},"rot":{"x":11.663,"y":85.455,"z":340.516}},{"monsterId":0,"gadgetId":70520005,"configId":251015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":122.779,"y":242.259,"z":296.321},"rot":{"x":347.828,"y":0.858,"z":348.594}},{"monsterId":0,"gadgetId":70540004,"configId":251027,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":115.882,"y":285.088,"z":334.63},"rot":{"x":353.797,"y":359.242,"z":13.931}},{"monsterId":0,"gadgetId":70540004,"configId":251026,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":115.884,"y":285.068,"z":334.439},"rot":{"x":353.797,"y":359.242,"z":13.931}},{"monsterId":0,"gadgetId":70540021,"configId":251031,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":105.243,"y":246.665,"z":258.382},"rot":{"x":16.174,"y":358.24,"z":347.66}},{"monsterId":0,"gadgetId":70540021,"configId":251030,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":106.066,"y":246.899,"z":255.984},"rot":{"x":16.174,"y":358.24,"z":347.66}},{"monsterId":0,"gadgetId":70540021,"configId":251029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":103.909,"y":245.869,"z":257.416},"rot":{"x":16.174,"y":358.24,"z":347.66}},{"monsterId":0,"gadgetId":70520005,"configId":251087,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":93.399,"y":245.803,"z":289.477},"rot":{"x":0.701,"y":80.061,"z":339.051}},{"monsterId":0,"gadgetId":70520001,"configId":251032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":106.359,"y":249.012,"z":304.28},"rot":{"x":344.656,"y":352.498,"z":350.757}},{"monsterId":0,"gadgetId":70520004,"configId":251056,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":73.258,"y":252.565,"z":303.241},"rot":{"x":337.537,"y":2.288,"z":348.517}},{"monsterId":0,"gadgetId":70520005,"configId":251014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":83.132,"y":251.47,"z":301.908},"rot":{"x":335.545,"y":3.057,"z":345.963}},{"monsterId":0,"gadgetId":70540001,"configId":251038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":82.58,"y":257.249,"z":326.579},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":251037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":82.247,"y":256.837,"z":326.286},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":251036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":82.329,"y":256.551,"z":327.083},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":251041,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":127.283,"y":287.042,"z":351.149},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":251040,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":127.283,"y":287.042,"z":350.957},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":251075,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":130.643,"y":286.87,"z":351.597},"rot":{"x":0.0,"y":215.384,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":251009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":131.047,"y":225.323,"z":349.56},"rot":{"x":24.301,"y":78.03,"z":22.673}},{"monsterId":0,"gadgetId":70520001,"configId":251006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":134.903,"y":222.471,"z":365.178},"rot":{"x":333.212,"y":320.964,"z":4.48}},{"monsterId":0,"gadgetId":70520013,"configId":251089,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":50.704,"y":254.765,"z":261.827},"rot":{"x":347.038,"y":261.547,"z":356.621}},{"monsterId":0,"gadgetId":70520004,"configId":251072,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":63.776,"y":251.487,"z":266.492},"rot":{"x":356.272,"y":297.546,"z":349.416}},{"monsterId":0,"gadgetId":70520004,"configId":251071,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":64.708,"y":251.665,"z":258.296},"rot":{"x":333.09,"y":297.083,"z":359.428}},{"monsterId":0,"gadgetId":70520004,"configId":251005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":48.057,"y":253.941,"z":287.412},"rot":{"x":2.658,"y":359.814,"z":351.995}},{"monsterId":0,"gadgetId":70520004,"configId":251057,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":61.301,"y":253.628,"z":296.609},"rot":{"x":342.889,"y":4.37,"z":311.489}},{"monsterId":0,"gadgetId":70520004,"configId":251001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":49.692,"y":258.253,"z":306.059},"rot":{"x":347.049,"y":1.144,"z":347.717}},{"monsterId":0,"gadgetId":70520004,"configId":251004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":60.527,"y":257.583,"z":318.712},"rot":{"x":355.591,"y":0.376,"z":351.116}},{"monsterId":0,"gadgetId":70520009,"configId":251084,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":61.118,"y":262.112,"z":352.812},"rot":{"x":11.867,"y":130.266,"z":359.646}},{"monsterId":0,"gadgetId":70520004,"configId":251055,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":33.274,"y":259.495,"z":297.316},"rot":{"x":349.379,"y":-0.003,"z":338.233}},{"monsterId":0,"gadgetId":70540021,"configId":251065,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":28.337,"y":277.623,"z":312.88},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":251066,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":27.51,"y":277.903,"z":315.272},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":251064,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":26.396,"y":276.613,"z":314.605},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":251059,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":10.028,"y":269.491,"z":365.697},"rot":{"x":354.63,"y":1.331,"z":339.437}},{"monsterId":0,"gadgetId":70520009,"configId":251082,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1.012,"y":270.375,"z":265.701},"rot":{"x":1.479,"y":26.934,"z":354.954}},{"monsterId":0,"gadgetId":70520004,"configId":251058,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":3.909,"y":271.788,"z":357.686},"rot":{"x":356.116,"y":1.171,"z":333.418}},{"monsterId":0,"gadgetId":70520009,"configId":251080,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":194.789,"y":203.984,"z":396.624},"rot":{"x":3.595,"y":313.22,"z":353.594}},{"monsterId":0,"gadgetId":70520004,"configId":251012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":221.589,"y":208.548,"z":394.623},"rot":{"x":345.951,"y":0.082,"z":359.335}},{"monsterId":0,"gadgetId":70520004,"configId":251011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":211.321,"y":205.66,"z":399.235},"rot":{"x":2.604,"y":0.321,"z":14.037}},{"monsterId":0,"gadgetId":70540004,"configId":251021,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":254.339,"y":234.674,"z":388.782},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":251020,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":254.339,"y":234.674,"z":388.59},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133104250,"blockId":0,"pos":{"x":373.61032,"y":0.0,"z":163.58574},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":250048,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":275.024,"y":203.671,"z":31.122},"rot":{"x":358.567,"y":287.026,"z":10.669}},{"monsterId":0,"gadgetId":70520009,"configId":250045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":320.15,"y":219.074,"z":248.503},"rot":{"x":352.823,"y":211.55,"z":359.774}},{"monsterId":0,"gadgetId":70520005,"configId":250027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":366.018,"y":216.82,"z":238.059},"rot":{"x":2.635,"y":359.65,"z":351.987}},{"monsterId":0,"gadgetId":70520005,"configId":250024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":396.516,"y":213.548,"z":233.79},"rot":{"x":1.863,"y":359.256,"z":358.225}},{"monsterId":0,"gadgetId":70520005,"configId":250053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":414.733,"y":198.225,"z":233.827},"rot":{"x":359.214,"y":351.584,"z":354.702}},{"monsterId":0,"gadgetId":70520005,"configId":250049,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":282.838,"y":221.899,"z":239.673},"rot":{"x":3.493,"y":102.405,"z":0.768}},{"monsterId":0,"gadgetId":70540004,"configId":250034,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":331.886,"y":240.562,"z":213.482},"rot":{"x":0.0,"y":327.069,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":250033,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":331.99,"y":240.562,"z":213.321},"rot":{"x":0.0,"y":327.069,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":250028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":256.543,"y":221.374,"z":214.566},"rot":{"x":0.866,"y":359.763,"z":352.872}},{"monsterId":0,"gadgetId":70520005,"configId":250001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":297.761,"y":217.943,"z":168.962},"rot":{"x":8.706,"y":359.123,"z":348.517}},{"monsterId":0,"gadgetId":70540001,"configId":250009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":325.998,"y":220.043,"z":173.655},"rot":{"x":0.005,"y":359.951,"z":6.242}},{"monsterId":0,"gadgetId":70540001,"configId":250008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":325.712,"y":219.597,"z":173.362},"rot":{"x":0.005,"y":359.951,"z":6.242}},{"monsterId":0,"gadgetId":70540001,"configId":250007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":325.824,"y":219.321,"z":174.159},"rot":{"x":0.005,"y":359.951,"z":6.242}},{"monsterId":0,"gadgetId":70520013,"configId":250057,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":487.883,"y":195.737,"z":246.62},"rot":{"x":358.597,"y":250.602,"z":17.052}},{"monsterId":0,"gadgetId":70520004,"configId":250060,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":492.997,"y":195.18,"z":237.611},"rot":{"x":3.904,"y":108.417,"z":19.879}},{"monsterId":0,"gadgetId":70520004,"configId":250047,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":491.041,"y":195.193,"z":234.609},"rot":{"x":3.904,"y":205.722,"z":19.879}},{"monsterId":0,"gadgetId":70540005,"configId":250021,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":492.274,"y":196.581,"z":247.007},"rot":{"x":0.0,"y":0.0,"z":18.533}},{"monsterId":0,"gadgetId":70540014,"configId":250019,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":507.279,"y":194.99,"z":244.095},"rot":{"x":0.0,"y":343.554,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":250059,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":508.712,"y":195.606,"z":211.968},"rot":{"x":0.0,"y":304.655,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":250025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":471.391,"y":195.485,"z":203.114},"rot":{"x":344.252,"y":309.724,"z":3.878}},{"monsterId":0,"gadgetId":70520004,"configId":250054,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":493.099,"y":195.14,"z":202.372},"rot":{"x":1.773,"y":262.018,"z":359.752}},{"monsterId":0,"gadgetId":70520004,"configId":250056,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":508.296,"y":195.606,"z":193.015},"rot":{"x":0.0,"y":158.578,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":250026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":454.707,"y":196.304,"z":187.394},"rot":{"x":355.412,"y":12.829,"z":348.145}},{"monsterId":0,"gadgetId":70520008,"configId":250023,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":463.657,"y":194.906,"z":172.3},"rot":{"x":0.0,"y":318.861,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":250051,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":415.687,"y":199.956,"z":151.345},"rot":{"x":1.917,"y":27.168,"z":7.972}},{"monsterId":0,"gadgetId":70520001,"configId":250038,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":418.942,"y":201.089,"z":126.512},"rot":{"x":14.111,"y":25.141,"z":16.868}},{"monsterId":0,"gadgetId":70520001,"configId":250005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":425.936,"y":201.416,"z":119.063},"rot":{"x":323.438,"y":35.812,"z":8.397}},{"monsterId":0,"gadgetId":70520001,"configId":250020,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":420.405,"y":202.022,"z":120.542},"rot":{"x":327.273,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":250058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":388.135,"y":215.507,"z":206.144},"rot":{"x":359.029,"y":182.454,"z":1.75}},{"monsterId":0,"gadgetId":70520005,"configId":250055,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":436.009,"y":201.641,"z":105.471},"rot":{"x":0.0,"y":210.449,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":250064,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":381.126,"y":202.82,"z":124.403},"rot":{"x":1.712,"y":33.584,"z":346.361}},{"monsterId":0,"gadgetId":70540001,"configId":250063,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":380.608,"y":202.507,"z":124.383},"rot":{"x":1.712,"y":33.584,"z":346.361}},{"monsterId":0,"gadgetId":70540001,"configId":250062,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":381.054,"y":202.186,"z":125.033},"rot":{"x":1.712,"y":33.584,"z":346.361}},{"monsterId":0,"gadgetId":70520005,"configId":250022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":371.059,"y":216.937,"z":184.559},"rot":{"x":358.21,"y":0.07,"z":-0.002}},{"monsterId":0,"gadgetId":70520009,"configId":250044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":351.917,"y":204.08,"z":119.159},"rot":{"x":352.009,"y":0.894,"z":358.989}},{"monsterId":0,"gadgetId":70520004,"configId":250043,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":362.877,"y":208.019,"z":133.273},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":250004,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":376.679,"y":227.254,"z":197.709},"rot":{"x":2.109,"y":359.989,"z":359.377}},{"monsterId":0,"gadgetId":70540004,"configId":250003,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":376.679,"y":227.261,"z":197.517},"rot":{"x":2.109,"y":359.989,"z":359.377}},{"monsterId":0,"gadgetId":70520009,"configId":250039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":346.208,"y":200.287,"z":47.204},"rot":{"x":0.0,"y":359.986,"z":358.21}},{"monsterId":0,"gadgetId":70540014,"configId":250015,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":335.425,"y":200.0,"z":93.118},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":250042,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":336.09,"y":205.654,"z":108.808},"rot":{"x":34.7,"y":57.104,"z":340.299}},{"monsterId":0,"gadgetId":70520001,"configId":250041,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":341.43,"y":206.41,"z":121.636},"rot":{"x":42.017,"y":160.031,"z":359.498}},{"monsterId":0,"gadgetId":70520001,"configId":250040,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":335.679,"y":205.732,"z":112.049},"rot":{"x":6.17,"y":26.557,"z":322.12}},{"monsterId":0,"gadgetId":70520009,"configId":250050,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":345.508,"y":217.427,"z":161.951},"rot":{"x":336.458,"y":257.042,"z":359.37}},{"monsterId":0,"gadgetId":70540014,"configId":250017,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":324.614,"y":200.0,"z":82.123},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":250037,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":319.24,"y":215.8,"z":121.934},"rot":{"x":324.329,"y":308.448,"z":356.558}},{"monsterId":0,"gadgetId":70540021,"configId":250011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":317.096,"y":217.52,"z":122.994},"rot":{"x":3.581,"y":0.063,"z":355.545}},{"monsterId":0,"gadgetId":70540021,"configId":250036,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":317.646,"y":216.021,"z":120.814},"rot":{"x":27.813,"y":357.748,"z":351.939}},{"monsterId":0,"gadgetId":70540021,"configId":250012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":319.196,"y":218.527,"z":121.312},"rot":{"x":3.581,"y":0.063,"z":355.545}},{"monsterId":0,"gadgetId":70540021,"configId":250013,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":318.159,"y":218.591,"z":123.664},"rot":{"x":3.581,"y":0.063,"z":355.545}},{"monsterId":0,"gadgetId":70540021,"configId":250035,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":318.36,"y":215.763,"z":123.455},"rot":{"x":1.896,"y":3.96,"z":28.966}},{"monsterId":0,"gadgetId":70520009,"configId":250052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":307.237,"y":218.036,"z":83.366},"rot":{"x":357.579,"y":132.236,"z":357.397}},{"monsterId":0,"gadgetId":70540004,"configId":250031,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":293.562,"y":227.331,"z":162.552},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":250030,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":293.562,"y":227.331,"z":162.36},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":250046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":270.118,"y":219.61,"z":156.175},"rot":{"x":10.027,"y":17.576,"z":338.357}}]},{"sceneId":3,"groupId":133104248,"blockId":0,"pos":{"x":390.7875,"y":0.0,"z":377.85904},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":248083,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":457.575,"y":204.406,"z":286.363},"rot":{"x":6.259,"y":347.244,"z":346.208}},{"monsterId":0,"gadgetId":70540001,"configId":248104,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":462.889,"y":212.12,"z":380.602},"rot":{"x":354.177,"y":34.689,"z":8.497}},{"monsterId":0,"gadgetId":70540001,"configId":248103,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":463.515,"y":211.979,"z":381.161},"rot":{"x":354.177,"y":34.689,"z":8.497}},{"monsterId":0,"gadgetId":70540001,"configId":248105,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":463.127,"y":212.662,"z":380.727},"rot":{"x":354.177,"y":34.689,"z":8.497}},{"monsterId":0,"gadgetId":70520004,"configId":248017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":462.659,"y":213.921,"z":403.536},"rot":{"x":0.0,"y":0.0,"z":349.38}},{"monsterId":0,"gadgetId":70520004,"configId":248016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":463.055,"y":213.93,"z":401.021},"rot":{"x":5.35,"y":359.875,"z":357.316}},{"monsterId":0,"gadgetId":70520004,"configId":248021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":450.045,"y":215.37,"z":422.394},"rot":{"x":357.324,"y":0.104,"z":355.533}},{"monsterId":0,"gadgetId":70520004,"configId":248018,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":464.693,"y":213.17,"z":426.164},"rot":{"x":351.245,"y":0.748,"z":350.247}},{"monsterId":0,"gadgetId":70520004,"configId":248015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":466.451,"y":214.532,"z":437.813},"rot":{"x":353.759,"y":0.049,"z":359.105}},{"monsterId":0,"gadgetId":70520005,"configId":248115,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":440.321,"y":200.297,"z":269.067},"rot":{"x":8.262,"y":219.531,"z":13.435}},{"monsterId":0,"gadgetId":70520009,"configId":248087,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":446.704,"y":211.493,"z":311.075},"rot":{"x":1.874,"y":92.743,"z":358.299}},{"monsterId":0,"gadgetId":70540001,"configId":248042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":436.627,"y":211.252,"z":331.654},"rot":{"x":357.227,"y":359.394,"z":6.386}},{"monsterId":0,"gadgetId":70540001,"configId":248041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":436.375,"y":210.804,"z":331.537},"rot":{"x":357.227,"y":359.394,"z":6.386}},{"monsterId":0,"gadgetId":70540001,"configId":248040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":436.476,"y":210.533,"z":332.304},"rot":{"x":357.227,"y":359.394,"z":6.386}},{"monsterId":0,"gadgetId":70520009,"configId":248029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":441.635,"y":210.768,"z":376.111},"rot":{"x":3.706,"y":318.62,"z":1.5}},{"monsterId":0,"gadgetId":70540005,"configId":248020,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":434.368,"y":210.311,"z":399.852},"rot":{"x":353.099,"y":35.481,"z":327.815}},{"monsterId":0,"gadgetId":70540005,"configId":248019,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":434.398,"y":210.211,"z":400.052},"rot":{"x":13.17,"y":359.146,"z":352.614}},{"monsterId":0,"gadgetId":70520009,"configId":248089,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":439.492,"y":217.193,"z":450.454},"rot":{"x":5.53,"y":217.523,"z":14.165}},{"monsterId":0,"gadgetId":70520001,"configId":248007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":429.489,"y":205.421,"z":461.266},"rot":{"x":358.195,"y":303.438,"z":324.182}},{"monsterId":0,"gadgetId":70520001,"configId":248008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":430.191,"y":205.883,"z":462.396},"rot":{"x":358.195,"y":232.712,"z":324.182}},{"monsterId":0,"gadgetId":70520005,"configId":248038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":470.159,"y":215.999,"z":473.932},"rot":{"x":355.448,"y":292.864,"z":3.888}},{"monsterId":0,"gadgetId":70520005,"configId":248023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":498.93,"y":213.517,"z":487.075},"rot":{"x":9.209,"y":0.577,"z":7.155}},{"monsterId":0,"gadgetId":70520001,"configId":248006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":477.39,"y":204.429,"z":505.995},"rot":{"x":358.195,"y":303.438,"z":324.182}},{"monsterId":0,"gadgetId":70520001,"configId":248005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":496.293,"y":203.606,"z":507.126},"rot":{"x":358.195,"y":303.438,"z":324.182}},{"monsterId":0,"gadgetId":70520001,"configId":248004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":497.125,"y":203.063,"z":508.892},"rot":{"x":0.943,"y":0.773,"z":334.716}},{"monsterId":0,"gadgetId":70520001,"configId":248010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":432.393,"y":205.986,"z":468.618},"rot":{"x":31.286,"y":198.662,"z":339.986}},{"monsterId":0,"gadgetId":70520001,"configId":248009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":421.805,"y":205.078,"z":461.377},"rot":{"x":31.286,"y":305.666,"z":339.986}},{"monsterId":0,"gadgetId":70520009,"configId":248092,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":418.521,"y":200.735,"z":488.023},"rot":{"x":10.08,"y":326.351,"z":354.402}},{"monsterId":0,"gadgetId":70520009,"configId":248085,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":399.631,"y":204.856,"z":444.254},"rot":{"x":3.959,"y":227.91,"z":344.761}},{"monsterId":0,"gadgetId":70520005,"configId":248082,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":402.692,"y":202.492,"z":475.635},"rot":{"x":0.0,"y":265.124,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":248057,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":374.33,"y":202.577,"z":479.745},"rot":{"x":6.217,"y":359.674,"z":355.524}},{"monsterId":0,"gadgetId":70520005,"configId":248058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":378.676,"y":201.277,"z":492.88},"rot":{"x":352.652,"y":188.496,"z":6.951}},{"monsterId":0,"gadgetId":70520009,"configId":248086,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":469.213,"y":207.191,"z":363.995},"rot":{"x":18.092,"y":180.749,"z":6.166}},{"monsterId":0,"gadgetId":70520001,"configId":248003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":492.443,"y":196.847,"z":304.338},"rot":{"x":15.367,"y":53.274,"z":319.516}},{"monsterId":0,"gadgetId":70520001,"configId":248002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":504.4,"y":198.294,"z":303.906},"rot":{"x":335.041,"y":40.201,"z":345.107}},{"monsterId":0,"gadgetId":70520001,"configId":248001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":502.873,"y":197.731,"z":305.2},"rot":{"x":352.208,"y":353.627,"z":12.925}},{"monsterId":0,"gadgetId":70520005,"configId":248022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":506.055,"y":214.701,"z":425.696},"rot":{"x":0.0,"y":309.702,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":248114,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":473.485,"y":198.754,"z":274.829},"rot":{"x":353.847,"y":0.525,"z":350.247}},{"monsterId":0,"gadgetId":70540021,"configId":248051,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":408.836,"y":203.67,"z":272.224},"rot":{"x":0.0,"y":321.14,"z":309.829}},{"monsterId":0,"gadgetId":70540021,"configId":248052,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":409.909,"y":203.952,"z":277.261},"rot":{"x":307.98,"y":314.218,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":248053,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":411.056,"y":203.377,"z":273.337},"rot":{"x":0.0,"y":321.14,"z":38.986}},{"monsterId":0,"gadgetId":70540021,"configId":248054,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":409.941,"y":203.836,"z":274.974},"rot":{"x":27.875,"y":347.315,"z":13.693}},{"monsterId":0,"gadgetId":70540021,"configId":248055,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":409.822,"y":203.477,"z":272.384},"rot":{"x":339.235,"y":291.56,"z":44.917}},{"monsterId":0,"gadgetId":70540021,"configId":248065,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":421.216,"y":212.446,"z":393.022},"rot":{"x":10.31,"y":358.313,"z":349.251}},{"monsterId":0,"gadgetId":70540021,"configId":248064,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":422.047,"y":212.451,"z":390.615},"rot":{"x":10.31,"y":358.313,"z":349.251}},{"monsterId":0,"gadgetId":70540021,"configId":248063,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":419.906,"y":211.522,"z":392.137},"rot":{"x":10.31,"y":358.313,"z":349.251}},{"monsterId":0,"gadgetId":70540021,"configId":248050,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":405.222,"y":210.903,"z":292.586},"rot":{"x":5.825,"y":166.712,"z":1.372}},{"monsterId":0,"gadgetId":70540021,"configId":248049,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":403.857,"y":210.887,"z":294.736},"rot":{"x":5.825,"y":166.712,"z":1.372}},{"monsterId":0,"gadgetId":70540021,"configId":248048,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":406.092,"y":209.661,"z":293.611},"rot":{"x":5.825,"y":166.712,"z":1.372}},{"monsterId":0,"gadgetId":70520009,"configId":248034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":405.498,"y":213.633,"z":386.298},"rot":{"x":357.051,"y":310.434,"z":347.137}},{"monsterId":0,"gadgetId":70520005,"configId":248028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":377.857,"y":215.001,"z":271.809},"rot":{"x":12.275,"y":358.944,"z":356.281}},{"monsterId":0,"gadgetId":70540001,"configId":248014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":375.388,"y":215.301,"z":292.11},"rot":{"x":0.123,"y":0.376,"z":341.834}},{"monsterId":0,"gadgetId":70540001,"configId":248013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":374.941,"y":215.014,"z":291.82},"rot":{"x":0.123,"y":0.376,"z":341.834}},{"monsterId":0,"gadgetId":70540001,"configId":248012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":374.935,"y":214.715,"z":292.616},"rot":{"x":0.123,"y":0.376,"z":341.834}},{"monsterId":0,"gadgetId":70540001,"configId":248113,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":379.27,"y":215.408,"z":338.808},"rot":{"x":16.869,"y":220.748,"z":3.014}},{"monsterId":0,"gadgetId":70540001,"configId":248112,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":379.769,"y":215.083,"z":338.911},"rot":{"x":16.869,"y":220.748,"z":3.014}},{"monsterId":0,"gadgetId":70540001,"configId":248111,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":379.251,"y":214.582,"z":338.459},"rot":{"x":16.869,"y":220.748,"z":3.014}},{"monsterId":0,"gadgetId":70520005,"configId":248093,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":369.011,"y":228.587,"z":408.028},"rot":{"x":0.0,"y":220.982,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":248091,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":353.251,"y":216.626,"z":286.913},"rot":{"x":358.801,"y":85.315,"z":7.244}},{"monsterId":0,"gadgetId":70520009,"configId":248030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":354.89,"y":214.779,"z":327.785},"rot":{"x":341.904,"y":0.355,"z":348.147}},{"monsterId":0,"gadgetId":70520004,"configId":248099,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":365.238,"y":217.114,"z":350.923},"rot":{"x":346.839,"y":242.938,"z":22.971}},{"monsterId":0,"gadgetId":70520005,"configId":248026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":348.449,"y":226.172,"z":367.025},"rot":{"x":15.074,"y":0.06,"z":7.379}},{"monsterId":0,"gadgetId":70520001,"configId":248045,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":355.904,"y":220.36,"z":385.475},"rot":{"x":45.956,"y":311.921,"z":21.439}},{"monsterId":0,"gadgetId":70520001,"configId":248046,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":351.878,"y":220.035,"z":379.12},"rot":{"x":42.895,"y":3.511,"z":41.453}},{"monsterId":0,"gadgetId":70520001,"configId":248044,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":351.718,"y":219.795,"z":378.288},"rot":{"x":0.0,"y":0.0,"z":27.448}},{"monsterId":0,"gadgetId":70520004,"configId":248097,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":366.982,"y":219.497,"z":369.988},"rot":{"x":347.723,"y":339.952,"z":359.79}},{"monsterId":0,"gadgetId":70520001,"configId":248061,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":363.328,"y":204.467,"z":436.209},"rot":{"x":349.601,"y":264.659,"z":335.342}},{"monsterId":0,"gadgetId":70520001,"configId":248060,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":366.26,"y":206.212,"z":431.407},"rot":{"x":333.89,"y":276.515,"z":339.595}},{"monsterId":0,"gadgetId":70520001,"configId":248043,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":358.204,"y":203.2,"z":440.421},"rot":{"x":330.07,"y":259.379,"z":339.287}},{"monsterId":0,"gadgetId":70520005,"configId":248088,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":323.959,"y":215.967,"z":314.232},"rot":{"x":356.501,"y":231.188,"z":357.081}},{"monsterId":0,"gadgetId":70520005,"configId":248069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":312.654,"y":215.823,"z":333.393},"rot":{"x":352.878,"y":0.111,"z":358.21}},{"monsterId":0,"gadgetId":70520004,"configId":248095,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":321.195,"y":227.128,"z":360.945},"rot":{"x":0.0,"y":269.594,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":248084,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":310.044,"y":217.89,"z":382.011},"rot":{"x":2.183,"y":256.007,"z":343.345}},{"monsterId":0,"gadgetId":70520013,"configId":248098,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":294.278,"y":220.549,"z":272.578},"rot":{"x":359.209,"y":312.246,"z":343.991}},{"monsterId":0,"gadgetId":70520004,"configId":248071,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":305.269,"y":219.15,"z":274.706},"rot":{"x":359.174,"y":0.493,"z":351.988}},{"monsterId":0,"gadgetId":70520005,"configId":248068,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":300.467,"y":218.599,"z":308.266},"rot":{"x":1.06,"y":290.241,"z":2.298}},{"monsterId":0,"gadgetId":70520004,"configId":248101,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":295.694,"y":219.585,"z":389.514},"rot":{"x":352.282,"y":280.619,"z":358.401}},{"monsterId":0,"gadgetId":70520005,"configId":248024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":299.492,"y":221.798,"z":413.811},"rot":{"x":359.45,"y":52.12,"z":359.293}},{"monsterId":0,"gadgetId":70520009,"configId":248090,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":303.66,"y":224.746,"z":439.281},"rot":{"x":0.0,"y":165.257,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":248072,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":290.502,"y":221.498,"z":264.788},"rot":{"x":6.225,"y":359.618,"z":357.291}},{"monsterId":0,"gadgetId":70520005,"configId":248027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":380.554,"y":217.166,"z":257.656},"rot":{"x":358.238,"y":0.178,"z":351.118}},{"monsterId":0,"gadgetId":70520004,"configId":248100,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":279.567,"y":223.023,"z":257.815},"rot":{"x":2.293,"y":154.72,"z":4.842}},{"monsterId":0,"gadgetId":70520009,"configId":248073,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":286.737,"y":229.605,"z":363.776},"rot":{"x":5.486,"y":0.196,"z":4.098}},{"monsterId":0,"gadgetId":70520009,"configId":248070,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":286.425,"y":217.363,"z":352.66},"rot":{"x":354.57,"y":359.002,"z":358.621}},{"monsterId":0,"gadgetId":70520009,"configId":248080,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":266.891,"y":223.989,"z":256.76},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":248076,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":314.483,"y":205.279,"z":474.0},"rot":{"x":19.759,"y":359.688,"z":358.21}},{"monsterId":0,"gadgetId":70520004,"configId":248094,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":319.829,"y":204.055,"z":477.266},"rot":{"x":2.363,"y":318.26,"z":351.952}},{"monsterId":0,"gadgetId":70520004,"configId":248078,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":319.54,"y":202.539,"z":492.726},"rot":{"x":12.307,"y":359.45,"z":356.388}},{"monsterId":0,"gadgetId":70520004,"configId":248077,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":310.08,"y":201.579,"z":499.415},"rot":{"x":4.433,"y":359.724,"z":352.875}},{"monsterId":0,"gadgetId":70520013,"configId":248096,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":333.814,"y":205.685,"z":453.985},"rot":{"x":13.281,"y":57.499,"z":354.729}},{"monsterId":0,"gadgetId":70520004,"configId":248075,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":341.429,"y":204.513,"z":453.517},"rot":{"x":357.504,"y":320.388,"z":352.815}},{"monsterId":0,"gadgetId":70520004,"configId":248079,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":330.23,"y":202.688,"z":487.043},"rot":{"x":9.734,"y":0.423,"z":2.717}},{"monsterId":0,"gadgetId":70520004,"configId":248074,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":333.364,"y":203.614,"z":478.359},"rot":{"x":5.356,"y":359.972,"z":359.106}},{"monsterId":0,"gadgetId":70520005,"configId":248059,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":347.818,"y":205.741,"z":482.22},"rot":{"x":0.0,"y":184.022,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":248025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":260.406,"y":225.479,"z":399.526},"rot":{"x":11.406,"y":63.632,"z":14.627}}]},{"sceneId":3,"groupId":155002020,"blockId":0,"pos":{"x":1306.006,"y":0.0,"z":796.95},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":20004,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1306.006,"y":181.889,"z":796.95},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155002023,"blockId":0,"pos":{"x":1349.9607,"y":0.0,"z":725.49475},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":23006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1348.73,"y":233.036,"z":722.564},"rot":{"x":0.0,"y":349.789,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1357.7,"y":232.523,"z":726.813},"rot":{"x":0.0,"y":126.562,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1351.097,"y":231.704,"z":729.494},"rot":{"x":0.0,"y":22.325,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1342.316,"y":232.657,"z":723.108},"rot":{"x":0.0,"y":47.259,"z":0.0}}]},{"sceneId":3,"groupId":155005089,"blockId":0,"pos":{"x":641.0547,"y":0.0,"z":605.889},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":89001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":632.61,"y":246.891,"z":610.261},"rot":{"x":21.268,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":89003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":637.252,"y":247.027,"z":609.203},"rot":{"x":356.917,"y":191.919,"z":352.989}},{"monsterId":0,"gadgetId":70520002,"configId":89007,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":653.302,"y":248.99,"z":598.203},"rot":{"x":358.052,"y":7.268,"z":340.675}}]},{"sceneId":3,"groupId":133104243,"blockId":0,"pos":{"x":625.0738,"y":0.0,"z":356.78314},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":243086,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":511.985,"y":213.182,"z":446.061},"rot":{"x":354.627,"y":95.839,"z":352.857}},{"monsterId":0,"gadgetId":70540001,"configId":243085,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":511.768,"y":212.789,"z":446.467},"rot":{"x":354.627,"y":95.839,"z":352.857}},{"monsterId":0,"gadgetId":70540001,"configId":243084,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":512.58,"y":212.571,"z":446.338},"rot":{"x":354.627,"y":95.839,"z":352.857}},{"monsterId":0,"gadgetId":70540014,"configId":243033,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":610.087,"y":200.24,"z":432.726},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":243034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":531.43,"y":208.402,"z":458.828},"rot":{"x":9.209,"y":0.577,"z":7.155}},{"monsterId":0,"gadgetId":70520009,"configId":243042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":613.402,"y":201.424,"z":291.716},"rot":{"x":2.395,"y":38.549,"z":9.817}},{"monsterId":0,"gadgetId":70540027,"configId":243013,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":625.709,"y":199.281,"z":307.442},"rot":{"x":0.0,"y":275.411,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":243039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":615.138,"y":210.608,"z":406.764},"rot":{"x":353.05,"y":113.377,"z":7.603}},{"monsterId":0,"gadgetId":70540014,"configId":243037,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":610.645,"y":200.24,"z":423.002},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":243038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":572.459,"y":210.365,"z":469.165},"rot":{"x":0.891,"y":240.865,"z":357.332}},{"monsterId":0,"gadgetId":70520009,"configId":243040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":588.03,"y":206.678,"z":469.877},"rot":{"x":348.895,"y":4.152,"z":349.117}},{"monsterId":0,"gadgetId":70520009,"configId":243069,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":622.711,"y":208.206,"z":468.742},"rot":{"x":354.203,"y":35.573,"z":5.642}},{"monsterId":0,"gadgetId":70540027,"configId":243035,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":634.344,"y":198.539,"z":322.33},"rot":{"x":0.0,"y":158.01,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":243029,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":628.461,"y":199.432,"z":309.532},"rot":{"x":0.0,"y":256.973,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":243076,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":644.856,"y":203.736,"z":356.322},"rot":{"x":11.94,"y":186.614,"z":349.16}},{"monsterId":0,"gadgetId":70520005,"configId":243028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":645.225,"y":207.513,"z":385.918},"rot":{"x":358.511,"y":59.65,"z":355.694}},{"monsterId":0,"gadgetId":70520004,"configId":243008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":642.26,"y":206.588,"z":376.653},"rot":{"x":351.122,"y":359.769,"z":0.92}},{"monsterId":0,"gadgetId":70520004,"configId":243026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":641.381,"y":205.555,"z":394.841},"rot":{"x":315.849,"y":334.11,"z":321.994}},{"monsterId":0,"gadgetId":70540021,"configId":243011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":566.191,"y":209.846,"z":497.227},"rot":{"x":6.898,"y":0.606,"z":5.336}},{"monsterId":0,"gadgetId":70540021,"configId":243012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":565.367,"y":209.759,"z":499.635},"rot":{"x":6.898,"y":0.606,"z":5.336}},{"monsterId":0,"gadgetId":70540021,"configId":243010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":564.369,"y":208.461,"z":498.816},"rot":{"x":6.898,"y":0.606,"z":5.336}},{"monsterId":0,"gadgetId":70520005,"configId":243064,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":602.861,"y":206.161,"z":497.801},"rot":{"x":359.137,"y":0.639,"z":354.375}},{"monsterId":0,"gadgetId":70520009,"configId":243077,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":585.455,"y":202.726,"z":326.047},"rot":{"x":357.662,"y":254.148,"z":1.593}},{"monsterId":0,"gadgetId":70520009,"configId":243063,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":681.121,"y":202.569,"z":317.737},"rot":{"x":356.176,"y":58.816,"z":2.312}},{"monsterId":0,"gadgetId":70520009,"configId":243066,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":559.714,"y":199.274,"z":267.136},"rot":{"x":2.875,"y":101.72,"z":350.635}},{"monsterId":0,"gadgetId":70520004,"configId":243001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":655.907,"y":208.422,"z":378.298},"rot":{"x":355.65,"y":359.462,"z":12.345}},{"monsterId":0,"gadgetId":70540021,"configId":243021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":677.766,"y":212.297,"z":373.174},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":243020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":678.593,"y":212.017,"z":370.782},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":243019,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":676.652,"y":211.007,"z":372.507},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":243044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":638.078,"y":201.227,"z":272.759},"rot":{"x":1.465,"y":43.192,"z":6.261}},{"monsterId":0,"gadgetId":70540003,"configId":243053,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":635.487,"y":201.825,"z":303.772},"rot":{"x":0.0,"y":0.0,"z":310.629}},{"monsterId":0,"gadgetId":70540003,"configId":243052,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":634.247,"y":201.722,"z":303.011},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":243041,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":635.486,"y":201.727,"z":304.562},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":243005,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":634.324,"y":204.605,"z":305.308},"rot":{"x":1.785,"y":0.07,"z":4.467}},{"monsterId":0,"gadgetId":70540003,"configId":243004,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":635.167,"y":204.465,"z":302.909},"rot":{"x":1.785,"y":0.07,"z":4.467}},{"monsterId":0,"gadgetId":70540003,"configId":243003,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":633.313,"y":203.254,"z":304.599},"rot":{"x":1.785,"y":0.07,"z":4.467}},{"monsterId":0,"gadgetId":70540004,"configId":243051,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":750.816,"y":206.197,"z":309.853},"rot":{"x":358.859,"y":279.145,"z":7.049}},{"monsterId":0,"gadgetId":70540004,"configId":243050,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":751.006,"y":206.193,"z":309.822},"rot":{"x":358.859,"y":279.145,"z":7.049}},{"monsterId":0,"gadgetId":70540001,"configId":243062,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":746.672,"y":206.247,"z":262.107},"rot":{"x":1.788,"y":0.042,"z":2.684}},{"monsterId":0,"gadgetId":70540001,"configId":243061,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":746.358,"y":205.829,"z":261.802},"rot":{"x":1.788,"y":0.042,"z":2.684}},{"monsterId":0,"gadgetId":70540001,"configId":243060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":746.454,"y":205.523,"z":262.589},"rot":{"x":1.788,"y":0.042,"z":2.684}},{"monsterId":0,"gadgetId":70520009,"configId":243068,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":709.828,"y":202.981,"z":268.449},"rot":{"x":5.956,"y":55.884,"z":2.424}},{"monsterId":0,"gadgetId":70520004,"configId":243074,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":703.226,"y":204.486,"z":259.077},"rot":{"x":357.53,"y":253.725,"z":357.926}},{"monsterId":0,"gadgetId":70520004,"configId":243065,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":692.101,"y":204.407,"z":257.653},"rot":{"x":357.53,"y":253.725,"z":357.926}},{"monsterId":0,"gadgetId":70520004,"configId":243058,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":704.014,"y":206.9,"z":354.33},"rot":{"x":0.895,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":243007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":718.484,"y":201.801,"z":374.412},"rot":{"x":353.758,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":243006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":675.111,"y":203.585,"z":277.083},"rot":{"x":0.008,"y":0.163,"z":357.316}},{"monsterId":0,"gadgetId":70520009,"configId":243070,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":683.407,"y":208.733,"z":353.103},"rot":{"x":2.809,"y":255.07,"z":6.985}},{"monsterId":0,"gadgetId":70540001,"configId":243048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":657.942,"y":203.528,"z":283.976},"rot":{"x":359.105,"y":-0.004,"z":9.752}},{"monsterId":0,"gadgetId":70540001,"configId":243047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":657.639,"y":203.078,"z":283.708},"rot":{"x":359.105,"y":-0.004,"z":9.752}},{"monsterId":0,"gadgetId":70540001,"configId":243046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":657.736,"y":202.847,"z":284.521},"rot":{"x":359.105,"y":-0.004,"z":9.752}},{"monsterId":0,"gadgetId":70520009,"configId":243043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":583.462,"y":202.88,"z":279.571},"rot":{"x":10.11,"y":326.536,"z":351.307}},{"monsterId":0,"gadgetId":70520005,"configId":243073,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":598.789,"y":201.628,"z":390.736},"rot":{"x":343.659,"y":216.263,"z":3.089}},{"monsterId":0,"gadgetId":70520004,"configId":243027,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":653.403,"y":207.491,"z":390.114},"rot":{"x":13.795,"y":200.102,"z":3.145}},{"monsterId":0,"gadgetId":70520005,"configId":243025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":648.671,"y":205.774,"z":405.37},"rot":{"x":354.009,"y":26.662,"z":3.966}},{"monsterId":0,"gadgetId":70540004,"configId":243024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":667.287,"y":221.064,"z":404.109},"rot":{"x":8.252,"y":359.695,"z":355.779}},{"monsterId":0,"gadgetId":70540004,"configId":243023,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":667.288,"y":221.092,"z":403.919},"rot":{"x":8.252,"y":359.695,"z":355.779}},{"monsterId":0,"gadgetId":70520009,"configId":243071,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":542.003,"y":195.795,"z":258.916},"rot":{"x":22.0,"y":239.525,"z":347.569}},{"monsterId":0,"gadgetId":70540021,"configId":243017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":542.058,"y":203.097,"z":298.869},"rot":{"x":352.741,"y":359.902,"z":357.734}},{"monsterId":0,"gadgetId":70540021,"configId":243016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":542.877,"y":202.485,"z":296.537},"rot":{"x":352.741,"y":359.902,"z":357.734}},{"monsterId":0,"gadgetId":70540021,"configId":243015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":540.895,"y":201.778,"z":298.363},"rot":{"x":352.741,"y":359.902,"z":357.734}},{"monsterId":0,"gadgetId":70540001,"configId":243057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":578.228,"y":206.969,"z":422.142},"rot":{"x":359.105,"y":1.306,"z":359.98}},{"monsterId":0,"gadgetId":70540001,"configId":243056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":577.889,"y":206.553,"z":421.864},"rot":{"x":359.105,"y":1.306,"z":359.98}},{"monsterId":0,"gadgetId":70540001,"configId":243055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":577.989,"y":206.279,"z":422.663},"rot":{"x":359.105,"y":1.306,"z":359.98}},{"monsterId":0,"gadgetId":70540014,"configId":243031,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":600.812,"y":200.24,"z":426.87},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":243067,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":679.097,"y":206.707,"z":426.737},"rot":{"x":8.312,"y":162.722,"z":358.169}},{"monsterId":0,"gadgetId":70540001,"configId":243082,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":516.228,"y":197.198,"z":258.829},"rot":{"x":2.868,"y":175.913,"z":2.483}},{"monsterId":0,"gadgetId":70540001,"configId":243081,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":516.525,"y":196.763,"z":259.126},"rot":{"x":2.868,"y":175.913,"z":2.483}},{"monsterId":0,"gadgetId":70540001,"configId":243080,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":516.494,"y":196.515,"z":258.312},"rot":{"x":2.868,"y":175.913,"z":2.483}},{"monsterId":0,"gadgetId":70520009,"configId":243072,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":523.757,"y":206.041,"z":398.132},"rot":{"x":357.282,"y":54.267,"z":347.457}},{"monsterId":0,"gadgetId":70520005,"configId":243075,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":683.125,"y":200.756,"z":499.135},"rot":{"x":353.096,"y":224.238,"z":1.976}}]},{"sceneId":3,"groupId":155005090,"blockId":0,"pos":{"x":534.92084,"y":0.0,"z":726.65295},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":90010,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":477.748,"y":150.546,"z":892.051},"rot":{"x":357.59,"y":48.928,"z":23.46}},{"monsterId":0,"gadgetId":70510005,"configId":90008,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":468.022,"y":148.317,"z":890.314},"rot":{"x":16.989,"y":257.195,"z":347.436}},{"monsterId":0,"gadgetId":70510007,"configId":90020,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":572.136,"y":196.09,"z":681.012},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":90016,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":537.458,"y":192.3,"z":666.699},"rot":{"x":0.0,"y":249.28,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":90018,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":549.097,"y":192.3,"z":679.686},"rot":{"x":0.0,"y":186.568,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":90012,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":497.513,"y":172.4,"z":646.053},"rot":{"x":0.0,"y":245.223,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":90022,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":642.472,"y":216.266,"z":630.756},"rot":{"x":339.412,"y":356.946,"z":356.033}}]},{"sceneId":3,"groupId":133104240,"blockId":0,"pos":{"x":630.584,"y":0.0,"z":179.83685},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":240040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":575.715,"y":200.034,"z":92.222},"rot":{"x":0.0,"y":350.643,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":240036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":698.43,"y":201.166,"z":128.695},"rot":{"x":0.697,"y":46.943,"z":358.124}},{"monsterId":0,"gadgetId":70520009,"configId":240002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":590.17,"y":200.387,"z":165.326},"rot":{"x":0.0,"y":10.878,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":240044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":682.228,"y":203.862,"z":150.214},"rot":{"x":348.058,"y":166.514,"z":355.646}},{"monsterId":0,"gadgetId":70540001,"configId":240043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":682.533,"y":203.424,"z":150.5},"rot":{"x":348.058,"y":166.514,"z":355.646}},{"monsterId":0,"gadgetId":70540001,"configId":240042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":682.67,"y":203.304,"z":149.669},"rot":{"x":348.058,"y":166.514,"z":355.646}},{"monsterId":0,"gadgetId":70540001,"configId":240047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":682.302,"y":203.996,"z":206.721},"rot":{"x":351.19,"y":44.174,"z":358.875}},{"monsterId":0,"gadgetId":70540001,"configId":240046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":682.936,"y":203.834,"z":207.264},"rot":{"x":351.19,"y":44.174,"z":358.875}},{"monsterId":0,"gadgetId":70540001,"configId":240048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":682.705,"y":204.442,"z":206.647},"rot":{"x":351.19,"y":44.174,"z":358.875}},{"monsterId":0,"gadgetId":70520005,"configId":240038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":679.891,"y":203.438,"z":191.425},"rot":{"x":4.278,"y":65.786,"z":2.97}},{"monsterId":0,"gadgetId":70540004,"configId":240016,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":724.121,"y":202.084,"z":202.425},"rot":{"x":0.0,"y":279.216,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":240015,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":724.311,"y":202.084,"z":202.394},"rot":{"x":0.0,"y":279.216,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":240039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":767.713,"y":200.593,"z":135.109},"rot":{"x":2.191,"y":142.259,"z":2.828}},{"monsterId":0,"gadgetId":70520005,"configId":240037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":653.116,"y":202.393,"z":237.256},"rot":{"x":4.989,"y":47.606,"z":1.489}},{"monsterId":0,"gadgetId":70520004,"configId":240013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":719.734,"y":203.601,"z":233.502},"rot":{"x":350.961,"y":358.957,"z":351.386}},{"monsterId":0,"gadgetId":70520004,"configId":240029,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":748.888,"y":204.58,"z":230.7},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":240028,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":756.521,"y":205.389,"z":234.011},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":240012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":548.444,"y":206.582,"z":173.754},"rot":{"x":11.138,"y":17.979,"z":1.717}},{"monsterId":0,"gadgetId":70540021,"configId":240011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":549.398,"y":206.78,"z":171.709},"rot":{"x":11.138,"y":17.979,"z":1.717}},{"monsterId":0,"gadgetId":70520009,"configId":240021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":553.707,"y":201.361,"z":190.116},"rot":{"x":12.269,"y":0.672,"z":6.242}},{"monsterId":0,"gadgetId":70540021,"configId":240010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":547.709,"y":205.611,"z":173.307},"rot":{"x":11.138,"y":17.979,"z":1.717}},{"monsterId":0,"gadgetId":70520004,"configId":240032,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":753.487,"y":204.857,"z":223.693},"rot":{"x":0.0,"y":118.533,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":240031,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":731.499,"y":203.752,"z":220.849},"rot":{"x":354.626,"y":118.242,"z":6.199}},{"monsterId":0,"gadgetId":70520004,"configId":240030,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":738.919,"y":203.58,"z":218.169},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":240006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":714.77,"y":204.189,"z":223.297},"rot":{"x":13.161,"y":359.83,"z":349.615}},{"monsterId":0,"gadgetId":70520009,"configId":240008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":657.467,"y":202.278,"z":250.044},"rot":{"x":0.606,"y":121.165,"z":2.457}},{"monsterId":0,"gadgetId":70540014,"configId":240005,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":512.58,"y":194.99,"z":235.053},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":240020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":546.238,"y":198.874,"z":209.158},"rot":{"x":0.875,"y":0.095,"z":12.34}},{"monsterId":0,"gadgetId":70540001,"configId":240019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":546.0,"y":198.405,"z":208.858},"rot":{"x":0.875,"y":0.095,"z":12.34}},{"monsterId":0,"gadgetId":70540001,"configId":240018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":546.143,"y":198.131,"z":209.651},"rot":{"x":0.875,"y":0.095,"z":12.34}},{"monsterId":0,"gadgetId":70520005,"configId":240001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":526.745,"y":202.597,"z":167.179},"rot":{"x":4.465,"y":359.93,"z":358.21}},{"monsterId":0,"gadgetId":70540001,"configId":240027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":552.87,"y":203.99,"z":149.62},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":240026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":552.537,"y":203.578,"z":149.327},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":240025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":552.619,"y":203.292,"z":150.124},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":240033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":526.427,"y":200.242,"z":135.851},"rot":{"x":0.0,"y":221.232,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":240022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":566.556,"y":200.439,"z":140.424},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":240034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":514.927,"y":200.447,"z":111.162},"rot":{"x":354.145,"y":311.587,"z":357.196}},{"monsterId":0,"gadgetId":70520009,"configId":240023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":557.51,"y":200.395,"z":124.645},"rot":{"x":0.0,"y":0.0,"z":359.105}},{"monsterId":0,"gadgetId":70520009,"configId":240003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":562.238,"y":200.0,"z":53.567},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133001807,"blockId":0,"pos":{"x":1892.1781,"y":0.0,"z":-1325.6755},"spawns":[{"monsterId":0,"gadgetId":70540019,"configId":3331,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1980.827,"y":198.941,"z":-1330.152},"rot":{"x":0.0,"y":64.934,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":807003,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1958.028,"y":196.779,"z":-1245.596},"rot":{"x":0.0,"y":358.397,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3330,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1960.22,"y":197.144,"z":-1245.776},"rot":{"x":0.0,"y":280.916,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3317,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1931.238,"y":195.371,"z":-1347.39},"rot":{"x":0.0,"y":63.574,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3316,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1933.396,"y":195.481,"z":-1345.914},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":807001,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1944.354,"y":195.782,"z":-1251.972},"rot":{"x":0.0,"y":137.806,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":807002,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1944.672,"y":195.728,"z":-1250.618},"rot":{"x":0.0,"y":25.446,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3319,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1931.574,"y":195.649,"z":-1233.361},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3318,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1927.115,"y":195.046,"z":-1345.425},"rot":{"x":0.0,"y":48.204,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":807004,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1926.667,"y":196.804,"z":-1239.341},"rot":{"x":0.0,"y":324.547,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3314,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1870.432,"y":197.271,"z":-1283.582},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3313,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1875.916,"y":197.499,"z":-1279.715},"rot":{"x":0.0,"y":310.06,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3312,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1874.505,"y":197.483,"z":-1279.71},"rot":{"x":0.0,"y":180.095,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3315,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1874.87,"y":197.513,"z":-1270.484},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3334,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1896.399,"y":196.563,"z":-1417.031},"rot":{"x":0.0,"y":63.574,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3333,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1896.712,"y":196.631,"z":-1418.294},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3322,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1788.532,"y":197.669,"z":-1440.978},"rot":{"x":0.0,"y":64.934,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3321,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1791.13,"y":196.603,"z":-1443.224},"rot":{"x":0.0,"y":68.355,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3320,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1787.518,"y":197.881,"z":-1443.894},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":3332,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1749.459,"y":213.532,"z":-1401.053},"rot":{"x":0.0,"y":63.574,"z":0.0}}]},{"sceneId":3,"groupId":133102157,"blockId":0,"pos":{"x":1808.8849,"y":0.0,"z":491.4733},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":157004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1802.776,"y":240.522,"z":487.111},"rot":{"x":0.0,"y":121.588,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":157001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1794.542,"y":239.769,"z":483.434},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":157003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1829.337,"y":236.768,"z":503.875},"rot":{"x":0.0,"y":254.676,"z":0.0}}]},{"sceneId":3,"groupId":155003033,"blockId":0,"pos":{"x":1288.1349,"y":0.0,"z":-658.95337},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":33003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":1285.204,"y":272.496,"z":-661.057},"rot":{"x":37.52,"y":87.74,"z":332.409}},{"monsterId":0,"gadgetId":70590036,"configId":33002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":1286.761,"y":272.216,"z":-658.347},"rot":{"x":52.19,"y":138.117,"z":27.71}},{"monsterId":0,"gadgetId":70590036,"configId":33001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":1292.44,"y":271.552,"z":-657.456},"rot":{"x":356.039,"y":348.546,"z":330.3}}]},{"sceneId":3,"groupId":133102154,"blockId":0,"pos":{"x":1408.3213,"y":0.0,"z":623.455},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":154013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1507.928,"y":225.508,"z":544.885},"rot":{"x":0.0,"y":318.511,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":154018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1497.732,"y":221.275,"z":557.539},"rot":{"x":0.0,"y":303.077,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":154005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1535.885,"y":233.488,"z":514.455},"rot":{"x":0.0,"y":65.248,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":154036,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1511.081,"y":241.503,"z":737.033},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":154035,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1511.908,"y":241.223,"z":734.641},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":154034,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1509.967,"y":240.213,"z":736.366},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":154011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1459.593,"y":208.382,"z":710.661},"rot":{"x":0.0,"y":208.433,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":154032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1528.003,"y":246.845,"z":712.916},"rot":{"x":0.0,"y":35.562,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":154007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1516.197,"y":229.574,"z":767.017},"rot":{"x":0.0,"y":30.071,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":154031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1435.597,"y":207.952,"z":679.257},"rot":{"x":0.0,"y":20.874,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":154030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1435.182,"y":207.54,"z":679.102},"rot":{"x":0.0,"y":20.874,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":154029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1435.542,"y":207.254,"z":679.818},"rot":{"x":0.0,"y":20.874,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":154009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1392.282,"y":201.194,"z":689.568},"rot":{"x":0.0,"y":84.089,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":154053,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1368.048,"y":199.874,"z":751.293},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":154040,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1430.604,"y":216.482,"z":643.084},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":154039,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1431.432,"y":216.202,"z":640.692},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":154038,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1429.49,"y":215.192,"z":642.417},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":154017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1435.18,"y":215.764,"z":632.753},"rot":{"x":0.0,"y":326.749,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":154015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1473.79,"y":224.289,"z":645.706},"rot":{"x":0.0,"y":160.611,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":154049,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1357.229,"y":219.052,"z":642.659},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":154048,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1357.229,"y":219.052,"z":642.467},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":154006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1365.426,"y":204.992,"z":639.775},"rot":{"x":0.0,"y":42.647,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":154008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1364.576,"y":202.943,"z":651.423},"rot":{"x":0.0,"y":136.636,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":154054,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1351.278,"y":199.878,"z":742.575},"rot":{"x":0.0,"y":40.417,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":154019,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1351.802,"y":200.0,"z":746.489},"rot":{"x":0.0,"y":213.293,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":154003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1370.105,"y":205.573,"z":597.382},"rot":{"x":0.0,"y":268.205,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":154001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1374.984,"y":206.806,"z":591.105},"rot":{"x":0.0,"y":63.446,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":154044,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1338.902,"y":199.868,"z":639.726},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":154046,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1337.271,"y":199.789,"z":654.891},"rot":{"x":0.0,"y":103.032,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":154045,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1338.721,"y":199.888,"z":658.774},"rot":{"x":0.0,"y":58.82,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":154014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1409.431,"y":223.9,"z":582.218},"rot":{"x":0.0,"y":306.75,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":154023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1476.503,"y":223.209,"z":583.578},"rot":{"x":0.0,"y":55.586,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":154022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1476.073,"y":222.797,"z":583.688},"rot":{"x":0.0,"y":55.586,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":154021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1476.777,"y":222.511,"z":584.07},"rot":{"x":0.0,"y":55.586,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":154050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1329.763,"y":200.529,"z":557.056},"rot":{"x":0.0,"y":351.26,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":154051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1332.294,"y":200.455,"z":556.587},"rot":{"x":0.0,"y":351.26,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":154052,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1331.45,"y":200.667,"z":558.998},"rot":{"x":0.0,"y":351.26,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":154027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1353.456,"y":203.708,"z":565.488},"rot":{"x":0.0,"y":10.347,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":154026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1353.076,"y":203.296,"z":565.259},"rot":{"x":0.0,"y":10.347,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":154025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1353.299,"y":203.01,"z":566.028},"rot":{"x":0.0,"y":10.347,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":154002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1375.154,"y":207.238,"z":558.883},"rot":{"x":357.53,"y":62.597,"z":352.418}},{"monsterId":0,"gadgetId":70520008,"configId":154043,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1311.285,"y":199.673,"z":542.884},"rot":{"x":0.0,"y":104.967,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":154042,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1316.798,"y":199.904,"z":547.618},"rot":{"x":0.0,"y":227.246,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":154041,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1314.542,"y":199.889,"z":538.548},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":154010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1346.492,"y":202.514,"z":538.9},"rot":{"x":0.0,"y":223.76,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":154016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1403.456,"y":210.244,"z":517.685},"rot":{"x":0.0,"y":169.493,"z":350.995}},{"monsterId":0,"gadgetId":70520005,"configId":154012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1444.555,"y":229.257,"z":543.174},"rot":{"x":0.0,"y":308.795,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":154004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1442.066,"y":216.945,"z":528.704},"rot":{"x":348.479,"y":17.899,"z":352.657}}]},{"sceneId":3,"groupId":133001801,"blockId":0,"pos":{"x":1548.732,"y":0.0,"z":-1565.2738},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":2312,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1535.512,"y":334.54,"z":-2093.015},"rot":{"x":7.118,"y":359.833,"z":357.316}},{"monsterId":0,"gadgetId":70510005,"configId":2468,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1534.501,"y":333.964,"z":-2088.64},"rot":{"x":8.864,"y":359.723,"z":356.424}},{"monsterId":0,"gadgetId":70510005,"configId":2310,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1543.769,"y":333.013,"z":-2068.059},"rot":{"x":4.433,"y":0.276,"z":7.125}},{"monsterId":0,"gadgetId":70510005,"configId":2308,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1548.477,"y":334.801,"z":-2087.938},"rot":{"x":9.711,"y":0.455,"z":5.356}},{"monsterId":0,"gadgetId":70510006,"configId":2435,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1476.137,"y":307.069,"z":-1925.914},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":1824,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1379.537,"y":234.505,"z":-1539.734},"rot":{"x":0.0,"y":184.696,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":1823,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1379.235,"y":234.496,"z":-1541.463},"rot":{"x":0.0,"y":229.5,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":1238,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1402.035,"y":234.238,"z":-1570.572},"rot":{"x":0.0,"y":123.205,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":1237,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1400.522,"y":233.909,"z":-1571.881},"rot":{"x":0.0,"y":249.457,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":3062,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1277.158,"y":269.972,"z":-1595.28},"rot":{"x":5.325,"y":359.709,"z":353.758}},{"monsterId":0,"gadgetId":70510005,"configId":3066,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1258.254,"y":269.397,"z":-1601.571},"rot":{"x":22.111,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":1875,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1251.339,"y":254.484,"z":-1471.361},"rot":{"x":0.0,"y":184.696,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":1874,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1252.324,"y":254.543,"z":-1469.323},"rot":{"x":0.0,"y":184.696,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":3095,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2135.188,"y":222.503,"z":-1194.491},"rot":{"x":0.0,"y":269.415,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":3093,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2132.597,"y":222.499,"z":-1192.382},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":2362,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1848.61,"y":194.427,"z":-1554.349},"rot":{"x":10.268,"y":1.698,"z":16.964}},{"monsterId":0,"gadgetId":70510005,"configId":2372,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2075.259,"y":222.163,"z":-1644.246},"rot":{"x":4.071,"y":359.583,"z":354.602}},{"monsterId":0,"gadgetId":70510007,"configId":2683,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1978.564,"y":194.522,"z":-1154.92},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2630,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1710.932,"y":263.334,"z":-1296.29},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2628,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1718.156,"y":262.862,"z":-1290.198},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2626,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1712.25,"y":262.958,"z":-1291.043},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":3101,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1705.512,"y":262.604,"z":-1272.744},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":3099,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1706.064,"y":262.76,"z":-1278.321},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":2019,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1782.655,"y":214.701,"z":-1222.989},"rot":{"x":0.921,"y":64.752,"z":356.478}},{"monsterId":0,"gadgetId":70510006,"configId":2765,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1665.618,"y":253.01,"z":-1315.706},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2767,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1655.413,"y":248.024,"z":-1330.533},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2472,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1613.128,"y":246.626,"z":-1607.411},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":2498,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1681.575,"y":194.389,"z":-1564.727},"rot":{"x":352.019,"y":0.312,"z":355.533}},{"monsterId":0,"gadgetId":70510007,"configId":2496,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1684.58,"y":194.333,"z":-1564.131},"rot":{"x":2.19,"y":93.693,"z":353.889}},{"monsterId":0,"gadgetId":70510009,"configId":3097,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1680.796,"y":256.377,"z":-1454.334},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2380,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1689.13,"y":218.295,"z":-1493.935},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":2431,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1474.48,"y":265.496,"z":-1724.552},"rot":{"x":6.206,"y":0.339,"z":6.242}},{"monsterId":0,"gadgetId":70510005,"configId":3055,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1423.835,"y":267.913,"z":-1648.944},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":2462,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1399.84,"y":258.081,"z":-1681.339},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":2460,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1399.952,"y":258.196,"z":-1687.729},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2299,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1212.033,"y":266.594,"z":-1692.257},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2433,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1449.077,"y":311.778,"z":-1945.099},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2484,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1478.963,"y":330.248,"z":-1986.926},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2482,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1490.847,"y":330.872,"z":-1991.252},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":3105,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1466.287,"y":327.142,"z":-2022.295},"rot":{"x":0.0,"y":318.71,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":3103,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1456.056,"y":327.635,"z":-2030.346},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":1876,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1246.559,"y":254.591,"z":-1492.376},"rot":{"x":0.0,"y":184.696,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2624,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1458.35,"y":290.081,"z":-1308.869},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2622,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1458.327,"y":290.288,"z":-1310.439},"rot":{"x":0.0,"y":40.384,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2610,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1523.348,"y":291.568,"z":-1234.15},"rot":{"x":0.0,"y":240.547,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2614,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1525.534,"y":291.494,"z":-1229.093},"rot":{"x":0.0,"y":75.26,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2378,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1688.573,"y":218.74,"z":-1491.635},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2303,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1206.67,"y":267.89,"z":-1701.315},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":3064,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1245.259,"y":268.311,"z":-1583.797},"rot":{"x":0.0,"y":335.57,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2679,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1483.299,"y":262.24,"z":-1358.139},"rot":{"x":355.26,"y":358.185,"z":351.291}},{"monsterId":0,"gadgetId":70510006,"configId":2677,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1483.221,"y":262.216,"z":-1360.919},"rot":{"x":3.939,"y":359.957,"z":358.759}}]},{"sceneId":3,"groupId":155003032,"blockId":0,"pos":{"x":1331.913,"y":0.0,"z":-665.0964},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":32003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":1328.819,"y":261.558,"z":-661.422},"rot":{"x":338.037,"y":95.782,"z":22.949}},{"monsterId":0,"gadgetId":70590036,"configId":32002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":1334.062,"y":257.71,"z":-667.625},"rot":{"x":20.074,"y":141.865,"z":49.426}},{"monsterId":0,"gadgetId":70590036,"configId":32001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":1332.858,"y":258.013,"z":-666.242},"rot":{"x":3.792,"y":135.537,"z":357.932}}]},{"sceneId":3,"groupId":133102152,"blockId":0,"pos":{"x":1421.0354,"y":0.0,"z":368.6983},"spawns":[{"monsterId":0,"gadgetId":70540027,"configId":152084,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1388.854,"y":199.59,"z":376.976},"rot":{"x":0.0,"y":232.013,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1457.496,"y":201.896,"z":372.539},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1439.207,"y":200.0,"z":356.584},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":152028,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1454.243,"y":201.62,"z":361.297},"rot":{"x":14.46,"y":10.323,"z":36.11}},{"monsterId":0,"gadgetId":70520001,"configId":152027,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1455.026,"y":201.515,"z":359.924},"rot":{"x":343.851,"y":0.0,"z":17.317}},{"monsterId":0,"gadgetId":70520009,"configId":152048,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1470.622,"y":205.207,"z":362.535},"rot":{"x":0.0,"y":356.702,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":152039,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1468.432,"y":204.368,"z":357.87},"rot":{"x":0.0,"y":331.184,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":152022,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1489.803,"y":220.949,"z":366.913},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":152021,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1489.803,"y":220.949,"z":366.721},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1525.9,"y":272.4,"z":360.064},"rot":{"x":0.0,"y":102.573,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":152017,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1521.024,"y":211.57,"z":351.247},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":152068,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1507.786,"y":203.544,"z":318.248},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":152070,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1508.9,"y":204.834,"z":318.915},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":152069,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1509.727,"y":204.554,"z":316.523},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1504.455,"y":206.924,"z":344.713},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":152019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1522.228,"y":210.282,"z":345.7},"rot":{"x":317.221,"y":354.049,"z":26.479}},{"monsterId":0,"gadgetId":70520001,"configId":152018,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1519.157,"y":209.724,"z":347.436},"rot":{"x":339.465,"y":354.295,"z":15.897}},{"monsterId":0,"gadgetId":70540001,"configId":152004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1478.695,"y":202.173,"z":299.543},"rot":{"x":349.544,"y":86.746,"z":3.233}},{"monsterId":0,"gadgetId":70540001,"configId":152003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1478.468,"y":201.697,"z":299.839},"rot":{"x":349.544,"y":86.746,"z":3.233}},{"monsterId":0,"gadgetId":70540001,"configId":152002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1479.306,"y":201.565,"z":299.789},"rot":{"x":349.544,"y":86.746,"z":3.233}},{"monsterId":0,"gadgetId":70520004,"configId":152035,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1521.707,"y":206.293,"z":297.189},"rot":{"x":0.418,"y":279.74,"z":335.47}},{"monsterId":0,"gadgetId":70520005,"configId":152053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1517.616,"y":240.715,"z":476.638},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1516.636,"y":240.88,"z":476.879},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152050,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1514.546,"y":240.107,"z":488.485},"rot":{"x":0.0,"y":106.024,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1474.921,"y":200.434,"z":320.163},"rot":{"x":0.0,"y":245.249,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":152038,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1487.388,"y":202.13,"z":339.435},"rot":{"x":0.0,"y":246.955,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":152025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1489.739,"y":242.099,"z":407.13},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":152024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1489.739,"y":242.099,"z":406.938},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":152080,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1462.11,"y":199.425,"z":281.905},"rot":{"x":0.0,"y":228.254,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":152081,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1448.536,"y":199.738,"z":288.588},"rot":{"x":0.0,"y":229.061,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152062,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1461.767,"y":201.998,"z":324.194},"rot":{"x":10.644,"y":172.499,"z":359.494}},{"monsterId":0,"gadgetId":70540001,"configId":152061,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1462.053,"y":201.65,"z":324.599},"rot":{"x":10.644,"y":172.499,"z":359.494}},{"monsterId":0,"gadgetId":70540001,"configId":152060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1462.07,"y":201.221,"z":323.864},"rot":{"x":10.644,"y":172.499,"z":359.494}},{"monsterId":0,"gadgetId":70540001,"configId":152015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1457.965,"y":201.859,"z":346.192},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1458.047,"y":201.573,"z":346.989},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1458.298,"y":202.271,"z":346.485},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1448.913,"y":201.416,"z":342.656},"rot":{"x":0.0,"y":212.087,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":152036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1489.678,"y":241.937,"z":439.324},"rot":{"x":0.0,"y":255.971,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":152086,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1435.938,"y":199.458,"z":314.778},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1438.062,"y":220.342,"z":405.449},"rot":{"x":0.0,"y":45.84,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1456.182,"y":247.005,"z":465.163},"rot":{"x":0.0,"y":215.282,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":152089,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1475.51,"y":220.257,"z":463.687},"rot":{"x":0.0,"y":0.0,"z":333.754}},{"monsterId":0,"gadgetId":70520001,"configId":152090,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1475.151,"y":221.074,"z":456.044},"rot":{"x":353.03,"y":312.953,"z":342.001}},{"monsterId":0,"gadgetId":70520005,"configId":152040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1315.808,"y":201.579,"z":496.483},"rot":{"x":0.0,"y":107.898,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152079,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1330.705,"y":206.757,"z":476.572},"rot":{"x":0.0,"y":177.652,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152078,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1331.026,"y":206.345,"z":476.879},"rot":{"x":0.0,"y":177.652,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152077,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1330.976,"y":206.059,"z":476.079},"rot":{"x":0.0,"y":177.652,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":152075,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1362.452,"y":206.315,"z":454.416},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":152074,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1363.279,"y":206.035,"z":452.024},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":152073,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1361.338,"y":205.025,"z":453.749},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1363.421,"y":204.016,"z":463.024},"rot":{"x":0.0,"y":39.425,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152058,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1395.153,"y":210.986,"z":462.302},"rot":{"x":0.0,"y":183.372,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1395.503,"y":210.574,"z":462.575},"rot":{"x":0.0,"y":183.372,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":152056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1395.374,"y":210.288,"z":461.784},"rot":{"x":0.0,"y":183.372,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":152009,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1323.877,"y":202.745,"z":428.715},"rot":{"x":356.766,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":152008,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1323.877,"y":202.734,"z":428.523},"rot":{"x":356.766,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":152037,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1415.313,"y":209.767,"z":433.87},"rot":{"x":0.0,"y":212.901,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1357.358,"y":200.515,"z":407.987},"rot":{"x":0.0,"y":251.175,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":152034,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1392.143,"y":202.783,"z":407.109},"rot":{"x":9.666,"y":29.167,"z":13.527}},{"monsterId":0,"gadgetId":70540005,"configId":152033,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1392.217,"y":202.817,"z":407.237},"rot":{"x":354.075,"y":30.068,"z":234.777}},{"monsterId":0,"gadgetId":70540005,"configId":152032,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1392.427,"y":202.785,"z":406.968},"rot":{"x":354.075,"y":30.068,"z":17.455}},{"monsterId":0,"gadgetId":70540001,"configId":152031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1392.167,"y":202.894,"z":406.872},"rot":{"x":324.061,"y":357.43,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":152082,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1313.654,"y":199.918,"z":358.724},"rot":{"x":0.0,"y":201.558,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":152083,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1331.682,"y":198.72,"z":358.913},"rot":{"x":0.0,"y":247.545,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1311.157,"y":205.372,"z":341.608},"rot":{"x":345.619,"y":191.163,"z":11.322}},{"monsterId":0,"gadgetId":70540027,"configId":152085,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1420.49,"y":199.373,"z":324.524},"rot":{"x":0.0,"y":246.735,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1345.653,"y":200.843,"z":297.991},"rot":{"x":3.652,"y":150.184,"z":353.814}},{"monsterId":0,"gadgetId":70540027,"configId":152087,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1390.536,"y":200.0,"z":305.567},"rot":{"x":0.0,"y":243.141,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1352.496,"y":200.818,"z":281.385},"rot":{"x":3.652,"y":150.184,"z":353.814}},{"monsterId":0,"gadgetId":70520009,"configId":152049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1353.198,"y":200.085,"z":257.977},"rot":{"x":3.652,"y":150.184,"z":353.814}},{"monsterId":0,"gadgetId":70540001,"configId":152065,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1327.16,"y":201.455,"z":257.647},"rot":{"x":348.493,"y":62.45,"z":357.06}},{"monsterId":0,"gadgetId":70540001,"configId":152064,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1327.935,"y":201.33,"z":257.975},"rot":{"x":348.493,"y":62.45,"z":357.06}},{"monsterId":0,"gadgetId":70540001,"configId":152066,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1327.509,"y":201.9,"z":257.43},"rot":{"x":348.493,"y":62.45,"z":357.06}},{"monsterId":0,"gadgetId":70520009,"configId":152006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1323.71,"y":200.288,"z":262.374},"rot":{"x":0.0,"y":308.431,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":152042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1324.338,"y":200.059,"z":290.682},"rot":{"x":3.734,"y":304.895,"z":359.335}},{"monsterId":0,"gadgetId":70540027,"configId":152088,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1300.396,"y":200.0,"z":285.803},"rot":{"x":0.0,"y":145.643,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":152054,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1299.988,"y":200.0,"z":319.445},"rot":{"x":0.0,"y":275.555,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":152005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1284.739,"y":200.116,"z":271.116},"rot":{"x":0.19,"y":308.084,"z":351.121}}]},{"sceneId":3,"groupId":133001803,"blockId":0,"pos":{"x":1827.5885,"y":0.0,"z":-1349.8445},"spawns":[{"monsterId":0,"gadgetId":70510004,"configId":1755,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2004.162,"y":220.985,"z":-1544.097},"rot":{"x":0.0,"y":346.625,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1760,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2002.756,"y":221.081,"z":-1527.547},"rot":{"x":0.0,"y":122.005,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":803003,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2003.344,"y":196.128,"z":-1633.37},"rot":{"x":345.13,"y":359.766,"z":1.79}},{"monsterId":0,"gadgetId":70510004,"configId":1759,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2017.404,"y":221.525,"z":-1560.765},"rot":{"x":0.0,"y":185.446,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1758,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2011.827,"y":221.183,"z":-1537.774},"rot":{"x":0.0,"y":54.144,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1757,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2028.349,"y":221.488,"z":-1573.856},"rot":{"x":0.0,"y":0.49,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1756,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2029.719,"y":222.411,"z":-1554.656},"rot":{"x":0.0,"y":63.494,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2527,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1711.28,"y":261.258,"z":-1266.043},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2526,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1725.918,"y":258.732,"z":-1224.845},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2995,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1659.715,"y":255.218,"z":-1220.629},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":2993,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1662.371,"y":262.619,"z":-1213.965},"rot":{"x":22.665,"y":216.532,"z":353.41}},{"monsterId":0,"gadgetId":70510004,"configId":2994,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1660.166,"y":255.448,"z":-1219.394},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2524,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1743.007,"y":253.217,"z":-1183.582},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2521,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1785.894,"y":246.102,"z":-1182.175},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2525,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1705.476,"y":260.436,"z":-1238.225},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2522,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1770.945,"y":248.953,"z":-1170.232},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2520,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1786.049,"y":246.514,"z":-1151.786},"rot":{"x":0.0,"y":17.709,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":2049,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1588.212,"y":258.1,"z":-1294.259},"rot":{"x":0.0,"y":213.379,"z":0.0}}]},{"sceneId":3,"groupId":155003034,"blockId":0,"pos":{"x":1335.2733,"y":0.0,"z":-690.076},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":34002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1329.831,"y":249.077,"z":-701.682},"rot":{"x":359.103,"y":0.028,"z":3.576}},{"monsterId":0,"gadgetId":70520005,"configId":34001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1325.769,"y":253.317,"z":-688.309},"rot":{"x":336.045,"y":32.635,"z":353.87}},{"monsterId":0,"gadgetId":70520005,"configId":34004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1343.787,"y":250.969,"z":-693.98},"rot":{"x":346.111,"y":84.93,"z":352.537}},{"monsterId":0,"gadgetId":70520005,"configId":34003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1341.706,"y":254.771,"z":-676.333},"rot":{"x":355.021,"y":75.231,"z":359.151}}]},{"sceneId":3,"groupId":133102153,"blockId":0,"pos":{"x":1415.1958,"y":0.0,"z":892.9245},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":153006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1534.355,"y":205.961,"z":830.034},"rot":{"x":0.0,"y":102.812,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153005,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1485.389,"y":201.266,"z":798.833},"rot":{"x":349.548,"y":333.576,"z":24.859}},{"monsterId":0,"gadgetId":70540001,"configId":153004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1487.08,"y":202.76,"z":800.599},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1486.747,"y":202.348,"z":800.306},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":153002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1486.829,"y":202.062,"z":801.103},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":153007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1528.537,"y":228.554,"z":794.3},"rot":{"x":0.0,"y":335.635,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":153008,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1516.337,"y":205.578,"z":813.29},"rot":{"x":346.783,"y":45.353,"z":345.875}},{"monsterId":0,"gadgetId":70520008,"configId":153023,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1324.651,"y":200.189,"z":1013.975},"rot":{"x":0.0,"y":82.735,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":153009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1281.642,"y":201.666,"z":993.027},"rot":{"x":0.0,"y":25.411,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":153022,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1305.614,"y":200.003,"z":1000.238},"rot":{"x":0.0,"y":82.735,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":153020,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1336.858,"y":200.122,"z":1007.055},"rot":{"x":0.0,"y":82.735,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":153019,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1343.224,"y":200.017,"z":981.108},"rot":{"x":0.0,"y":82.735,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":153024,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1280.282,"y":200.196,"z":974.15},"rot":{"x":0.0,"y":59.856,"z":0.0}}]},{"sceneId":3,"groupId":155007125,"blockId":0,"pos":{"x":-241.515,"y":0.0,"z":1579.355},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":125002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-241.757,"y":183.682,"z":1579.736},"rot":{"x":31.933,"y":182.642,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":125001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-241.273,"y":183.704,"z":1578.974},"rot":{"x":352.068,"y":64.255,"z":0.0}}]},{"sceneId":3,"groupId":133102150,"blockId":0,"pos":{"x":1650.9175,"y":0.0,"z":395.72305},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":150040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1778.483,"y":252.107,"z":486.845},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":150054,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1754.839,"y":274.031,"z":471.024},"rot":{"x":0.0,"y":169.493,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":150016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1787.922,"y":237.839,"z":457.836},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":150070,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1760.515,"y":291.407,"z":410.558},"rot":{"x":351.386,"y":10.933,"z":357.871}},{"monsterId":0,"gadgetId":70520001,"configId":150069,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1763.765,"y":291.139,"z":408.625},"rot":{"x":21.951,"y":0.675,"z":338.396}},{"monsterId":0,"gadgetId":70540021,"configId":150063,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1764.733,"y":294.359,"z":421.779},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":150068,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1761.857,"y":291.224,"z":409.466},"rot":{"x":4.856,"y":64.725,"z":16.833}},{"monsterId":0,"gadgetId":70520004,"configId":150028,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1756.236,"y":291.87,"z":420.456},"rot":{"x":0.0,"y":81.201,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":150061,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1763.619,"y":293.069,"z":421.112},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":150062,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1765.56,"y":294.079,"z":419.387},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":150038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1570.732,"y":287.53,"z":406.56},"rot":{"x":0.0,"y":46.122,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":150042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1572.293,"y":246.173,"z":453.208},"rot":{"x":0.0,"y":162.275,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":150066,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1568.446,"y":244.103,"z":502.397},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":150037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1596.963,"y":249.398,"z":292.009},"rot":{"x":8.09,"y":227.797,"z":347.469}},{"monsterId":0,"gadgetId":70520004,"configId":150025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1590.848,"y":286.625,"z":360.187},"rot":{"x":4.813,"y":64.118,"z":6.84}},{"monsterId":0,"gadgetId":70540001,"configId":150050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1605.95,"y":288.375,"z":364.362},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":150049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1606.032,"y":288.089,"z":365.159},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":150051,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1606.283,"y":288.787,"z":364.655},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":150007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1648.347,"y":256.281,"z":275.333},"rot":{"x":21.152,"y":352.533,"z":338.023}},{"monsterId":0,"gadgetId":70520005,"configId":150041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1650.332,"y":271.29,"z":305.633},"rot":{"x":19.368,"y":233.752,"z":1.573}},{"monsterId":0,"gadgetId":70540004,"configId":150002,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1548.555,"y":221.913,"z":316.796},"rot":{"x":334.81,"y":356.851,"z":14.026}},{"monsterId":0,"gadgetId":70540004,"configId":150003,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1548.546,"y":221.995,"z":316.969},"rot":{"x":334.81,"y":356.851,"z":14.026}},{"monsterId":0,"gadgetId":70520004,"configId":150014,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1650.081,"y":276.84,"z":325.117},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":150036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1629.598,"y":281.399,"z":339.686},"rot":{"x":0.0,"y":278.426,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150029,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1645.601,"y":269.575,"z":307.687},"rot":{"x":0.0,"y":14.64,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":150034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1645.704,"y":284.529,"z":350.835},"rot":{"x":0.0,"y":13.228,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150031,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1666.204,"y":287.193,"z":362.78},"rot":{"x":0.0,"y":77.223,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1674.781,"y":286.1,"z":356.921},"rot":{"x":0.0,"y":357.402,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1678.907,"y":279.448,"z":306.787},"rot":{"x":347.447,"y":48.73,"z":352.765}},{"monsterId":0,"gadgetId":70520009,"configId":150055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1654.798,"y":290.284,"z":393.025},"rot":{"x":0.0,"y":169.493,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1679.058,"y":285.261,"z":403.287},"rot":{"x":0.0,"y":34.901,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":150033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1770.618,"y":287.577,"z":395.873},"rot":{"x":0.0,"y":242.042,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":150053,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1651.735,"y":278.569,"z":491.046},"rot":{"x":40.318,"y":352.382,"z":339.443}},{"monsterId":0,"gadgetId":70520005,"configId":150043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1709.927,"y":342.248,"z":502.631},"rot":{"x":0.0,"y":266.915,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":150047,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1758.849,"y":253.866,"z":504.201},"rot":{"x":357.506,"y":357.317,"z":9.878}},{"monsterId":0,"gadgetId":70590024,"configId":150046,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1754.114,"y":253.762,"z":506.761},"rot":{"x":347.767,"y":32.368,"z":4.822}},{"monsterId":0,"gadgetId":70520004,"configId":150027,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1666.439,"y":286.535,"z":372.73},"rot":{"x":0.0,"y":27.442,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":150006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1642.554,"y":257.479,"z":273.823},"rot":{"x":323.791,"y":339.574,"z":33.124}},{"monsterId":0,"gadgetId":70520004,"configId":150030,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1551.506,"y":240.094,"z":474.453},"rot":{"x":0.0,"y":178.14,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":150052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1604.412,"y":260.418,"z":475.411},"rot":{"x":0.0,"y":84.089,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":150032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1595.584,"y":260.878,"z":484.978},"rot":{"x":0.0,"y":149.469,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":150067,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1567.619,"y":244.383,"z":504.789},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":150065,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1566.505,"y":243.093,"z":504.122},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1564.652,"y":240.005,"z":489.847},"rot":{"x":0.0,"y":102.913,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":150045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1612.64,"y":266.934,"z":502.942},"rot":{"x":0.0,"y":239.31,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150023,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1555.969,"y":238.457,"z":508.417},"rot":{"x":0.0,"y":275.094,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":150059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1699.115,"y":283.468,"z":320.197},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":150058,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1698.782,"y":283.056,"z":319.904},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":150057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1698.864,"y":282.77,"z":320.701},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1701.435,"y":286.35,"z":346.661},"rot":{"x":0.0,"y":274.064,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":150005,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1559.344,"y":219.545,"z":261.129},"rot":{"x":342.679,"y":12.7,"z":327.456}},{"monsterId":0,"gadgetId":70540021,"configId":150004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1559.709,"y":219.534,"z":260.84},"rot":{"x":10.567,"y":358.007,"z":330.375}},{"monsterId":0,"gadgetId":70520009,"configId":150035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1540.249,"y":242.817,"z":282.747},"rot":{"x":0.0,"y":83.162,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150012,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1618.033,"y":296.854,"z":386.551},"rot":{"x":0.0,"y":111.984,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1630.209,"y":296.695,"z":383.068},"rot":{"x":0.0,"y":179.732,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1645.181,"y":294.256,"z":372.133},"rot":{"x":0.0,"y":55.86,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":150044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1613.391,"y":314.1,"z":424.538},"rot":{"x":0.0,"y":59.45,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":150024,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1552.966,"y":241.488,"z":467.312},"rot":{"x":0.0,"y":351.491,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":150018,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1540.108,"y":237.922,"z":488.564},"rot":{"x":0.0,"y":32.027,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":150011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1677.121,"y":286.755,"z":370.59},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":150010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1676.789,"y":286.343,"z":370.297},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":150009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1676.87,"y":286.057,"z":371.095},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155003028,"blockId":0,"pos":{"x":1187.4275,"y":0.0,"z":-708.728},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":28001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1183.607,"y":248.453,"z":-723.668},"rot":{"x":357.037,"y":30.895,"z":356.857}},{"monsterId":0,"gadgetId":70520005,"configId":28004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1191.248,"y":252.129,"z":-693.788},"rot":{"x":357.922,"y":21.905,"z":3.922}}]},{"sceneId":3,"groupId":155007124,"blockId":0,"pos":{"x":-233.41167,"y":0.0,"z":1584.0929},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":124003,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-234.649,"y":183.798,"z":1584.922},"rot":{"x":0.0,"y":100.288,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":124002,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-232.04,"y":183.895,"z":1583.549},"rot":{"x":351.351,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":124001,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-233.546,"y":183.71,"z":1583.808},"rot":{"x":0.0,"y":27.403,"z":338.274}}]},{"sceneId":3,"groupId":133102148,"blockId":0,"pos":{"x":1155.9927,"y":0.0,"z":146.9322},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":148026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1032.682,"y":201.623,"z":96.856},"rot":{"x":0.0,"y":353.336,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":148006,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1240.47,"y":202.84,"z":47.887},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":148007,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1239.643,"y":203.12,"z":50.279},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":148005,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1238.529,"y":201.83,"z":49.612},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":148035,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1059.451,"y":205.873,"z":3.569},"rot":{"x":10.607,"y":80.437,"z":339.12}},{"monsterId":0,"gadgetId":70520001,"configId":148034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1054.705,"y":206.477,"z":2.89},"rot":{"x":6.252,"y":347.363,"z":14.357}},{"monsterId":0,"gadgetId":70520001,"configId":148033,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1053.102,"y":206.729,"z":1.365},"rot":{"x":2.545,"y":350.648,"z":357.181}},{"monsterId":0,"gadgetId":70520001,"configId":148032,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1062.716,"y":206.402,"z":0.708},"rot":{"x":353.487,"y":105.762,"z":9.454}},{"monsterId":0,"gadgetId":70520009,"configId":148025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1079.772,"y":205.287,"z":1.591},"rot":{"x":355.406,"y":268.626,"z":354.769}},{"monsterId":0,"gadgetId":70520005,"configId":148022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1044.094,"y":205.096,"z":37.428},"rot":{"x":0.0,"y":54.109,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":148020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1097.088,"y":200.387,"z":67.222},"rot":{"x":0.0,"y":124.318,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":148018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1274.579,"y":202.155,"z":238.861},"rot":{"x":0.0,"y":334.005,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":148002,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1252.957,"y":201.084,"z":220.66},"rot":{"x":355.567,"y":0.276,"z":18.23}},{"monsterId":0,"gadgetId":70540021,"configId":148001,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1253.374,"y":201.239,"z":221.017},"rot":{"x":354.685,"y":0.331,"z":352.875}},{"monsterId":0,"gadgetId":70520005,"configId":148019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1265.672,"y":201.803,"z":254.605},"rot":{"x":0.0,"y":334.005,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":148003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1249.365,"y":200.706,"z":255.913},"rot":{"x":352.019,"y":0.312,"z":355.533}},{"monsterId":0,"gadgetId":70520009,"configId":148021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1276.362,"y":204.265,"z":185.1},"rot":{"x":11.444,"y":118.179,"z":0.777}},{"monsterId":0,"gadgetId":70520008,"configId":148009,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1269.853,"y":199.908,"z":172.023},"rot":{"x":0.0,"y":197.643,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":148008,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1220.69,"y":200.0,"z":160.66},"rot":{"x":0.0,"y":84.397,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":148028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1194.927,"y":200.434,"z":224.056},"rot":{"x":353.689,"y":21.484,"z":356.569}},{"monsterId":0,"gadgetId":70540014,"configId":148011,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1161.611,"y":200.0,"z":247.301},"rot":{"x":0.0,"y":309.309,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":148030,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1167.57,"y":199.672,"z":250.164},"rot":{"x":0.0,"y":101.11,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":148027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1145.933,"y":201.029,"z":249.43},"rot":{"x":13.341,"y":257.604,"z":3.334}},{"monsterId":0,"gadgetId":70520005,"configId":148023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1083.703,"y":200.106,"z":213.352},"rot":{"x":356.408,"y":271.02,"z":0.83}},{"monsterId":0,"gadgetId":70540014,"configId":148015,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1076.032,"y":200.0,"z":232.483},"rot":{"x":0.0,"y":203.846,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":148013,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1075.763,"y":200.0,"z":236.286},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":148031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1041.156,"y":202.402,"z":245.852},"rot":{"x":324.676,"y":15.114,"z":5.685}}]},{"sceneId":3,"groupId":133105221,"blockId":0,"pos":{"x":608.8007,"y":0.0,"z":-256.2869},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":221002,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":882.071,"y":213.241,"z":-43.202},"rot":{"x":0.0,"y":236.039,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":221006,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":515.955,"y":200.088,"z":-498.461},"rot":{"x":0.0,"y":179.993,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":221003,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":417.587,"y":201.331,"z":-14.445},"rot":{"x":0.0,"y":147.888,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":221004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":424.918,"y":200.691,"z":-6.28},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":221009,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":673.643,"y":248.644,"z":-408.696},"rot":{"x":20.685,"y":96.24,"z":349.06}},{"monsterId":0,"gadgetId":70520018,"configId":221008,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":668.587,"y":248.468,"z":-411.733},"rot":{"x":349.664,"y":220.618,"z":0.445}},{"monsterId":0,"gadgetId":70520018,"configId":221007,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":678.844,"y":248.765,"z":-411.191},"rot":{"x":0.0,"y":0.0,"z":20.418}}]},{"sceneId":3,"groupId":155007126,"blockId":0,"pos":{"x":-304.62552,"y":0.0,"z":1594.5382},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":126005,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-349.868,"y":208.398,"z":1610.587},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":126004,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-353.293,"y":208.482,"z":1608.965},"rot":{"x":0.0,"y":322.136,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":126003,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-270.411,"y":196.084,"z":1562.941},"rot":{"x":0.0,"y":315.848,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":126002,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-266.151,"y":195.965,"z":1585.77},"rot":{"x":0.0,"y":324.405,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":126006,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-341.375,"y":208.23,"z":1622.412},"rot":{"x":0.0,"y":345.828,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":126001,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-246.655,"y":198.216,"z":1576.554},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133102149,"blockId":0,"pos":{"x":1439.3115,"y":0.0,"z":119.03468},"spawns":[{"monsterId":0,"gadgetId":70520007,"configId":149056,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1474.999,"y":236.046,"z":120.63},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":149055,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1477.426,"y":236.046,"z":119.999},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":149048,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1470.377,"y":239.295,"z":120.048},"rot":{"x":347.578,"y":357.729,"z":15.031}},{"monsterId":0,"gadgetId":70520007,"configId":149058,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1475.038,"y":236.046,"z":122.456},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":149047,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1471.34,"y":238.726,"z":117.761},"rot":{"x":347.578,"y":357.729,"z":15.031}},{"monsterId":0,"gadgetId":70520007,"configId":149057,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":1476.496,"y":236.046,"z":121.517},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":149046,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1469.649,"y":237.653,"z":119.698},"rot":{"x":347.578,"y":357.729,"z":15.031}},{"monsterId":0,"gadgetId":70520004,"configId":149050,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1477.573,"y":235.356,"z":97.933},"rot":{"x":6.335,"y":269.246,"z":7.001}},{"monsterId":0,"gadgetId":70520004,"configId":149051,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1488.026,"y":237.823,"z":96.11},"rot":{"x":10.346,"y":1.2,"z":13.191}},{"monsterId":0,"gadgetId":70520009,"configId":149015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1506.162,"y":242.134,"z":95.956},"rot":{"x":350.825,"y":359.177,"z":10.23}},{"monsterId":0,"gadgetId":70520005,"configId":149069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1465.15,"y":232.933,"z":106.989},"rot":{"x":0.0,"y":251.679,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":149062,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1458.712,"y":233.249,"z":124.394},"rot":{"x":357.028,"y":359.41,"z":11.729}},{"monsterId":0,"gadgetId":70540001,"configId":149061,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1458.473,"y":232.763,"z":124.123},"rot":{"x":357.028,"y":359.41,"z":11.729}},{"monsterId":0,"gadgetId":70540001,"configId":149060,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1458.603,"y":232.541,"z":124.934},"rot":{"x":357.028,"y":359.41,"z":11.729}},{"monsterId":0,"gadgetId":70520013,"configId":149071,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1459.995,"y":202.574,"z":165.636},"rot":{"x":0.0,"y":117.999,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":149088,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1457.045,"y":198.866,"z":186.728},"rot":{"x":0.0,"y":1.312,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":149087,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1448.947,"y":199.319,"z":180.528},"rot":{"x":0.0,"y":323.919,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":149086,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1458.568,"y":199.691,"z":178.781},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":149036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1447.146,"y":229.873,"z":113.366},"rot":{"x":348.507,"y":0.18,"z":3.469}},{"monsterId":0,"gadgetId":70540001,"configId":149035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1446.838,"y":229.392,"z":113.166},"rot":{"x":348.507,"y":0.18,"z":3.469}},{"monsterId":0,"gadgetId":70540001,"configId":149034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1446.94,"y":229.276,"z":114.002},"rot":{"x":348.507,"y":0.18,"z":3.469}},{"monsterId":0,"gadgetId":70520009,"configId":149073,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1447.333,"y":200.802,"z":145.35},"rot":{"x":0.0,"y":311.552,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":149076,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1424.671,"y":222.158,"z":92.256},"rot":{"x":6.483,"y":109.898,"z":343.554}},{"monsterId":0,"gadgetId":70520001,"configId":149001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1412.498,"y":201.344,"z":140.824},"rot":{"x":31.351,"y":-0.003,"z":17.343}},{"monsterId":0,"gadgetId":70540004,"configId":149054,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1438.951,"y":232.777,"z":84.309},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":149053,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1438.951,"y":232.777,"z":84.117},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":149016,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1444.543,"y":220.522,"z":79.154},"rot":{"x":334.195,"y":2.185,"z":350.484}},{"monsterId":0,"gadgetId":70520001,"configId":149017,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1445.163,"y":226.231,"z":82.234},"rot":{"x":335.416,"y":1.921,"z":357.735}},{"monsterId":0,"gadgetId":70520005,"configId":149014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1469.03,"y":235.107,"z":73.992},"rot":{"x":343.975,"y":102.386,"z":359.625}},{"monsterId":0,"gadgetId":70520005,"configId":149075,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1520.257,"y":238.597,"z":71.616},"rot":{"x":350.802,"y":292.105,"z":23.487}},{"monsterId":0,"gadgetId":70520009,"configId":149013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1403.824,"y":216.326,"z":87.112},"rot":{"x":339.103,"y":358.261,"z":19.278}},{"monsterId":0,"gadgetId":70540027,"configId":149091,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1399.053,"y":199.477,"z":206.385},"rot":{"x":0.0,"y":4.102,"z":347.884}},{"monsterId":0,"gadgetId":70520004,"configId":149077,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1375.127,"y":200.682,"z":158.373},"rot":{"x":0.674,"y":357.645,"z":354.612}},{"monsterId":0,"gadgetId":70540027,"configId":149089,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1375.971,"y":199.675,"z":186.333},"rot":{"x":0.0,"y":114.587,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":149090,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1374.759,"y":200.0,"z":225.907},"rot":{"x":0.0,"y":153.25,"z":6.271}},{"monsterId":0,"gadgetId":70520001,"configId":149005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1380.155,"y":201.169,"z":211.292},"rot":{"x":335.844,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":149004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1379.361,"y":200.092,"z":218.337},"rot":{"x":311.827,"y":222.133,"z":331.665}},{"monsterId":0,"gadgetId":70520001,"configId":149003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1382.762,"y":200.012,"z":214.191},"rot":{"x":0.0,"y":0.0,"z":325.515}},{"monsterId":0,"gadgetId":70520005,"configId":149068,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1389.808,"y":213.989,"z":66.415},"rot":{"x":0.0,"y":153.163,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":149072,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1410.556,"y":216.605,"z":67.255},"rot":{"x":3.928,"y":343.04,"z":358.916}},{"monsterId":0,"gadgetId":70540021,"configId":149042,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1527.619,"y":234.482,"z":48.345},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":149040,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1513.596,"y":240.709,"z":48.806},"rot":{"x":355.065,"y":359.746,"z":5.88}},{"monsterId":0,"gadgetId":70540021,"configId":149038,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1512.623,"y":239.26,"z":48.257},"rot":{"x":355.065,"y":359.746,"z":5.88}},{"monsterId":0,"gadgetId":70540021,"configId":149044,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1528.733,"y":235.772,"z":49.012},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":149070,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1365.944,"y":200.845,"z":156.226},"rot":{"x":359.232,"y":347.362,"z":4.749}},{"monsterId":0,"gadgetId":70540004,"configId":149028,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1360.505,"y":210.926,"z":220.589},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":149027,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1360.505,"y":210.926,"z":220.397},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":149011,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1336.313,"y":200.0,"z":141.166},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":149012,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1332.948,"y":172.483,"z":150.364},"rot":{"x":0.0,"y":182.991,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":149067,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1396.726,"y":218.072,"z":44.742},"rot":{"x":0.0,"y":153.163,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":149066,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1410.229,"y":215.134,"z":34.913},"rot":{"x":0.0,"y":153.163,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":149021,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1435.029,"y":214.0,"z":39.79},"rot":{"x":0.0,"y":92.405,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":149019,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1434.989,"y":214.0,"z":32.364},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":149024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1479.007,"y":222.114,"z":35.871},"rot":{"x":340.214,"y":1.86,"z":349.368}},{"monsterId":0,"gadgetId":70520005,"configId":149065,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1421.877,"y":213.149,"z":26.464},"rot":{"x":0.0,"y":153.163,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":149064,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1414.669,"y":211.262,"z":14.713},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":149063,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1436.138,"y":211.158,"z":11.713},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":149039,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1514.458,"y":240.311,"z":46.443},"rot":{"x":355.065,"y":359.746,"z":5.88}},{"monsterId":0,"gadgetId":70520009,"configId":149025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1509.911,"y":219.003,"z":28.117},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":149023,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1515.908,"y":222.914,"z":43.79},"rot":{"x":333.327,"y":313.114,"z":24.71}},{"monsterId":0,"gadgetId":70520001,"configId":149022,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1523.051,"y":223.159,"z":41.962},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":149043,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1529.56,"y":235.492,"z":46.62},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":149032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1469.429,"y":211.303,"z":4.964},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":149031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1469.096,"y":210.891,"z":4.671},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":149074,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1479.584,"y":209.468,"z":4.573},"rot":{"x":353.719,"y":98.864,"z":348.376}},{"monsterId":0,"gadgetId":70540001,"configId":149030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1469.178,"y":210.605,"z":5.468},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":149083,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1511.685,"y":199.716,"z":238.814},"rot":{"x":0.0,"y":146.554,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":149082,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1513.414,"y":199.602,"z":227.77},"rot":{"x":0.0,"y":146.554,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":149049,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1498.352,"y":202.452,"z":181.054},"rot":{"x":336.261,"y":278.886,"z":301.748}},{"monsterId":0,"gadgetId":70520001,"configId":149002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1495.337,"y":201.39,"z":178.728},"rot":{"x":328.232,"y":13.58,"z":40.855}},{"monsterId":0,"gadgetId":70540027,"configId":149085,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1505.614,"y":199.192,"z":255.044},"rot":{"x":0.0,"y":129.474,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":149084,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1507.467,"y":199.384,"z":250.821},"rot":{"x":0.0,"y":127.421,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":149006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1294.703,"y":201.92,"z":243.68},"rot":{"x":2.686,"y":246.906,"z":8.514}},{"monsterId":0,"gadgetId":70540001,"configId":149081,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1284.235,"y":202.819,"z":211.972},"rot":{"x":15.871,"y":83.126,"z":7.608}},{"monsterId":0,"gadgetId":70540001,"configId":149080,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1283.8,"y":202.464,"z":212.196},"rot":{"x":15.871,"y":83.126,"z":7.608}},{"monsterId":0,"gadgetId":70540001,"configId":149079,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1284.501,"y":201.983,"z":212.161},"rot":{"x":15.871,"y":83.126,"z":7.608}},{"monsterId":0,"gadgetId":70540014,"configId":149010,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1313.485,"y":200.0,"z":180.664},"rot":{"x":0.0,"y":44.27,"z":322.934}},{"monsterId":0,"gadgetId":70540014,"configId":149008,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1319.77,"y":200.0,"z":181.254},"rot":{"x":0.0,"y":95.247,"z":0.0}}]},{"sceneId":3,"groupId":133104195,"blockId":0,"pos":{"x":145.83232,"y":0.0,"z":133.1436},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":195093,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":253.964,"y":200.732,"z":4.234},"rot":{"x":0.0,"y":270.104,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":195102,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":239.378,"y":204.933,"z":24.909},"rot":{"x":352.257,"y":252.593,"z":7.947}},{"monsterId":0,"gadgetId":70540001,"configId":195101,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":239.678,"y":204.444,"z":24.718},"rot":{"x":352.257,"y":252.593,"z":7.947}},{"monsterId":0,"gadgetId":70540001,"configId":195100,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":238.853,"y":204.282,"z":24.586},"rot":{"x":352.257,"y":252.593,"z":7.947}},{"monsterId":0,"gadgetId":70520005,"configId":195082,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":201.099,"y":202.656,"z":2.326},"rot":{"x":8.844,"y":121.55,"z":359.18}},{"monsterId":0,"gadgetId":70540004,"configId":195030,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":163.77,"y":227.873,"z":24.594},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":195029,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":163.77,"y":227.873,"z":24.402},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":195050,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":160.692,"y":232.595,"z":39.565},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":195047,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":156.964,"y":232.119,"z":39.992},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":195048,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":167.46,"y":227.233,"z":38.605},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":195049,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":170.026,"y":226.635,"z":41.169},"rot":{"x":355.662,"y":294.532,"z":9.41}},{"monsterId":0,"gadgetId":70520005,"configId":195086,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":103.019,"y":254.054,"z":49.546},"rot":{"x":345.539,"y":237.671,"z":4.939}},{"monsterId":0,"gadgetId":70520009,"configId":195085,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":224.886,"y":207.301,"z":56.91},"rot":{"x":4.988,"y":158.154,"z":16.729}},{"monsterId":0,"gadgetId":70520009,"configId":195026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":251.155,"y":202.379,"z":54.128},"rot":{"x":358.567,"y":287.026,"z":10.669}},{"monsterId":0,"gadgetId":70520005,"configId":195092,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":80.448,"y":244.83,"z":8.854},"rot":{"x":354.735,"y":226.095,"z":347.77}},{"monsterId":0,"gadgetId":70520005,"configId":195073,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":78.138,"y":282.843,"z":35.272},"rot":{"x":4.982,"y":12.001,"z":30.104}},{"monsterId":0,"gadgetId":70520005,"configId":195070,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":76.833,"y":272.473,"z":61.374},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":195071,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":56.927,"y":271.204,"z":56.648},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":195072,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":34.19,"y":272.388,"z":41.955},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":195078,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":39.868,"y":271.204,"z":58.012},"rot":{"x":0.0,"y":349.806,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":195087,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":14.352,"y":264.129,"z":3.449},"rot":{"x":358.592,"y":139.873,"z":353.153}},{"monsterId":0,"gadgetId":70520005,"configId":195075,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":26.65,"y":265.186,"z":15.809},"rot":{"x":0.0,"y":180.724,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":195074,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":11.897,"y":267.098,"z":26.309},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":195098,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":231.249,"y":229.079,"z":212.336},"rot":{"x":12.577,"y":138.399,"z":8.72}},{"monsterId":0,"gadgetId":70540001,"configId":195097,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":231.192,"y":228.696,"z":212.801},"rot":{"x":12.577,"y":138.399,"z":8.72}},{"monsterId":0,"gadgetId":70540001,"configId":195096,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":231.577,"y":228.259,"z":212.181},"rot":{"x":12.577,"y":138.399,"z":8.72}},{"monsterId":0,"gadgetId":70520004,"configId":195046,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":197.507,"y":235.358,"z":211.184},"rot":{"x":0.0,"y":232.436,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":195044,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":189.549,"y":235.426,"z":227.794},"rot":{"x":0.591,"y":232.532,"z":5.173}},{"monsterId":0,"gadgetId":70520004,"configId":195022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":200.284,"y":235.322,"z":218.602},"rot":{"x":-0.001,"y":359.92,"z":359.105}},{"monsterId":0,"gadgetId":70520004,"configId":195045,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":178.76,"y":235.634,"z":223.19},"rot":{"x":353.923,"y":230.349,"z":41.828}},{"monsterId":0,"gadgetId":70520004,"configId":195043,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":177.511,"y":236.078,"z":212.048},"rot":{"x":341.459,"y":231.632,"z":11.037}},{"monsterId":0,"gadgetId":70520005,"configId":195058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":174.588,"y":238.818,"z":244.87},"rot":{"x":358.261,"y":0.063,"z":355.83}},{"monsterId":0,"gadgetId":70520005,"configId":195032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":163.253,"y":235.537,"z":190.572},"rot":{"x":4.752,"y":91.846,"z":351.294}},{"monsterId":0,"gadgetId":70520005,"configId":195059,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":152.406,"y":240.298,"z":241.228},"rot":{"x":337.624,"y":249.376,"z":351.466}},{"monsterId":0,"gadgetId":70520005,"configId":195094,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":201.298,"y":228.679,"z":184.756},"rot":{"x":6.761,"y":26.527,"z":339.453}},{"monsterId":0,"gadgetId":70520004,"configId":195008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":224.943,"y":227.458,"z":170.745},"rot":{"x":18.652,"y":338.865,"z":355.653}},{"monsterId":0,"gadgetId":70540001,"configId":195017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":130.279,"y":246.639,"z":178.177},"rot":{"x":4.522,"y":0.311,"z":353.566}},{"monsterId":0,"gadgetId":70540001,"configId":195016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":129.9,"y":246.291,"z":177.858},"rot":{"x":4.522,"y":0.311,"z":353.566}},{"monsterId":0,"gadgetId":70540001,"configId":195015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":129.953,"y":245.936,"z":178.629},"rot":{"x":4.522,"y":0.311,"z":353.566}},{"monsterId":0,"gadgetId":70520009,"configId":195060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":139.441,"y":247.795,"z":217.939},"rot":{"x":37.818,"y":356.03,"z":355.445}},{"monsterId":0,"gadgetId":70540001,"configId":195042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":125.585,"y":252.886,"z":211.463},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":195041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":125.252,"y":252.474,"z":211.17},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":195040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":125.334,"y":252.188,"z":211.967},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":195061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":114.646,"y":251.702,"z":223.981},"rot":{"x":2.5,"y":359.529,"z":338.662}},{"monsterId":0,"gadgetId":70520005,"configId":195036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":113.452,"y":244.996,"z":244.632},"rot":{"x":13.742,"y":2.542,"z":347.737}},{"monsterId":0,"gadgetId":70520005,"configId":195081,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":101.006,"y":255.334,"z":208.103},"rot":{"x":6.78,"y":156.855,"z":6.746}},{"monsterId":0,"gadgetId":70520005,"configId":195031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":89.586,"y":247.64,"z":255.09},"rot":{"x":13.753,"y":358.935,"z":344.482}},{"monsterId":0,"gadgetId":70520004,"configId":195083,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":85.459,"y":257.959,"z":204.016},"rot":{"x":0.655,"y":168.338,"z":20.031}},{"monsterId":0,"gadgetId":70520009,"configId":195080,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":50.957,"y":256.557,"z":252.442},"rot":{"x":0.0,"y":303.877,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":195027,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":36.849,"y":283.626,"z":222.624},"rot":{"x":31.414,"y":299.188,"z":341.473}},{"monsterId":0,"gadgetId":70520013,"configId":195077,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":42.117,"y":257.281,"z":253.241},"rot":{"x":347.038,"y":261.547,"z":356.621}},{"monsterId":0,"gadgetId":70520004,"configId":195062,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":39.371,"y":257.133,"z":254.431},"rot":{"x":13.191,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":195009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":25.9,"y":281.934,"z":223.546},"rot":{"x":334.978,"y":308.907,"z":326.278}},{"monsterId":0,"gadgetId":70540021,"configId":195013,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":246.21,"y":213.825,"z":77.652},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":195012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":247.037,"y":213.545,"z":75.26},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":195011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":245.096,"y":212.535,"z":76.985},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":195079,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":200.54,"y":242.757,"z":91.119},"rot":{"x":354.609,"y":297.41,"z":346.437}},{"monsterId":0,"gadgetId":70520005,"configId":195088,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":206.171,"y":238.677,"z":152.331},"rot":{"x":11.877,"y":333.319,"z":10.758}}]},{"sceneId":3,"groupId":133104194,"blockId":0,"pos":{"x":662.5115,"y":0.0,"z":901.3279},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":194032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":636.204,"y":225.262,"z":800.381},"rot":{"x":0.0,"y":350.325,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":194023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":738.529,"y":246.097,"z":806.35},"rot":{"x":0.0,"y":91.282,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":194016,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":702.682,"y":250.601,"z":813.613},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":194015,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":702.682,"y":250.633,"z":813.421},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":194025,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":763.122,"y":223.593,"z":818.937},"rot":{"x":0.0,"y":36.588,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":194018,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":753.165,"y":223.109,"z":827.361},"rot":{"x":332.833,"y":211.254,"z":354.666}},{"monsterId":0,"gadgetId":70540005,"configId":194017,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":767.396,"y":222.104,"z":828.22},"rot":{"x":340.895,"y":65.915,"z":347.283}},{"monsterId":0,"gadgetId":70540005,"configId":194013,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":766.543,"y":222.011,"z":828.409},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":194033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":594.625,"y":205.685,"z":858.582},"rot":{"x":0.0,"y":308.731,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":194040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":670.383,"y":216.922,"z":858.317},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":194044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":763.741,"y":240.724,"z":855.225},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":194008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":749.3,"y":221.751,"z":854.154},"rot":{"x":331.566,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":194028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":683.698,"y":206.263,"z":884.034},"rot":{"x":0.0,"y":358.028,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":194007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":703.616,"y":206.263,"z":871.577},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":194006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":702.608,"y":206.263,"z":871.539},"rot":{"x":0.0,"y":0.0,"z":287.668}},{"monsterId":0,"gadgetId":70540004,"configId":194005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":702.0,"y":206.263,"z":871.594},"rot":{"x":0.0,"y":253.364,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":194004,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":701.673,"y":206.263,"z":871.481},"rot":{"x":0.0,"y":203.568,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":194019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":730.5,"y":216.668,"z":869.076},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":194039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":710.045,"y":216.768,"z":893.513},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":194038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":709.712,"y":216.356,"z":893.22},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":194037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":709.794,"y":216.07,"z":894.017},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":194035,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":570.663,"y":209.595,"z":909.897},"rot":{"x":348.098,"y":358.396,"z":348.023}},{"monsterId":0,"gadgetId":70520013,"configId":194031,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":570.445,"y":208.567,"z":916.102},"rot":{"x":341.219,"y":199.519,"z":11.298}},{"monsterId":0,"gadgetId":70520009,"configId":194027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":583.003,"y":204.702,"z":920.917},"rot":{"x":0.0,"y":138.251,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":194045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":679.493,"y":247.627,"z":915.728},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":194051,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":724.739,"y":237.757,"z":909.588},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":194050,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":724.739,"y":237.757,"z":909.396},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":194057,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":552.756,"y":227.46,"z":811.693},"rot":{"x":0.7,"y":322.232,"z":6.967}},{"monsterId":0,"gadgetId":70540005,"configId":194021,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":586.689,"y":206.086,"z":938.731},"rot":{"x":79.982,"y":0.075,"z":271.467}},{"monsterId":0,"gadgetId":70540005,"configId":194020,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":586.017,"y":206.085,"z":937.613},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":194030,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":600.888,"y":207.442,"z":933.918},"rot":{"x":18.0,"y":204.27,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":194010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":621.547,"y":212.141,"z":929.878},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":194022,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":616.525,"y":211.095,"z":936.284},"rot":{"x":313.572,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":194011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":621.465,"y":212.427,"z":929.081},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":194012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":621.798,"y":212.839,"z":929.374},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":194055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":681.586,"y":246.865,"z":933.194},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":194054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":681.253,"y":246.453,"z":932.901},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":194053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":681.335,"y":246.167,"z":933.698},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":194056,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":539.408,"y":233.89,"z":854.773},"rot":{"x":358.922,"y":97.157,"z":350.22}},{"monsterId":0,"gadgetId":70520009,"configId":194034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":535.802,"y":236.744,"z":943.306},"rot":{"x":0.0,"y":123.506,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":194043,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":609.477,"y":263.731,"z":985.934},"rot":{"x":359.128,"y":359.988,"z":1.612}},{"monsterId":0,"gadgetId":70540004,"configId":194042,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":609.473,"y":263.724,"z":985.74},"rot":{"x":359.128,"y":359.988,"z":1.612}},{"monsterId":0,"gadgetId":70520005,"configId":194026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":595.445,"y":240.482,"z":992.482},"rot":{"x":0.0,"y":174.856,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":194029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":701.848,"y":256.282,"z":1007.682},"rot":{"x":0.0,"y":336.667,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":194003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":529.261,"y":192.48,"z":1016.871},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":194002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":534.513,"y":193.371,"z":1008.657},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":194001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":543.766,"y":190.979,"z":1018.204},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":194048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":762.15,"y":254.563,"z":897.981},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":194047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":742.083,"y":253.048,"z":916.062},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":194046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":755.384,"y":253.717,"z":927.69},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133102147,"blockId":0,"pos":{"x":1152.727,"y":0.0,"z":361.20435},"spawns":[{"monsterId":0,"gadgetId":70540004,"configId":147032,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1269.894,"y":202.685,"z":270.811},"rot":{"x":8.457,"y":352.422,"z":359.276}},{"monsterId":0,"gadgetId":70540004,"configId":147031,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1269.92,"y":202.713,"z":270.622},"rot":{"x":8.457,"y":352.422,"z":359.276}},{"monsterId":0,"gadgetId":70540021,"configId":147035,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1260.823,"y":201.576,"z":267.03},"rot":{"x":7.4,"y":323.91,"z":5.432}},{"monsterId":0,"gadgetId":70540021,"configId":147034,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1261.452,"y":201.584,"z":266.824},"rot":{"x":342.76,"y":23.174,"z":345.416}},{"monsterId":0,"gadgetId":70540021,"configId":147033,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1261.507,"y":201.653,"z":267.217},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":147054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1261.452,"y":202.371,"z":332.63},"rot":{"x":6.908,"y":167.898,"z":6.673}},{"monsterId":0,"gadgetId":70540001,"configId":147053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1261.656,"y":201.962,"z":333.027},"rot":{"x":6.908,"y":167.898,"z":6.673}},{"monsterId":0,"gadgetId":70540001,"configId":147052,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1261.703,"y":201.593,"z":332.261},"rot":{"x":6.908,"y":167.898,"z":6.673}},{"monsterId":0,"gadgetId":70520004,"configId":147004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1237.944,"y":201.041,"z":267.286},"rot":{"x":4.454,"y":359.826,"z":355.533}},{"monsterId":0,"gadgetId":70520004,"configId":147003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1241.176,"y":200.804,"z":273.304},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":147055,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1242.426,"y":199.65,"z":320.501},"rot":{"x":0.0,"y":334.668,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":147045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1215.586,"y":201.47,"z":264.622},"rot":{"x":359.906,"y":35.918,"z":354.618}},{"monsterId":0,"gadgetId":70540027,"configId":147058,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1224.545,"y":200.0,"z":284.647},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":147056,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1210.697,"y":199.29,"z":305.248},"rot":{"x":0.0,"y":214.485,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":147024,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1190.834,"y":200.0,"z":267.959},"rot":{"x":0.0,"y":214.394,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":147057,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1203.066,"y":199.521,"z":306.324},"rot":{"x":0.0,"y":200.783,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147072,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1194.025,"y":200.429,"z":318.796},"rot":{"x":0.0,"y":6.517,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147048,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1207.649,"y":201.459,"z":324.05},"rot":{"x":354.869,"y":252.181,"z":4.448}},{"monsterId":0,"gadgetId":70540021,"configId":147014,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1118.722,"y":205.044,"z":302.435},"rot":{"x":355.552,"y":359.792,"z":5.356}},{"monsterId":0,"gadgetId":70540021,"configId":147013,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1119.58,"y":204.657,"z":300.069},"rot":{"x":355.552,"y":359.792,"z":5.356}},{"monsterId":0,"gadgetId":70540021,"configId":147012,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1117.735,"y":203.608,"z":301.874},"rot":{"x":355.552,"y":359.792,"z":5.356}},{"monsterId":0,"gadgetId":70520009,"configId":147047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1126.524,"y":202.144,"z":320.357},"rot":{"x":346.096,"y":81.885,"z":8.055}},{"monsterId":0,"gadgetId":70520009,"configId":147021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1125.604,"y":202.89,"z":342.348},"rot":{"x":13.421,"y":308.861,"z":8.418}},{"monsterId":0,"gadgetId":70520004,"configId":147070,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1136.665,"y":202.189,"z":343.963},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1160.584,"y":210.537,"z":328.431},"rot":{"x":345.787,"y":313.199,"z":10.769}},{"monsterId":0,"gadgetId":70520004,"configId":147073,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1192.581,"y":200.522,"z":329.456},"rot":{"x":0.0,"y":6.517,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147074,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1210.065,"y":201.263,"z":330.454},"rot":{"x":0.0,"y":6.517,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147069,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1091.303,"y":203.432,"z":333.223},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":147002,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1100.255,"y":204.411,"z":358.054},"rot":{"x":62.421,"y":18.72,"z":153.264}},{"monsterId":0,"gadgetId":70540021,"configId":147001,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1099.685,"y":204.422,"z":358.117},"rot":{"x":297.887,"y":151.477,"z":177.576}},{"monsterId":0,"gadgetId":70520009,"configId":147059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1134.425,"y":203.383,"z":364.983},"rot":{"x":0.0,"y":215.384,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147071,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1148.547,"y":200.555,"z":352.602},"rot":{"x":0.0,"y":141.978,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1154.643,"y":201.363,"z":351.597},"rot":{"x":0.0,"y":215.384,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1203.36,"y":203.666,"z":360.55},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147037,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1204.412,"y":203.897,"z":367.633},"rot":{"x":0.0,"y":58.566,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147075,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1244.752,"y":202.988,"z":361.042},"rot":{"x":0.0,"y":311.035,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147076,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1236.977,"y":201.496,"z":365.559},"rot":{"x":0.0,"y":311.035,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":147038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1082.171,"y":203.307,"z":362.187},"rot":{"x":349.46,"y":0.658,"z":352.875}},{"monsterId":0,"gadgetId":70520004,"configId":147068,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1077.355,"y":205.567,"z":372.282},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147050,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1092.133,"y":203.19,"z":376.897},"rot":{"x":0.966,"y":89.087,"z":4.452}},{"monsterId":0,"gadgetId":70520009,"configId":147060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1153.625,"y":201.211,"z":371.692},"rot":{"x":0.0,"y":215.384,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1237.541,"y":200.0,"z":386.423},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1248.285,"y":208.042,"z":371.483},"rot":{"x":0.0,"y":109.029,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1143.756,"y":204.011,"z":390.851},"rot":{"x":344.136,"y":316.546,"z":15.626}},{"monsterId":0,"gadgetId":70520005,"configId":147043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1203.018,"y":199.899,"z":397.392},"rot":{"x":0.0,"y":204.258,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1113.574,"y":213.456,"z":422.328},"rot":{"x":0.0,"y":215.384,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":147016,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1161.104,"y":200.712,"z":410.478},"rot":{"x":359.257,"y":162.774,"z":20.82}},{"monsterId":0,"gadgetId":70520009,"configId":147019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1136.298,"y":202.925,"z":434.773},"rot":{"x":353.918,"y":308.017,"z":351.919}},{"monsterId":0,"gadgetId":70520008,"configId":147018,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1167.434,"y":200.243,"z":455.616},"rot":{"x":359.9,"y":209.437,"z":1.999}},{"monsterId":0,"gadgetId":70520008,"configId":147017,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1166.857,"y":200.292,"z":456.809},"rot":{"x":0.679,"y":209.453,"z":2.438}},{"monsterId":0,"gadgetId":70520009,"configId":147062,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1071.553,"y":232.418,"z":426.211},"rot":{"x":0.0,"y":215.384,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147040,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1087.642,"y":211.981,"z":411.716},"rot":{"x":335.789,"y":1.53,"z":352.875}},{"monsterId":0,"gadgetId":70540004,"configId":147007,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1068.537,"y":235.539,"z":427.464},"rot":{"x":2.594,"y":245.936,"z":0.228}},{"monsterId":0,"gadgetId":70540004,"configId":147006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1068.713,"y":235.548,"z":427.542},"rot":{"x":2.594,"y":245.936,"z":0.228}},{"monsterId":0,"gadgetId":70520009,"configId":147064,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1068.261,"y":210.904,"z":464.828},"rot":{"x":0.0,"y":215.384,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147065,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1066.63,"y":202.126,"z":351.634},"rot":{"x":0.0,"y":215.384,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1049.265,"y":201.181,"z":465.637},"rot":{"x":0.0,"y":120.815,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":147041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1036.022,"y":205.009,"z":347.445},"rot":{"x":359.691,"y":35.547,"z":339.759}},{"monsterId":0,"gadgetId":70520004,"configId":147067,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1047.852,"y":206.206,"z":365.983},"rot":{"x":353.111,"y":0.901,"z":345.123}},{"monsterId":0,"gadgetId":70520009,"configId":147049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1033.711,"y":206.384,"z":362.81},"rot":{"x":6.302,"y":357.948,"z":1.555}},{"monsterId":0,"gadgetId":70520004,"configId":147066,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1033.479,"y":205.024,"z":396.694},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":147029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1032.829,"y":207.208,"z":399.604},"rot":{"x":16.532,"y":0.253,"z":0.93}},{"monsterId":0,"gadgetId":70540021,"configId":147028,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1033.65,"y":207.633,"z":397.232},"rot":{"x":16.532,"y":0.253,"z":0.93}},{"monsterId":0,"gadgetId":70540021,"configId":147027,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1031.732,"y":206.144,"z":398.598},"rot":{"x":16.532,"y":0.253,"z":0.93}},{"monsterId":0,"gadgetId":70520005,"configId":147039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1084.162,"y":204.112,"z":483.97},"rot":{"x":29.146,"y":329.723,"z":329.019}},{"monsterId":0,"gadgetId":70520009,"configId":147025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1111.27,"y":200.0,"z":470.17},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":147010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1137.098,"y":203.712,"z":504.715},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":147009,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1137.098,"y":203.712,"z":504.523},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133104193,"blockId":0,"pos":{"x":908.19977,"y":0.0,"z":897.0956},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":193014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":791.969,"y":247.054,"z":852.238},"rot":{"x":0.0,"y":330.472,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":193043,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":822.381,"y":258.342,"z":871.624},"rot":{"x":0.0,"y":241.774,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":193042,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":822.788,"y":258.4,"z":870.413},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":193020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":808.274,"y":236.533,"z":799.677},"rot":{"x":0.0,"y":310.095,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":851.114,"y":251.506,"z":770.392},"rot":{"x":0.0,"y":57.959,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":193018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":862.643,"y":265.237,"z":854.046},"rot":{"x":0.0,"y":222.171,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":193039,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":881.729,"y":230.584,"z":907.923},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":193029,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":791.977,"y":254.783,"z":927.646},"rot":{"x":0.0,"y":245.021,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":193009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":833.005,"y":243.758,"z":909.802},"rot":{"x":0.0,"y":230.201,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":887.523,"y":229.165,"z":913.935},"rot":{"x":0.0,"y":65.7,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":780.049,"y":253.641,"z":929.024},"rot":{"x":0.0,"y":190.443,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":193040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":896.319,"y":232.15,"z":883.173},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":193041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":893.288,"y":228.829,"z":901.058},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":828.617,"y":248.141,"z":966.828},"rot":{"x":0.0,"y":301.028,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":193038,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":871.55,"y":235.81,"z":965.364},"rot":{"x":339.909,"y":3.68,"z":339.443}},{"monsterId":0,"gadgetId":70520001,"configId":193037,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":872.718,"y":233.612,"z":959.444},"rot":{"x":0.0,"y":0.0,"z":352.875}},{"monsterId":0,"gadgetId":70520009,"configId":193010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":899.588,"y":228.268,"z":951.473},"rot":{"x":0.0,"y":233.117,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":193032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":909.445,"y":234.6,"z":827.017},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":193027,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":918.344,"y":229.19,"z":958.858},"rot":{"x":1.582,"y":160.425,"z":339.261}},{"monsterId":0,"gadgetId":70520009,"configId":193025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":931.834,"y":226.41,"z":861.758},"rot":{"x":353.088,"y":284.115,"z":358.267}},{"monsterId":0,"gadgetId":70540001,"configId":193036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":945.061,"y":230.066,"z":873.692},"rot":{"x":3.43,"y":357.806,"z":0.025}},{"monsterId":0,"gadgetId":70540001,"configId":193035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":944.728,"y":229.666,"z":873.399},"rot":{"x":3.43,"y":357.806,"z":0.025}},{"monsterId":0,"gadgetId":70540001,"configId":193034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":944.81,"y":229.368,"z":874.196},"rot":{"x":3.43,"y":357.806,"z":0.025}},{"monsterId":0,"gadgetId":70520009,"configId":193026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":942.137,"y":228.176,"z":926.432},"rot":{"x":0.0,"y":95.763,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":193045,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":784.355,"y":252.153,"z":1016.465},"rot":{"x":40.281,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":813.244,"y":247.745,"z":1020.415},"rot":{"x":0.0,"y":245.37,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":916.427,"y":255.087,"z":1011.199},"rot":{"x":0.0,"y":339.763,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":193044,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":953.468,"y":243.709,"z":986.993},"rot":{"x":316.322,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":976.077,"y":251.517,"z":966.912},"rot":{"x":0.0,"y":355.544,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":193008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":973.009,"y":253.544,"z":1003.781},"rot":{"x":0.0,"y":223.635,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":982.351,"y":262.602,"z":1020.926},"rot":{"x":0.0,"y":258.82,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":193001,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":974.383,"y":225.166,"z":856.414},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":974.602,"y":219.742,"z":841.507},"rot":{"x":355.78,"y":348.416,"z":357.221}},{"monsterId":0,"gadgetId":70520004,"configId":193028,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":988.931,"y":225.505,"z":862.211},"rot":{"x":0.0,"y":27.51,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":193002,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":992.2,"y":226.187,"z":864.592},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":193013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":995.277,"y":242.338,"z":882.964},"rot":{"x":6.296,"y":315.272,"z":2.604}},{"monsterId":0,"gadgetId":70520004,"configId":193030,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":999.872,"y":257.966,"z":968.883},"rot":{"x":350.266,"y":347.757,"z":322.075}},{"monsterId":0,"gadgetId":70520005,"configId":193031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":936.63,"y":226.036,"z":827.422},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":193006,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":963.2,"y":225.962,"z":818.669},"rot":{"x":3.709,"y":0.008,"z":0.259}},{"monsterId":0,"gadgetId":70540021,"configId":193005,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":964.111,"y":225.842,"z":816.333},"rot":{"x":2.762,"y":313.94,"z":357.51}},{"monsterId":0,"gadgetId":70540021,"configId":193004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":962.086,"y":224.672,"z":818.002},"rot":{"x":359.935,"y":265.002,"z":356.283}},{"monsterId":0,"gadgetId":70520005,"configId":193007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":954.022,"y":232.823,"z":790.987},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":193015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1016.452,"y":229.26,"z":771.024},"rot":{"x":0.0,"y":241.15,"z":0.0}}]},{"sceneId":3,"groupId":155007122,"blockId":0,"pos":{"x":-336.76978,"y":0.0,"z":1415.658},"spawns":[{"monsterId":0,"gadgetId":70520031,"configId":122016,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-522.701,"y":189.107,"z":1372.89},"rot":{"x":349.841,"y":250.356,"z":345.461}},{"monsterId":0,"gadgetId":70520031,"configId":122020,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-507.653,"y":189.408,"z":1406.907},"rot":{"x":357.46,"y":237.453,"z":4.862}},{"monsterId":0,"gadgetId":70520031,"configId":122014,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-490.522,"y":189.04,"z":1358.146},"rot":{"x":10.246,"y":208.734,"z":355.67}},{"monsterId":0,"gadgetId":70520031,"configId":122012,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-480.727,"y":189.92,"z":1371.182},"rot":{"x":359.043,"y":166.107,"z":1.65}},{"monsterId":0,"gadgetId":70520031,"configId":122018,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-484.097,"y":189.029,"z":1407.734},"rot":{"x":349.087,"y":195.038,"z":346.422}},{"monsterId":0,"gadgetId":70520031,"configId":122010,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-141.076,"y":196.956,"z":1479.618},"rot":{"x":7.011,"y":64.051,"z":8.093}},{"monsterId":0,"gadgetId":70520031,"configId":122002,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-128.849,"y":196.815,"z":1462.441},"rot":{"x":2.705,"y":313.431,"z":6.227}},{"monsterId":0,"gadgetId":70520031,"configId":122006,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-122.554,"y":196.822,"z":1442.061},"rot":{"x":7.118,"y":0.167,"z":2.684}},{"monsterId":0,"gadgetId":70520031,"configId":122008,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-152.749,"y":196.628,"z":1439.943},"rot":{"x":6.23,"y":0.195,"z":3.577}}]},{"sceneId":3,"groupId":133224001,"blockId":0,"pos":{"x":-6035.8643,"y":0.0,"z":-3233.9243},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":1004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6043.238,"y":206.65,"z":-3299.848},"rot":{"x":0.0,"y":328.508,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":1026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6047.025,"y":202.404,"z":-3225.108},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":1025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6046.943,"y":202.118,"z":-3224.311},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":1027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6046.692,"y":202.816,"z":-3224.815},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":1008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6040.556,"y":201.172,"z":-3219.749},"rot":{"x":0.0,"y":115.486,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":1002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6026.828,"y":203.522,"z":-3243.568},"rot":{"x":0.0,"y":165.278,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":1014,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-6048.225,"y":198.345,"z":-3184.852},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":1013,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-6047.779,"y":198.956,"z":-3178.953},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":1011,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-6010.318,"y":198.647,"z":-3273.576},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":1001,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-6001.041,"y":198.604,"z":-3264.462},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155008138,"blockId":0,"pos":{"x":-552.286,"y":0.0,"z":571.673},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":138005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-565.261,"y":209.64,"z":572.461},"rot":{"x":10.721,"y":23.357,"z":358.373}},{"monsterId":0,"gadgetId":70590036,"configId":138004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-562.471,"y":209.639,"z":571.889},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":138006,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-544.216,"y":208.087,"z":569.868},"rot":{"x":0.0,"y":0.73,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":138003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-537.196,"y":207.189,"z":572.474},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155004036,"blockId":0,"pos":{"x":40.2215,"y":0.0,"z":1570.19},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":36001,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":36.429,"y":201.494,"z":1577.675},"rot":{"x":0.0,"y":93.081,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":36002,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":44.014,"y":201.931,"z":1562.705},"rot":{"x":0.0,"y":182.219,"z":0.0}}]},{"sceneId":3,"groupId":133102164,"blockId":0,"pos":{"x":1072.528,"y":0.0,"z":751.79834},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":164005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1063.499,"y":200.899,"z":750.582},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":164004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1065.679,"y":200.807,"z":755.854},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":164009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1088.406,"y":200.098,"z":748.959},"rot":{"x":0.0,"y":126.975,"z":0.0}}]},{"sceneId":3,"groupId":133102163,"blockId":0,"pos":{"x":1669.5151,"y":0.0,"z":848.57306},"spawns":[{"monsterId":0,"gadgetId":70540021,"configId":163021,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1748.438,"y":243.507,"z":810.434},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":163033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1756.01,"y":217.959,"z":856.52},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":163032,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1765.584,"y":220.1,"z":868.442},"rot":{"x":3.019,"y":281.595,"z":9.116}},{"monsterId":0,"gadgetId":70540004,"configId":163025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1567.255,"y":219.193,"z":831.973},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":163024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1567.255,"y":219.193,"z":831.781},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":163035,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1587.127,"y":202.194,"z":847.271},"rot":{"x":11.898,"y":293.821,"z":352.804}},{"monsterId":0,"gadgetId":70590024,"configId":163010,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1578.952,"y":203.142,"z":839.731},"rot":{"x":11.227,"y":36.547,"z":15.528}},{"monsterId":0,"gadgetId":70590024,"configId":163001,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1607.551,"y":220.013,"z":832.599},"rot":{"x":350.329,"y":358.294,"z":6.888}},{"monsterId":0,"gadgetId":70590024,"configId":163037,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1622.255,"y":209.531,"z":836.324},"rot":{"x":359.955,"y":195.55,"z":353.51}},{"monsterId":0,"gadgetId":70590024,"configId":163036,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1633.654,"y":210.785,"z":834.32},"rot":{"x":11.477,"y":359.82,"z":358.21}},{"monsterId":0,"gadgetId":70590024,"configId":163002,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1664.873,"y":207.423,"z":831.699},"rot":{"x":0.0,"y":158.844,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":163011,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1563.409,"y":200.281,"z":854.772},"rot":{"x":0.0,"y":358.194,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":163034,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1596.311,"y":202.854,"z":855.307},"rot":{"x":343.612,"y":351.493,"z":20.947}},{"monsterId":0,"gadgetId":70590024,"configId":163007,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1611.906,"y":205.692,"z":863.475},"rot":{"x":3.39,"y":12.567,"z":348.047}},{"monsterId":0,"gadgetId":70590024,"configId":163014,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1653.832,"y":209.037,"z":859.31},"rot":{"x":354.985,"y":121.993,"z":350.787}},{"monsterId":0,"gadgetId":70520005,"configId":163008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1712.093,"y":202.844,"z":919.506},"rot":{"x":0.0,"y":71.229,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":163022,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1747.611,"y":243.787,"z":812.826},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":163020,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1746.497,"y":242.497,"z":812.159},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":163027,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1733.829,"y":218.918,"z":863.226},"rot":{"x":318.919,"y":23.388,"z":356.954}},{"monsterId":0,"gadgetId":70540004,"configId":163005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1739.44,"y":228.647,"z":870.469},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":163006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1739.44,"y":228.647,"z":870.661},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":163026,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1765.179,"y":241.132,"z":803.783},"rot":{"x":1.974,"y":22.229,"z":358.966}},{"monsterId":0,"gadgetId":70590024,"configId":163029,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1709.56,"y":209.654,"z":829.582},"rot":{"x":9.364,"y":329.562,"z":10.063}},{"monsterId":0,"gadgetId":70520009,"configId":163030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1718.673,"y":210.128,"z":850.292},"rot":{"x":32.787,"y":232.272,"z":12.833}},{"monsterId":0,"gadgetId":70540021,"configId":163018,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1698.602,"y":236.637,"z":812.833},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":163017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1699.429,"y":236.357,"z":810.441},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":163016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1697.488,"y":235.347,"z":812.166},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":163031,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1707.582,"y":209.674,"z":828.646},"rot":{"x":359.189,"y":227.135,"z":357.428}},{"monsterId":0,"gadgetId":70520005,"configId":163028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1707.474,"y":206.002,"z":847.384},"rot":{"x":0.0,"y":22.246,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":163013,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1596.502,"y":239.076,"z":795.798},"rot":{"x":352.341,"y":44.263,"z":352.293}},{"monsterId":0,"gadgetId":70590024,"configId":163003,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1587.741,"y":236.198,"z":800.949},"rot":{"x":0.539,"y":45.369,"z":14.262}},{"monsterId":0,"gadgetId":70520008,"configId":163012,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1629.381,"y":200.794,"z":1011.983},"rot":{"x":0.0,"y":275.92,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":163009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1633.069,"y":200.416,"z":996.248},"rot":{"x":0.0,"y":80.624,"z":0.0}}]},{"sceneId":3,"groupId":133001810,"blockId":0,"pos":{"x":1151.9525,"y":0.0,"z":-1569.2585},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":810011,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1153.734,"y":298.256,"z":-1569.547},"rot":{"x":0.0,"y":107.245,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":810009,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1150.171,"y":298.909,"z":-1568.97},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133102161,"blockId":0,"pos":{"x":1871.8325,"y":0.0,"z":652.3602},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":161012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1901.115,"y":207.936,"z":764.49},"rot":{"x":0.0,"y":152.368,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1850.468,"y":210.715,"z":671.421},"rot":{"x":0.0,"y":283.989,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1826.192,"y":213.306,"z":545.676},"rot":{"x":0.0,"y":153.114,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":161014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1811.531,"y":211.424,"z":571.499},"rot":{"x":0.0,"y":124.605,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1827.824,"y":210.874,"z":627.231},"rot":{"x":0.0,"y":21.099,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":161005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1814.18,"y":215.731,"z":682.984},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1825.936,"y":213.673,"z":700.606},"rot":{"x":0.0,"y":194.679,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":161008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1872.604,"y":211.766,"z":741.23},"rot":{"x":0.0,"y":122.838,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":161019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1885.959,"y":212.328,"z":750.21},"rot":{"x":0.0,"y":65.23,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":161013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1882.752,"y":212.69,"z":722.43},"rot":{"x":0.0,"y":121.588,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":161007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1832.25,"y":211.579,"z":641.998},"rot":{"x":0.0,"y":266.001,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":161009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1792.648,"y":210.7,"z":583.324},"rot":{"x":0.0,"y":333.538,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":161028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1797.621,"y":224.352,"z":660.936},"rot":{"x":0.0,"y":67.825,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":161027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1797.224,"y":223.94,"z":661.134},"rot":{"x":0.0,"y":67.825,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":161026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1797.992,"y":223.654,"z":661.359},"rot":{"x":0.0,"y":67.825,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1795.062,"y":211.165,"z":630.079},"rot":{"x":0.0,"y":334.659,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1848.839,"y":212.313,"z":659.812},"rot":{"x":0.0,"y":160.696,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":161001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1945.685,"y":242.55,"z":623.166},"rot":{"x":0.0,"y":181.926,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1943.216,"y":242.597,"z":612.801},"rot":{"x":0.0,"y":86.514,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":161036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1931.037,"y":226.589,"z":662.476},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":161035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1930.705,"y":226.177,"z":662.183},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":161034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1930.786,"y":225.891,"z":662.98},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":161032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1960.87,"y":244.834,"z":609.378},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":161031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1960.537,"y":244.422,"z":609.085},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":161030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1960.619,"y":244.136,"z":609.882},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1847.151,"y":213.503,"z":701.616},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1888.793,"y":211.002,"z":688.593},"rot":{"x":0.0,"y":149.66,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":161015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1982.857,"y":291.324,"z":590.219},"rot":{"x":0.0,"y":87.829,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":161024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1840.699,"y":211.092,"z":609.651},"rot":{"x":0.0,"y":169.493,"z":0.0}}]},{"sceneId":3,"groupId":133225008,"blockId":0,"pos":{"x":-6443.0645,"y":0.0,"z":-2841.741},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":8003,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6449.508,"y":198.183,"z":-2845.663},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":8002,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6447.373,"y":198.344,"z":-2844.227},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":8001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6432.313,"y":200.07,"z":-2835.332},"rot":{"x":0.0,"y":83.965,"z":0.0}}]},{"sceneId":3,"groupId":155006207,"blockId":0,"pos":{"x":210.487,"y":0.0,"z":-319.755},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":207009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":220.12,"y":209.117,"z":-296.002},"rot":{"x":359.164,"y":0.125,"z":342.949}},{"monsterId":0,"gadgetId":70520009,"configId":207007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":200.854,"y":234.197,"z":-343.508},"rot":{"x":7.608,"y":359.208,"z":348.126}}]},{"sceneId":3,"groupId":133102124,"blockId":0,"pos":{"x":1664.2206,"y":0.0,"z":100.83416},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":124042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1544.189,"y":255.931,"z":100.252},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1573.15,"y":262.311,"z":97.608},"rot":{"x":337.227,"y":0.975,"z":355.162}},{"monsterId":0,"gadgetId":70520005,"configId":124082,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1621.597,"y":217.839,"z":104.79},"rot":{"x":0.0,"y":193.951,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":124024,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1624.212,"y":221.096,"z":95.415},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":124023,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1624.212,"y":221.096,"z":95.223},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":124070,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1634.38,"y":205.615,"z":97.375},"rot":{"x":0.0,"y":317.15,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1558.342,"y":251.791,"z":73.762},"rot":{"x":347.801,"y":0.863,"z":351.934}},{"monsterId":0,"gadgetId":70520009,"configId":124090,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1539.571,"y":221.354,"z":10.679},"rot":{"x":347.254,"y":104.591,"z":353.133}},{"monsterId":0,"gadgetId":70520005,"configId":124049,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1567.435,"y":270.365,"z":120.931},"rot":{"x":342.412,"y":359.903,"z":0.628}},{"monsterId":0,"gadgetId":70520005,"configId":124041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1555.289,"y":254.944,"z":137.894},"rot":{"x":0.0,"y":102.963,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":124060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1570.141,"y":259.196,"z":5.489},"rot":{"x":1.496,"y":359.954,"z":356.503}},{"monsterId":0,"gadgetId":70520009,"configId":124059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1574.58,"y":250.756,"z":16.021},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124078,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1576.533,"y":281.254,"z":147.675},"rot":{"x":0.0,"y":221.232,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1635.116,"y":255.184,"z":4.977},"rot":{"x":346.131,"y":2.131,"z":342.615}},{"monsterId":0,"gadgetId":70540001,"configId":124012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1634.668,"y":254.828,"z":4.779},"rot":{"x":346.131,"y":2.131,"z":342.615}},{"monsterId":0,"gadgetId":70520001,"configId":124003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1644.715,"y":254.356,"z":6.588},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1645.429,"y":268.388,"z":2.42},"rot":{"x":0.887,"y":359.938,"z":351.995}},{"monsterId":0,"gadgetId":70520001,"configId":124007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1631.518,"y":254.305,"z":2.634},"rot":{"x":0.0,"y":25.418,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1634.692,"y":254.731,"z":5.624},"rot":{"x":346.131,"y":2.131,"z":342.615}},{"monsterId":0,"gadgetId":70520005,"configId":124083,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1665.612,"y":225.427,"z":6.05},"rot":{"x":1.929,"y":303.169,"z":353.802}},{"monsterId":0,"gadgetId":70520001,"configId":124002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1661.012,"y":256.911,"z":3.633},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1619.586,"y":234.989,"z":14.785},"rot":{"x":25.375,"y":93.697,"z":357.079}},{"monsterId":0,"gadgetId":70540001,"configId":124103,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1665.321,"y":226.622,"z":20.242},"rot":{"x":11.151,"y":94.502,"z":342.896}},{"monsterId":0,"gadgetId":70540001,"configId":124102,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1666.044,"y":226.176,"z":20.191},"rot":{"x":11.151,"y":94.502,"z":342.896}},{"monsterId":0,"gadgetId":70540001,"configId":124104,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1665.63,"y":226.855,"z":19.777},"rot":{"x":11.151,"y":94.502,"z":342.896}},{"monsterId":0,"gadgetId":70520005,"configId":124009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1654.35,"y":227.678,"z":22.074},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1622.503,"y":245.219,"z":29.743},"rot":{"x":2.309,"y":359.898,"z":354.953}},{"monsterId":0,"gadgetId":70520005,"configId":124044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1630.969,"y":251.204,"z":47.439},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1594.498,"y":246.604,"z":60.748},"rot":{"x":352.158,"y":358.942,"z":8.942}},{"monsterId":0,"gadgetId":70520005,"configId":124092,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1663.255,"y":245.649,"z":57.944},"rot":{"x":0.0,"y":173.837,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":124063,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1668.109,"y":210.736,"z":61.043},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":124062,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1668.109,"y":210.736,"z":60.851},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1600.598,"y":250.064,"z":83.612},"rot":{"x":359.266,"y":0.689,"z":346.8}},{"monsterId":0,"gadgetId":70520005,"configId":124080,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1615.98,"y":250.565,"z":83.25},"rot":{"x":359.091,"y":346.518,"z":20.612}},{"monsterId":0,"gadgetId":70520008,"configId":124006,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1705.347,"y":231.672,"z":16.414},"rot":{"x":353.847,"y":0.525,"z":350.247}},{"monsterId":0,"gadgetId":70520013,"configId":124072,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1656.475,"y":200.23,"z":104.063},"rot":{"x":359.562,"y":240.734,"z":359.219}},{"monsterId":0,"gadgetId":70540014,"configId":124034,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1652.272,"y":200.0,"z":95.146},"rot":{"x":0.0,"y":96.002,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":124032,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1653.247,"y":200.0,"z":88.453},"rot":{"x":0.0,"y":7.379,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":124030,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1665.498,"y":200.0,"z":98.88},"rot":{"x":0.0,"y":183.317,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1658.722,"y":200.051,"z":107.577},"rot":{"x":0.882,"y":359.925,"z":350.247}},{"monsterId":0,"gadgetId":70540005,"configId":124005,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1714.658,"y":226.495,"z":42.467},"rot":{"x":0.0,"y":84.746,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":124004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1711.608,"y":226.714,"z":39.147},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":124077,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1712.796,"y":223.468,"z":56.781},"rot":{"x":0.0,"y":32.781,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1724.275,"y":207.309,"z":82.213},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1723.943,"y":206.897,"z":81.92},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1724.024,"y":206.611,"z":82.717},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":124085,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1731.168,"y":227.557,"z":44.997},"rot":{"x":0.0,"y":310.436,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124081,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1736.908,"y":203.494,"z":102.566},"rot":{"x":0.0,"y":176.022,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":124075,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1618.094,"y":210.301,"z":127.061},"rot":{"x":16.549,"y":90.235,"z":356.638}},{"monsterId":0,"gadgetId":70520005,"configId":124052,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1656.416,"y":200.162,"z":108.032},"rot":{"x":356.33,"y":251.596,"z":349.112}},{"monsterId":0,"gadgetId":70540014,"configId":124028,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1723.448,"y":200.0,"z":119.203},"rot":{"x":0.0,"y":68.97,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124096,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1769.353,"y":203.725,"z":7.974},"rot":{"x":0.0,"y":13.67,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124095,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1768.96,"y":203.313,"z":7.768},"rot":{"x":0.0,"y":13.67,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124094,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1769.228,"y":203.027,"z":8.523},"rot":{"x":0.0,"y":13.67,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":124039,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1786.743,"y":200.262,"z":42.074},"rot":{"x":339.3,"y":0.0,"z":12.99}},{"monsterId":0,"gadgetId":70520005,"configId":124079,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1786.329,"y":216.487,"z":50.957},"rot":{"x":0.0,"y":93.629,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":124071,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1782.918,"y":206.94,"z":66.735},"rot":{"x":0.0,"y":304.716,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":124015,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1781.958,"y":199.944,"z":113.248},"rot":{"x":0.0,"y":255.405,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":124021,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1644.514,"y":205.1,"z":143.069},"rot":{"x":327.842,"y":287.242,"z":12.158}},{"monsterId":0,"gadgetId":70520001,"configId":124020,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1645.218,"y":204.99,"z":145.634},"rot":{"x":333.733,"y":285.052,"z":349.237}},{"monsterId":0,"gadgetId":70540027,"configId":124105,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1649.591,"y":199.695,"z":131.604},"rot":{"x":0.0,"y":281.391,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":124017,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1697.536,"y":200.926,"z":142.717},"rot":{"x":346.539,"y":352.468,"z":16.419}},{"monsterId":0,"gadgetId":70520001,"configId":124016,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1696.544,"y":200.944,"z":143.465},"rot":{"x":35.211,"y":8.032,"z":19.661}},{"monsterId":0,"gadgetId":70540014,"configId":124026,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1770.721,"y":200.0,"z":134.323},"rot":{"x":0.0,"y":276.541,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":124040,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1788.826,"y":200.426,"z":38.994},"rot":{"x":0.0,"y":350.0,"z":29.62}},{"monsterId":0,"gadgetId":70520008,"configId":124014,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1791.28,"y":200.014,"z":102.517},"rot":{"x":0.0,"y":219.289,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":124091,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1629.203,"y":215.596,"z":165.27},"rot":{"x":15.794,"y":178.031,"z":7.48}},{"monsterId":0,"gadgetId":70540004,"configId":124069,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1681.943,"y":217.467,"z":161.457},"rot":{"x":340.135,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":124068,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1681.943,"y":217.401,"z":161.276},"rot":{"x":340.135,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124100,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1700.344,"y":211.766,"z":156.594},"rot":{"x":0.0,"y":182.092,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124099,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1700.687,"y":211.354,"z":156.874},"rot":{"x":0.0,"y":182.092,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":124098,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1700.576,"y":211.068,"z":156.081},"rot":{"x":0.0,"y":182.092,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":124073,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1713.395,"y":208.077,"z":151.279},"rot":{"x":0.0,"y":178.062,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":124066,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1740.75,"y":220.91,"z":155.724},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":124065,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1740.75,"y":220.91,"z":155.532},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":124089,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1775.677,"y":256.3,"z":163.28},"rot":{"x":351.549,"y":212.927,"z":5.775}},{"monsterId":0,"gadgetId":70520013,"configId":124107,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1718.252,"y":254.277,"z":182.444},"rot":{"x":12.9,"y":266.67,"z":341.364}},{"monsterId":0,"gadgetId":70520013,"configId":124108,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1706.228,"y":248.443,"z":190.449},"rot":{"x":10.137,"y":160.69,"z":352.86}},{"monsterId":0,"gadgetId":70520013,"configId":124076,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1719.904,"y":248.411,"z":191.457},"rot":{"x":353.08,"y":269.25,"z":4.195}},{"monsterId":0,"gadgetId":70520005,"configId":124050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1601.241,"y":284.099,"z":153.754},"rot":{"x":340.932,"y":4.823,"z":331.85}},{"monsterId":0,"gadgetId":70520009,"configId":124088,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1655.428,"y":253.826,"z":242.306},"rot":{"x":355.369,"y":162.249,"z":359.503}},{"monsterId":0,"gadgetId":70520005,"configId":124056,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1733.503,"y":250.831,"z":219.386},"rot":{"x":18.546,"y":288.48,"z":351.03}},{"monsterId":0,"gadgetId":70520005,"configId":124084,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1688.926,"y":254.455,"z":215.376},"rot":{"x":358.05,"y":331.088,"z":352.938}},{"monsterId":0,"gadgetId":70520005,"configId":124057,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1707.611,"y":253.806,"z":252.01},"rot":{"x":353.773,"y":289.567,"z":356.1}},{"monsterId":0,"gadgetId":70520005,"configId":124058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1618.527,"y":259.646,"z":252.471},"rot":{"x":15.142,"y":23.067,"z":12.698}},{"monsterId":0,"gadgetId":70520004,"configId":124074,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1601.566,"y":250.925,"z":178.156},"rot":{"x":0.0,"y":245.227,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":124019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1603.286,"y":224.02,"z":180.612},"rot":{"x":24.697,"y":332.932,"z":315.179}},{"monsterId":0,"gadgetId":70520001,"configId":124018,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1604.641,"y":224.046,"z":177.106},"rot":{"x":22.478,"y":25.191,"z":327.129}},{"monsterId":0,"gadgetId":70520005,"configId":124086,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1598.39,"y":276.043,"z":223.925},"rot":{"x":6.916,"y":125.551,"z":350.595}},{"monsterId":0,"gadgetId":70520005,"configId":124087,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1559.837,"y":214.048,"z":171.389},"rot":{"x":0.0,"y":86.989,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":124054,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1549.141,"y":217.232,"z":174.399},"rot":{"x":335.636,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":124055,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1549.141,"y":217.311,"z":174.573},"rot":{"x":335.636,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540027,"configId":124106,"level":0,"poseId":0,"gatherItemId":100032,"pos":{"x":1541.667,"y":199.75,"z":215.639},"rot":{"x":0.0,"y":146.554,"z":0.0}}]},{"sceneId":3,"groupId":155006206,"blockId":0,"pos":{"x":432.43042,"y":0.0,"z":-263.27032},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":206021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":526.635,"y":133.333,"z":-306.572},"rot":{"x":4.941,"y":1.273,"z":18.207}},{"monsterId":0,"gadgetId":70520005,"configId":206022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":527.797,"y":135.592,"z":-274.469},"rot":{"x":332.542,"y":355.526,"z":18.167}},{"monsterId":0,"gadgetId":70520009,"configId":206019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":538.945,"y":167.759,"z":-277.253},"rot":{"x":359.205,"y":359.899,"z":14.529}},{"monsterId":0,"gadgetId":70520009,"configId":206018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":536.718,"y":165.862,"z":-252.791},"rot":{"x":4.137,"y":0.187,"z":5.164}},{"monsterId":0,"gadgetId":70520009,"configId":206020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":552.889,"y":168.261,"z":-319.274},"rot":{"x":356.09,"y":359.946,"z":1.588}},{"monsterId":0,"gadgetId":70520005,"configId":206024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":489.028,"y":132.462,"z":-296.099},"rot":{"x":4.35,"y":359.497,"z":346.809}},{"monsterId":0,"gadgetId":70520005,"configId":206023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":495.648,"y":131.861,"z":-280.132},"rot":{"x":355.461,"y":2.496,"z":341.692}},{"monsterId":0,"gadgetId":70520009,"configId":206005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":474.561,"y":180.155,"z":-216.239},"rot":{"x":7.259,"y":0.057,"z":0.894}},{"monsterId":0,"gadgetId":70520009,"configId":206007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":506.895,"y":178.368,"z":-189.569},"rot":{"x":4.257,"y":0.114,"z":3.065}},{"monsterId":0,"gadgetId":70520009,"configId":206008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":444.351,"y":174.42,"z":-221.63},"rot":{"x":16.307,"y":359.118,"z":353.852}},{"monsterId":0,"gadgetId":70520009,"configId":206006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":492.191,"y":181.693,"z":-156.115},"rot":{"x":337.744,"y":356.787,"z":16.23}},{"monsterId":0,"gadgetId":70520005,"configId":206026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":500.042,"y":133.078,"z":-328.922},"rot":{"x":2.668,"y":359.855,"z":353.758}},{"monsterId":0,"gadgetId":70520009,"configId":206010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":385.94,"y":179.988,"z":-317.498},"rot":{"x":11.058,"y":359.837,"z":358.313}},{"monsterId":0,"gadgetId":70520009,"configId":206001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":389.441,"y":179.687,"z":-176.628},"rot":{"x":10.452,"y":357.286,"z":351.006}},{"monsterId":0,"gadgetId":70520009,"configId":206011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":381.196,"y":180.561,"z":-343.687},"rot":{"x":4.365,"y":0.472,"z":12.34}},{"monsterId":0,"gadgetId":70520009,"configId":206009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":377.902,"y":165.603,"z":-249.523},"rot":{"x":20.605,"y":0.597,"z":3.281}},{"monsterId":0,"gadgetId":70520009,"configId":206003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":377.153,"y":187.909,"z":-197.715},"rot":{"x":14.031,"y":358.359,"z":354.166}},{"monsterId":0,"gadgetId":70520009,"configId":206015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":319.396,"y":169.788,"z":-266.865},"rot":{"x":3.902,"y":359.636,"z":349.329}},{"monsterId":0,"gadgetId":70520009,"configId":206013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":350.721,"y":182.513,"z":-364.857},"rot":{"x":14.006,"y":0.099,"z":0.806}},{"monsterId":0,"gadgetId":70520009,"configId":206012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":350.106,"y":177.935,"z":-346.458},"rot":{"x":12.269,"y":0.672,"z":6.242}},{"monsterId":0,"gadgetId":70520009,"configId":206014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":341.974,"y":170.522,"z":-265.429},"rot":{"x":1.166,"y":0.118,"z":11.524}},{"monsterId":0,"gadgetId":70520009,"configId":206017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":288.223,"y":181.225,"z":-240.487},"rot":{"x":348.191,"y":1.101,"z":349.384}},{"monsterId":0,"gadgetId":70520009,"configId":206016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":309.193,"y":163.817,"z":-222.711},"rot":{"x":358.476,"y":0.138,"z":349.66}},{"monsterId":0,"gadgetId":70520009,"configId":206002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":362.306,"y":180.184,"z":-155.48},"rot":{"x":8.661,"y":359.183,"z":353.721}},{"monsterId":0,"gadgetId":70520005,"configId":206025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":491.512,"y":132.736,"z":-315.356},"rot":{"x":1.759,"y":359.837,"z":349.38}}]},{"sceneId":3,"groupId":133003808,"blockId":0,"pos":{"x":2234.588,"y":0.0,"z":-1140.1656},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":808006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2230.161,"y":213.022,"z":-1137.699},"rot":{"x":16.968,"y":61.062,"z":18.822}},{"monsterId":0,"gadgetId":70520001,"configId":808001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2238.114,"y":212.16,"z":-1137.054},"rot":{"x":346.302,"y":39.201,"z":12.313}},{"monsterId":0,"gadgetId":70520001,"configId":808002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2245.2,"y":215.806,"z":-1147.88},"rot":{"x":16.968,"y":61.062,"z":18.822}},{"monsterId":0,"gadgetId":70520001,"configId":808003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2232.187,"y":216.322,"z":-1145.796},"rot":{"x":7.446,"y":38.265,"z":29.08}},{"monsterId":0,"gadgetId":70520001,"configId":808004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2232.616,"y":211.971,"z":-1137.501},"rot":{"x":356.498,"y":309.321,"z":333.438}},{"monsterId":0,"gadgetId":70520001,"configId":808005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2229.249,"y":211.419,"z":-1135.064},"rot":{"x":328.107,"y":118.618,"z":51.457}}]},{"sceneId":3,"groupId":133106208,"blockId":0,"pos":{"x":-913.89197,"y":0.0,"z":1365.7495},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":208010,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-912.282,"y":155.242,"z":1363.337},"rot":{"x":0.0,"y":308.042,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":208008,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-915.502,"y":155.259,"z":1368.162},"rot":{"x":0.0,"y":274.674,"z":0.0}}]},{"sceneId":3,"groupId":133104189,"blockId":0,"pos":{"x":948.9115,"y":0.0,"z":105.91054},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":189016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1017.871,"y":208.851,"z":16.577},"rot":{"x":4.969,"y":68.328,"z":2.825}},{"monsterId":0,"gadgetId":70520005,"configId":189015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1008.253,"y":201.261,"z":105.509},"rot":{"x":0.0,"y":305.079,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":189013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":893.329,"y":200.912,"z":41.712},"rot":{"x":0.0,"y":341.691,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":189020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":963.861,"y":210.866,"z":8.6},"rot":{"x":0.0,"y":222.708,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":189025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":939.089,"y":210.668,"z":23.237},"rot":{"x":346.123,"y":128.355,"z":2.467}},{"monsterId":0,"gadgetId":70520004,"configId":189023,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":967.873,"y":209.543,"z":37.646},"rot":{"x":358.478,"y":152.494,"z":4.817}},{"monsterId":0,"gadgetId":70520005,"configId":189014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":942.148,"y":201.048,"z":65.355},"rot":{"x":21.68,"y":316.916,"z":0.708}},{"monsterId":0,"gadgetId":70520004,"configId":189022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":988.117,"y":201.442,"z":97.369},"rot":{"x":350.098,"y":142.665,"z":3.076}},{"monsterId":0,"gadgetId":70520008,"configId":189024,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":978.245,"y":200.315,"z":141.163},"rot":{"x":358.553,"y":233.215,"z":9.922}},{"monsterId":0,"gadgetId":70520008,"configId":189003,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":931.847,"y":200.039,"z":166.73},"rot":{"x":357.319,"y":359.937,"z":2.684}},{"monsterId":0,"gadgetId":70520009,"configId":189017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":973.925,"y":200.0,"z":229.148},"rot":{"x":0.0,"y":349.743,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":189001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":956.633,"y":200.079,"z":213.084},"rot":{"x":1.259,"y":275.901,"z":356.535}},{"monsterId":0,"gadgetId":70520009,"configId":189021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":774.659,"y":200.644,"z":230.707},"rot":{"x":0.0,"y":135.856,"z":0.0}}]},{"sceneId":3,"groupId":133102141,"blockId":0,"pos":{"x":1865.9932,"y":0.0,"z":835.144},"spawns":[{"monsterId":0,"gadgetId":70540003,"configId":141002,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1895.903,"y":206.708,"z":853.663},"rot":{"x":13.833,"y":6.057,"z":63.481}},{"monsterId":0,"gadgetId":70540003,"configId":141001,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1895.915,"y":206.715,"z":853.368},"rot":{"x":301.522,"y":0.0,"z":32.278}},{"monsterId":0,"gadgetId":70540003,"configId":141003,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1896.257,"y":206.723,"z":852.9},"rot":{"x":0.0,"y":7.129,"z":307.778}},{"monsterId":0,"gadgetId":70520005,"configId":141018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1894.142,"y":208.97,"z":869.288},"rot":{"x":0.0,"y":353.83,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":141020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1912.42,"y":209.801,"z":887.443},"rot":{"x":0.0,"y":175.476,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":141017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1858.318,"y":202.652,"z":905.313},"rot":{"x":342.758,"y":231.12,"z":353.945}},{"monsterId":0,"gadgetId":70540003,"configId":141005,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1970.791,"y":206.821,"z":854.786},"rot":{"x":354.642,"y":3.047,"z":330.312}},{"monsterId":0,"gadgetId":70540003,"configId":141004,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1970.868,"y":206.746,"z":854.96},"rot":{"x":0.0,"y":0.0,"z":310.792}},{"monsterId":0,"gadgetId":70540005,"configId":141010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1840.473,"y":218.42,"z":808.393},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":141009,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1827.223,"y":220.298,"z":806.649},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":141012,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1821.524,"y":205.827,"z":816.225},"rot":{"x":0.0,"y":35.231,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":141007,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1810.87,"y":226.065,"z":808.2},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":141008,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1818.851,"y":222.671,"z":809.698},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":141019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1792.512,"y":231.545,"z":814.142},"rot":{"x":0.0,"y":357.856,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":141006,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1806.849,"y":228.46,"z":810.105},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":141013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1874.651,"y":211.656,"z":842.503},"rot":{"x":0.0,"y":234.997,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":141021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1878.933,"y":207.559,"z":863.825},"rot":{"x":0.0,"y":121.588,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":141016,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1856.632,"y":221.161,"z":806.414},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":141015,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1856.814,"y":221.161,"z":806.611},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":141014,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1856.47,"y":221.161,"z":806.72},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":141011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1849.443,"y":218.829,"z":806.817},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133102134,"blockId":0,"pos":{"x":1693.523,"y":0.0,"z":637.64923},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":134046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1768.618,"y":255.258,"z":525.132},"rot":{"x":0.0,"y":70.73,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1786.458,"y":223.28,"z":677.984},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1777.55,"y":222.58,"z":681.482},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1786.376,"y":223.566,"z":677.187},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1786.709,"y":223.978,"z":677.48},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134052,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1740.5,"y":248.037,"z":558.572},"rot":{"x":12.604,"y":336.83,"z":15.585}},{"monsterId":0,"gadgetId":70540001,"configId":134089,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1745.304,"y":248.54,"z":570.012},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134088,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1744.971,"y":248.128,"z":569.719},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134087,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1745.053,"y":247.842,"z":570.516},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":134050,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1728.559,"y":246.968,"z":592.796},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134093,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1737.677,"y":234.899,"z":666.262},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134092,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1737.344,"y":234.487,"z":665.969},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134091,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1737.426,"y":234.201,"z":666.766},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":134034,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1728.296,"y":244.272,"z":688.228},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":134033,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1728.296,"y":244.272,"z":688.036},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134073,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1708.869,"y":246.85,"z":578.35},"rot":{"x":351.529,"y":36.017,"z":353.867}},{"monsterId":0,"gadgetId":70520005,"configId":134045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1725.554,"y":245.654,"z":638.188},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":134047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1725.335,"y":243.051,"z":655.055},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1710.664,"y":240.387,"z":670.806},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134056,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1681.066,"y":292.224,"z":575.735},"rot":{"x":353.549,"y":134.162,"z":10.636}},{"monsterId":0,"gadgetId":70540004,"configId":134055,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1687.069,"y":257.023,"z":598.651},"rot":{"x":0.0,"y":261.437,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":134054,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1687.259,"y":257.023,"z":598.679},"rot":{"x":0.0,"y":261.437,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134085,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1683.123,"y":230.496,"z":749.389},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134084,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1682.791,"y":230.084,"z":749.096},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134083,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1682.872,"y":229.798,"z":749.893},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":134060,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1735.831,"y":245.318,"z":761.855},"rot":{"x":2.48,"y":26.342,"z":1.336}},{"monsterId":0,"gadgetId":70540004,"configId":134059,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1735.831,"y":245.318,"z":761.663},"rot":{"x":2.48,"y":26.342,"z":1.336}},{"monsterId":0,"gadgetId":70520005,"configId":134066,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1657.802,"y":230.065,"z":737.104},"rot":{"x":353.724,"y":39.504,"z":0.603}},{"monsterId":0,"gadgetId":70520004,"configId":134022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1573.026,"y":232.527,"z":541.94},"rot":{"x":0.0,"y":160.582,"z":0.0}},{"monsterId":0,"gadgetId":70590024,"configId":134067,"level":0,"poseId":0,"gatherItemId":100091,"pos":{"x":1733.469,"y":255.619,"z":523.457},"rot":{"x":358.833,"y":34.713,"z":1.278}},{"monsterId":0,"gadgetId":70540004,"configId":134064,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1749.786,"y":284.35,"z":524.0},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":134063,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1749.786,"y":284.35,"z":523.808},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":134035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1606.256,"y":281.843,"z":542.18},"rot":{"x":0.0,"y":76.698,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134072,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1703.624,"y":243.486,"z":647.582},"rot":{"x":0.0,"y":35.562,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":134048,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1694.672,"y":246.416,"z":629.182},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1589.532,"y":254.678,"z":697.153},"rot":{"x":0.0,"y":47.592,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":134069,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1603.594,"y":271.989,"z":518.197},"rot":{"x":351.302,"y":206.407,"z":15.1}},{"monsterId":0,"gadgetId":70520008,"configId":134068,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1643.401,"y":279.829,"z":513.397},"rot":{"x":20.927,"y":103.715,"z":29.593}},{"monsterId":0,"gadgetId":70520005,"configId":134061,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1631.964,"y":235.181,"z":753.919},"rot":{"x":0.0,"y":0.814,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":134051,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1690.346,"y":225.137,"z":740.544},"rot":{"x":0.0,"y":103.484,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134070,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1583.402,"y":289.672,"z":660.008},"rot":{"x":0.0,"y":35.562,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1540.721,"y":245.021,"z":722.298},"rot":{"x":0.0,"y":318.483,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1754.382,"y":211.039,"z":618.789},"rot":{"x":0.0,"y":157.148,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":134031,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1748.253,"y":241.89,"z":659.481},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":134030,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1748.253,"y":241.89,"z":659.289},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1759.835,"y":232.373,"z":670.757},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134079,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1646.014,"y":286.287,"z":601.432},"rot":{"x":0.0,"y":78.508,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134080,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1645.216,"y":286.574,"z":601.354},"rot":{"x":0.0,"y":78.508,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134081,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1645.57,"y":286.985,"z":601.086},"rot":{"x":0.0,"y":78.508,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":134049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1788.265,"y":210.651,"z":612.964},"rot":{"x":0.0,"y":50.118,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134071,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1591.337,"y":240.799,"z":751.226},"rot":{"x":0.0,"y":35.562,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134077,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1586.542,"y":320.077,"z":618.193},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134076,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1586.209,"y":319.665,"z":617.9},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134075,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1586.291,"y":319.379,"z":618.697},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":134036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1560.218,"y":235.795,"z":597.158},"rot":{"x":0.0,"y":149.66,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1604.987,"y":316.285,"z":606.2},"rot":{"x":0.0,"y":101.389,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1760.168,"y":232.785,"z":671.05},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":134065,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1752.599,"y":232.801,"z":684.17},"rot":{"x":0.0,"y":99.234,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":134039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1759.917,"y":232.087,"z":671.554},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":134057,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1610.55,"y":288.718,"z":559.385},"rot":{"x":0.0,"y":117.58,"z":0.0}}]},{"sceneId":3,"groupId":133002805,"blockId":0,"pos":{"x":1861.1417,"y":0.0,"z":-567.71765},"spawns":[{"monsterId":0,"gadgetId":70540019,"configId":805006,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1877.926,"y":252.576,"z":-583.918},"rot":{"x":0.0,"y":321.382,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":805005,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1872.646,"y":254.131,"z":-583.837},"rot":{"x":0.0,"y":201.17,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":805004,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1872.917,"y":254.381,"z":-582.673},"rot":{"x":0.0,"y":280.703,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":805008,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1871.259,"y":251.782,"z":-548.071},"rot":{"x":0.0,"y":280.703,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":805007,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1872.709,"y":251.981,"z":-548.121},"rot":{"x":0.0,"y":280.703,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":805009,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1847.255,"y":253.465,"z":-575.055},"rot":{"x":0.0,"y":217.775,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":805003,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1844.953,"y":252.682,"z":-563.873},"rot":{"x":0.0,"y":343.281,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":805002,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1843.819,"y":252.526,"z":-563.62},"rot":{"x":0.0,"y":280.703,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":805001,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":1846.791,"y":252.747,"z":-560.291},"rot":{"x":0.0,"y":170.338,"z":0.0}}]},{"sceneId":3,"groupId":155008228,"blockId":0,"pos":{"x":-235.23418,"y":0.0,"z":368.82266},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":228006,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-142.618,"y":170.771,"z":332.179},"rot":{"x":0.0,"y":73.214,"z":14.389}},{"monsterId":0,"gadgetId":70520002,"configId":228004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-143.632,"y":170.859,"z":332.536},"rot":{"x":353.953,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":228005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-144.276,"y":170.567,"z":331.88},"rot":{"x":0.0,"y":295.878,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":228003,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-327.308,"y":216.327,"z":405.421},"rot":{"x":49.845,"y":28.399,"z":6.241}},{"monsterId":0,"gadgetId":70520002,"configId":228002,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-325.272,"y":216.677,"z":405.044},"rot":{"x":61.757,"y":343.416,"z":34.625}},{"monsterId":0,"gadgetId":70520002,"configId":228001,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-328.299,"y":216.706,"z":405.876},"rot":{"x":11.2,"y":84.753,"z":40.614}}]},{"sceneId":3,"groupId":133002804,"blockId":0,"pos":{"x":1817.6672,"y":0.0,"z":-749.77856},"spawns":[{"monsterId":0,"gadgetId":70590013,"configId":658,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1979.127,"y":219.115,"z":-556.127},"rot":{"x":6.744,"y":347.537,"z":355.622}},{"monsterId":0,"gadgetId":70590013,"configId":657,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1985.281,"y":219.111,"z":-556.02},"rot":{"x":0.501,"y":305.024,"z":344.051}},{"monsterId":0,"gadgetId":70520003,"configId":2053,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2031.959,"y":238.319,"z":-632.342},"rot":{"x":341.885,"y":104.341,"z":352.005}},{"monsterId":0,"gadgetId":70590013,"configId":1532,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1624.226,"y":199.94,"z":-395.999},"rot":{"x":0.0,"y":172.669,"z":341.785}},{"monsterId":0,"gadgetId":70590013,"configId":1531,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1648.421,"y":200.013,"z":-347.375},"rot":{"x":1.624,"y":79.515,"z":17.636}},{"monsterId":0,"gadgetId":70590013,"configId":1551,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1845.316,"y":200.839,"z":-199.714},"rot":{"x":0.0,"y":174.69,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":1550,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1845.589,"y":200.737,"z":-198.66},"rot":{"x":353.724,"y":174.69,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":804006,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1817.161,"y":232.955,"z":-926.531},"rot":{"x":6.102,"y":305.439,"z":4.244}},{"monsterId":0,"gadgetId":70590013,"configId":804002,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1822.804,"y":235.099,"z":-895.37},"rot":{"x":0.0,"y":217.16,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":804001,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1819.835,"y":235.402,"z":-894.797},"rot":{"x":0.0,"y":283.609,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":1598,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1819.683,"y":235.394,"z":-894.072},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":804005,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1837.585,"y":233.2,"z":-909.553},"rot":{"x":7.368,"y":277.849,"z":0.945}},{"monsterId":0,"gadgetId":70590013,"configId":804004,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1837.423,"y":233.2,"z":-903.571},"rot":{"x":5.074,"y":317.597,"z":5.432}},{"monsterId":0,"gadgetId":70590013,"configId":1737,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1829.596,"y":233.2,"z":-899.867},"rot":{"x":2.781,"y":304.256,"z":19.506}},{"monsterId":0,"gadgetId":70590013,"configId":1736,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1836.975,"y":233.031,"z":-909.251},"rot":{"x":6.102,"y":305.439,"z":4.244}},{"monsterId":0,"gadgetId":70590013,"configId":804003,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1783.448,"y":234.928,"z":-896.52},"rot":{"x":344.574,"y":275.493,"z":6.612}},{"monsterId":0,"gadgetId":70590013,"configId":1635,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1786.754,"y":234.604,"z":-895.901},"rot":{"x":0.538,"y":207.254,"z":16.743}},{"monsterId":0,"gadgetId":70590013,"configId":804011,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1781.141,"y":233.207,"z":-883.384},"rot":{"x":6.948,"y":249.703,"z":357.367}},{"monsterId":0,"gadgetId":70590013,"configId":804008,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1767.802,"y":232.924,"z":-933.301},"rot":{"x":355.298,"y":141.401,"z":354.244}},{"monsterId":0,"gadgetId":70590013,"configId":804007,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1766.97,"y":233.188,"z":-932.714},"rot":{"x":352.625,"y":97.385,"z":359.115}},{"monsterId":0,"gadgetId":70590013,"configId":804010,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1760.332,"y":234.652,"z":-916.84},"rot":{"x":353.06,"y":69.542,"z":2.653}},{"monsterId":0,"gadgetId":70590013,"configId":804009,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1761.255,"y":234.692,"z":-917.22},"rot":{"x":354.488,"y":132.769,"z":355.014}}]},{"sceneId":3,"groupId":133225002,"blockId":0,"pos":{"x":-6470.2544,"y":0.0,"z":-2671.7458},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":2004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6407.081,"y":241.565,"z":-2786.165},"rot":{"x":0.0,"y":144.295,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6435.483,"y":202.978,"z":-2741.579},"rot":{"x":0.0,"y":294.726,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6407.936,"y":206.237,"z":-2750.275},"rot":{"x":0.0,"y":210.455,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":2022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6478.256,"y":201.364,"z":-2811.74},"rot":{"x":0.0,"y":94.801,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6475.926,"y":201.893,"z":-2794.698},"rot":{"x":0.0,"y":332.212,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6484.563,"y":200.541,"z":-2771.721},"rot":{"x":0.0,"y":84.786,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6476.877,"y":200.422,"z":-2737.754},"rot":{"x":0.0,"y":325.144,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2035,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6505.362,"y":199.117,"z":-2785.933},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2034,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6507.241,"y":198.487,"z":-2788.958},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2033,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6508.438,"y":198.559,"z":-2774.349},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6444.921,"y":208.843,"z":-2715.87},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2070,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6400.668,"y":249.1,"z":-2713.606},"rot":{"x":0.0,"y":331.769,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2065,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6487.758,"y":199.314,"z":-2710.251},"rot":{"x":0.0,"y":59.762,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2064,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6490.28,"y":199.135,"z":-2710.812},"rot":{"x":0.0,"y":16.741,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":2076,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6452.313,"y":214.887,"z":-2706.067},"rot":{"x":355.473,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":2075,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6452.646,"y":214.475,"z":-2706.36},"rot":{"x":355.473,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":2074,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6452.564,"y":214.189,"z":-2705.563},"rot":{"x":355.473,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":2002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6456.694,"y":206.118,"z":-2694.71},"rot":{"x":0.0,"y":42.387,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":2012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6416.104,"y":249.631,"z":-2679.25},"rot":{"x":0.0,"y":226.734,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2071,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6434.165,"y":223.184,"z":-2668.644},"rot":{"x":0.0,"y":20.212,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":2029,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6422.823,"y":226.76,"z":-2662.18},"rot":{"x":0.0,"y":328.619,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2069,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6403.879,"y":260.741,"z":-2655.575},"rot":{"x":0.0,"y":354.668,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":2014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6489.982,"y":201.256,"z":-2637.349},"rot":{"x":0.0,"y":193.947,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":2080,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6461.019,"y":238.676,"z":-2632.991},"rot":{"x":0.0,"y":4.695,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":2079,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6461.352,"y":238.264,"z":-2633.284},"rot":{"x":0.0,"y":4.695,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":2078,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6461.27,"y":237.978,"z":-2632.487},"rot":{"x":0.0,"y":4.695,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":2030,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6425.758,"y":229.665,"z":-2645.147},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":2008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6407.066,"y":252.481,"z":-2637.447},"rot":{"x":0.0,"y":20.122,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6505.328,"y":247.803,"z":-2622.96},"rot":{"x":0.0,"y":89.146,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2072,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6453.334,"y":238.571,"z":-2617.939},"rot":{"x":0.0,"y":318.209,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6445.97,"y":233.863,"z":-2631.326},"rot":{"x":0.0,"y":167.223,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":2018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6497.472,"y":200.06,"z":-2676.74},"rot":{"x":0.0,"y":153.851,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":2032,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6474.309,"y":244.123,"z":-2599.585},"rot":{"x":0.0,"y":276.242,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":2031,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6472.852,"y":244.182,"z":-2600.228},"rot":{"x":0.0,"y":83.299,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6469.609,"y":246.057,"z":-2605.732},"rot":{"x":0.0,"y":137.227,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2068,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6429.578,"y":244.747,"z":-2593.952},"rot":{"x":0.0,"y":124.394,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2066,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6495.561,"y":245.759,"z":-2589.065},"rot":{"x":0.0,"y":140.796,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6468.988,"y":244.573,"z":-2574.624},"rot":{"x":0.0,"y":340.106,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":2026,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6436.401,"y":244.768,"z":-2574.187},"rot":{"x":0.0,"y":0.0,"z":56.346}},{"monsterId":0,"gadgetId":70520037,"configId":2001,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6439.582,"y":244.032,"z":-2572.281},"rot":{"x":0.0,"y":64.816,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":2027,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6419.335,"y":256.991,"z":-2562.935},"rot":{"x":0.0,"y":66.954,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":2067,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6423.355,"y":256.875,"z":-2569.639},"rot":{"x":0.0,"y":204.966,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":2028,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6418.327,"y":257.081,"z":-2565.313},"rot":{"x":0.0,"y":162.434,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":2005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6519.325,"y":200.27,"z":-2687.426},"rot":{"x":0.0,"y":210.986,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2060,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6523.63,"y":198.937,"z":-2664.52},"rot":{"x":0.0,"y":178.81,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2058,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6523.933,"y":198.916,"z":-2662.29},"rot":{"x":0.0,"y":221.177,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":2013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6520.382,"y":229.687,"z":-2594.361},"rot":{"x":0.0,"y":262.199,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2059,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6533.467,"y":198.875,"z":-2672.684},"rot":{"x":0.0,"y":218.03,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2063,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6567.596,"y":199.147,"z":-2710.021},"rot":{"x":0.0,"y":126.019,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2062,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6571.336,"y":199.32,"z":-2706.215},"rot":{"x":0.0,"y":295.484,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":2061,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6566.691,"y":199.371,"z":-2710.389},"rot":{"x":0.0,"y":61.761,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":2006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6568.511,"y":200.0,"z":-2675.586},"rot":{"x":0.0,"y":90.345,"z":0.0}}]},{"sceneId":3,"groupId":133225003,"blockId":0,"pos":{"x":-6277.1865,"y":0.0,"z":-2699.6887},"spawns":[{"monsterId":0,"gadgetId":70520037,"configId":3070,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6359.131,"y":247.985,"z":-2799.59},"rot":{"x":0.0,"y":90.38,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6237.021,"y":200.578,"z":-2811.554},"rot":{"x":0.0,"y":144.597,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6234.166,"y":214.758,"z":-2804.375},"rot":{"x":0.0,"y":69.898,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3069,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6373.439,"y":250.47,"z":-2790.43},"rot":{"x":0.0,"y":221.042,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3068,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6371.297,"y":250.073,"z":-2788.954},"rot":{"x":0.0,"y":7.41,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6331.244,"y":248.715,"z":-2784.606},"rot":{"x":0.0,"y":125.579,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6279.603,"y":248.382,"z":-2775.036},"rot":{"x":0.0,"y":326.102,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3073,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6332.069,"y":251.065,"z":-2770.887},"rot":{"x":0.0,"y":118.967,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3071,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6341.98,"y":249.636,"z":-2771.671},"rot":{"x":0.0,"y":52.121,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3072,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6331.223,"y":251.795,"z":-2768.956},"rot":{"x":0.0,"y":297.208,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6319.917,"y":255.346,"z":-2767.215},"rot":{"x":0.0,"y":132.51,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3048,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6256.82,"y":249.67,"z":-2766.089},"rot":{"x":0.0,"y":44.429,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6385.642,"y":249.253,"z":-2742.425},"rot":{"x":0.0,"y":168.665,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3066,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6367.354,"y":206.075,"z":-2731.892},"rot":{"x":348.21,"y":53.065,"z":8.733}},{"monsterId":0,"gadgetId":70520037,"configId":3065,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6364.637,"y":205.977,"z":-2731.428},"rot":{"x":21.054,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6347.948,"y":279.985,"z":-2696.692},"rot":{"x":0.0,"y":130.872,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6329.65,"y":208.429,"z":-2714.888},"rot":{"x":0.0,"y":119.391,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3003,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6327.446,"y":209.234,"z":-2716.929},"rot":{"x":0.0,"y":273.039,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3030,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6325.352,"y":208.361,"z":-2709.592},"rot":{"x":29.992,"y":0.0,"z":36.352}},{"monsterId":0,"gadgetId":70520037,"configId":3029,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6355.761,"y":215.138,"z":-2679.312},"rot":{"x":0.0,"y":237.005,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6357.605,"y":317.162,"z":-2662.925},"rot":{"x":0.0,"y":42.387,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3031,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6321.692,"y":219.4,"z":-2670.256},"rot":{"x":0.0,"y":333.463,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3021,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6331.03,"y":219.819,"z":-2664.595},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6314.188,"y":383.871,"z":-2654.31},"rot":{"x":0.0,"y":175.367,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6362.068,"y":281.286,"z":-2638.317},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3074,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6398.037,"y":257.004,"z":-2593.443},"rot":{"x":0.0,"y":203.516,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6368.246,"y":256.917,"z":-2597.705},"rot":{"x":0.0,"y":137.227,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3039,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6383.626,"y":253.685,"z":-2574.182},"rot":{"x":336.609,"y":61.78,"z":346.526}},{"monsterId":0,"gadgetId":70520037,"configId":3040,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6384.137,"y":253.234,"z":-2571.41},"rot":{"x":24.271,"y":339.396,"z":11.584}},{"monsterId":0,"gadgetId":70540001,"configId":3062,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6331.678,"y":256.349,"z":-2571.096},"rot":{"x":0.0,"y":67.244,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3063,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6331.76,"y":256.635,"z":-2571.893},"rot":{"x":0.0,"y":67.244,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3064,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6331.427,"y":257.047,"z":-2571.6},"rot":{"x":0.0,"y":67.244,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6270.09,"y":249.505,"z":-2575.133},"rot":{"x":0.0,"y":72.417,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6270.875,"y":249.791,"z":-2575.296},"rot":{"x":0.0,"y":72.417,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6270.495,"y":250.203,"z":-2575.524},"rot":{"x":0.0,"y":72.417,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6167.138,"y":219.41,"z":-2730.876},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6168.563,"y":235.646,"z":-2652.492},"rot":{"x":0.0,"y":49.762,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6155.043,"y":222.984,"z":-2758.878},"rot":{"x":0.0,"y":78.148,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6165.685,"y":214.702,"z":-2781.561},"rot":{"x":0.0,"y":5.773,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6168.817,"y":206.054,"z":-2803.114},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6169.15,"y":205.642,"z":-2803.407},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6169.068,"y":205.356,"z":-2802.61},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6162.95,"y":203.615,"z":-2813.68},"rot":{"x":0.0,"y":69.898,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6225.045,"y":244.084,"z":-2752.964},"rot":{"x":0.0,"y":283.656,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6225.378,"y":243.672,"z":-2753.257},"rot":{"x":0.0,"y":283.656,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6225.296,"y":243.386,"z":-2752.46},"rot":{"x":0.0,"y":283.656,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6194.523,"y":233.113,"z":-2756.069},"rot":{"x":0.0,"y":28.966,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6247.984,"y":252.636,"z":-2733.829},"rot":{"x":0.0,"y":44.966,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6236.059,"y":246.086,"z":-2749.522},"rot":{"x":0.0,"y":330.087,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3067,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6183.045,"y":201.101,"z":-2735.398},"rot":{"x":0.0,"y":328.812,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6220.939,"y":247.949,"z":-2719.711},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3052,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6221.272,"y":247.537,"z":-2720.004},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":3051,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6221.19,"y":247.251,"z":-2719.207},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6189.115,"y":232.09,"z":-2715.593},"rot":{"x":0.0,"y":310.185,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6183.605,"y":229.094,"z":-2728.337},"rot":{"x":0.0,"y":337.217,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6305.812,"y":284.9,"z":-2613.726},"rot":{"x":0.0,"y":167.637,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":3002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6264.177,"y":288.08,"z":-2663.596},"rot":{"x":0.0,"y":310.185,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6265.157,"y":271.836,"z":-2611.682},"rot":{"x":0.0,"y":33.182,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6253.683,"y":257.395,"z":-2611.429},"rot":{"x":0.0,"y":11.424,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6251.544,"y":250.696,"z":-2592.395},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":3038,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6232.876,"y":249.224,"z":-2609.888},"rot":{"x":22.031,"y":255.497,"z":354.456}},{"monsterId":0,"gadgetId":70520037,"configId":3037,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6234.731,"y":248.485,"z":-2606.04},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6216.185,"y":257.552,"z":-2660.728},"rot":{"x":0.0,"y":123.604,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":3058,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6217.316,"y":247.616,"z":-2637.417},"rot":{"x":0.0,"y":62.508,"z":0.0}}]},{"sceneId":3,"groupId":133102133,"blockId":0,"pos":{"x":1137.7139,"y":0.0,"z":910.08026},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":133012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1264.28,"y":210.619,"z":1021.892},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1174.812,"y":225.261,"z":996.376},"rot":{"x":0.0,"y":134.584,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1215.424,"y":221.46,"z":989.111},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1049.807,"y":221.699,"z":998.056},"rot":{"x":0.0,"y":39.474,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":133022,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1028.146,"y":216.275,"z":834.436},"rot":{"x":354.278,"y":24.908,"z":314.357}},{"monsterId":0,"gadgetId":70520001,"configId":133021,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1028.891,"y":215.39,"z":832.496},"rot":{"x":343.862,"y":356.445,"z":340.267}},{"monsterId":0,"gadgetId":70520009,"configId":133043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1039.408,"y":245.877,"z":929.515},"rot":{"x":0.0,"y":345.458,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1067.222,"y":220.916,"z":813.847},"rot":{"x":0.0,"y":189.884,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":133034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1066.556,"y":234.671,"z":882.128},"rot":{"x":0.0,"y":263.645,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":133074,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1071.436,"y":205.022,"z":796.408},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":133075,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1071.436,"y":205.022,"z":796.6},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":133050,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1085.95,"y":203.23,"z":804.327},"rot":{"x":0.0,"y":71.194,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1072.572,"y":209.121,"z":827.208},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1085.211,"y":227.671,"z":864.621},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1101.139,"y":205.668,"z":811.659},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1100.806,"y":205.256,"z":811.366},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1100.888,"y":204.97,"z":812.163},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1105.259,"y":227.308,"z":873.403},"rot":{"x":0.0,"y":15.294,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1104.86,"y":226.896,"z":873.208},"rot":{"x":0.0,"y":15.294,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1105.15,"y":226.61,"z":873.955},"rot":{"x":0.0,"y":15.294,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":133033,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1096.375,"y":213.258,"z":906.543},"rot":{"x":38.149,"y":213.255,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":133032,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1097.779,"y":212.803,"z":906.52},"rot":{"x":326.9,"y":282.859,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":133030,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1115.831,"y":210.478,"z":841.047},"rot":{"x":56.588,"y":159.716,"z":257.15}},{"monsterId":0,"gadgetId":70540021,"configId":133029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1114.781,"y":207.813,"z":833.947},"rot":{"x":341.151,"y":277.547,"z":325.438}},{"monsterId":0,"gadgetId":70540021,"configId":133028,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1113.421,"y":212.663,"z":843.403},"rot":{"x":341.151,"y":277.547,"z":325.438}},{"monsterId":0,"gadgetId":70540021,"configId":133027,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1113.627,"y":209.119,"z":838.108},"rot":{"x":0.0,"y":90.868,"z":255.756}},{"monsterId":0,"gadgetId":70540021,"configId":133026,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1112.259,"y":215.858,"z":843.623},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1143.952,"y":211.068,"z":837.887},"rot":{"x":0.0,"y":208.485,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":133044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1128.951,"y":211.532,"z":873.698},"rot":{"x":0.0,"y":99.828,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1133.214,"y":205.628,"z":922.642},"rot":{"x":0.0,"y":253.765,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":133069,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1171.707,"y":203.903,"z":832.444},"rot":{"x":343.244,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":133068,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1174.129,"y":204.637,"z":839.393},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":133067,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1172.774,"y":204.72,"z":837.318},"rot":{"x":335.133,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1182.469,"y":208.992,"z":869.302},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1179.998,"y":211.033,"z":913.294},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1179.666,"y":210.621,"z":913.001},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1179.747,"y":210.335,"z":913.798},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1193.97,"y":202.08,"z":890.186},"rot":{"x":0.0,"y":226.237,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":133037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1055.876,"y":217.903,"z":954.634},"rot":{"x":0.0,"y":137.149,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":133065,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1149.011,"y":223.265,"z":959.05},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":133064,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1149.011,"y":223.265,"z":958.858},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1175.556,"y":215.083,"z":952.176},"rot":{"x":0.0,"y":121.608,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133058,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1175.48,"y":214.671,"z":952.613},"rot":{"x":0.0,"y":121.608,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1176.116,"y":214.385,"z":952.126},"rot":{"x":0.0,"y":121.608,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":133066,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1224.018,"y":202.752,"z":952.602},"rot":{"x":1.439,"y":349.686,"z":348.087}},{"monsterId":0,"gadgetId":70540004,"configId":133062,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1123.133,"y":216.823,"z":975.809},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":133061,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1123.133,"y":216.823,"z":975.617},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":133072,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1190.864,"y":222.293,"z":972.588},"rot":{"x":0.0,"y":305.108,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":133071,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1191.021,"y":222.293,"z":972.478},"rot":{"x":0.0,"y":305.108,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":133048,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1217.035,"y":212.954,"z":968.87},"rot":{"x":0.0,"y":237.216,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1124.956,"y":219.67,"z":1003.188},"rot":{"x":44.285,"y":9.986,"z":11.952}},{"monsterId":0,"gadgetId":70540001,"configId":133005,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1124.604,"y":219.705,"z":1003.432},"rot":{"x":0.0,"y":359.983,"z":326.376}},{"monsterId":0,"gadgetId":70540001,"configId":133004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1124.822,"y":220.237,"z":1003.761},"rot":{"x":0.0,"y":359.983,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1133.315,"y":222.725,"z":1006.713},"rot":{"x":0.0,"y":0.0,"z":312.832}},{"monsterId":0,"gadgetId":70540001,"configId":133009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1133.228,"y":223.58,"z":1006.57},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":133008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1133.31,"y":223.294,"z":1007.367},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":133001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1131.715,"y":221.262,"z":990.474},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1111.59,"y":216.775,"z":1018.391},"rot":{"x":0.0,"y":358.789,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":133002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1142.526,"y":227.01,"z":1015.759},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1246.018,"y":200.826,"z":910.06},"rot":{"x":0.0,"y":244.312,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133049,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1245.551,"y":200.825,"z":908.426},"rot":{"x":0.0,"y":124.92,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":133045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1259.71,"y":200.117,"z":853.547},"rot":{"x":0.0,"y":178.793,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":133038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1270.475,"y":201.473,"z":961.016},"rot":{"x":0.0,"y":256.139,"z":0.0}}]},{"sceneId":3,"groupId":133002806,"blockId":0,"pos":{"x":1635.3309,"y":0.0,"z":-88.30074},"spawns":[{"monsterId":0,"gadgetId":70590013,"configId":806007,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1601.224,"y":199.715,"z":-276.549},"rot":{"x":0.0,"y":147.896,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":806006,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":1593.106,"y":199.788,"z":-255.177},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806020,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1527.729,"y":213.976,"z":-212.1},"rot":{"x":340.579,"y":58.02,"z":333.22}},{"monsterId":0,"gadgetId":70520002,"configId":806019,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1526.578,"y":212.948,"z":-218.156},"rot":{"x":343.852,"y":3.175,"z":337.889}},{"monsterId":0,"gadgetId":70520002,"configId":806052,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1559.303,"y":224.123,"z":-208.396},"rot":{"x":0.0,"y":317.176,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":806133,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1649.301,"y":243.079,"z":-167.488},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806053,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1658.413,"y":245.878,"z":-137.829},"rot":{"x":0.0,"y":192.882,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":806024,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1586.925,"y":239.712,"z":-122.899},"rot":{"x":0.0,"y":299.554,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":806022,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1588.185,"y":239.989,"z":-130.086},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":806147,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1567.079,"y":241.81,"z":-108.561},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":806051,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1565.124,"y":241.381,"z":-109.345},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":806050,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1564.84,"y":241.794,"z":-108.28},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":806137,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1651.467,"y":255.695,"z":-89.099},"rot":{"x":339.522,"y":358.65,"z":3.823}},{"monsterId":0,"gadgetId":70510009,"configId":806139,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1637.355,"y":260.797,"z":-70.257},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":806141,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1667.203,"y":267.908,"z":-53.659},"rot":{"x":1.923,"y":0.386,"z":1.474}},{"monsterId":0,"gadgetId":70520002,"configId":806057,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1603.718,"y":245.119,"z":-22.383},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806109,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1588.14,"y":245.249,"z":-14.446},"rot":{"x":351.327,"y":19.242,"z":323.506}},{"monsterId":0,"gadgetId":70520002,"configId":806110,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1590.317,"y":246.145,"z":-5.598},"rot":{"x":2.872,"y":15.867,"z":315.712}},{"monsterId":0,"gadgetId":70520002,"configId":806108,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1591.064,"y":243.951,"z":-11.96},"rot":{"x":322.452,"y":301.984,"z":345.226}},{"monsterId":0,"gadgetId":70510006,"configId":806119,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1624.862,"y":266.548,"z":-8.196},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806100,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1655.879,"y":226.138,"z":3.849},"rot":{"x":0.0,"y":204.822,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806099,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1660.436,"y":225.717,"z":4.795},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":806135,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1687.43,"y":255.293,"z":-100.413},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806054,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1683.732,"y":257.301,"z":-89.107},"rot":{"x":0.0,"y":84.987,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":806143,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1672.149,"y":267.935,"z":-56.848},"rot":{"x":357.489,"y":359.716,"z":359.524}},{"monsterId":0,"gadgetId":70510009,"configId":806145,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1670.973,"y":267.867,"z":-43.485},"rot":{"x":5.85,"y":0.035,"z":0.69}},{"monsterId":0,"gadgetId":70510006,"configId":806064,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1687.273,"y":280.866,"z":-33.804},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806056,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1674.422,"y":275.394,"z":-33.205},"rot":{"x":0.0,"y":146.257,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":806046,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1674.213,"y":224.28,"z":-16.604},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":806040,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1680.728,"y":224.189,"z":-4.421},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":806042,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1692.286,"y":224.28,"z":-22.864},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":806066,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1781.91,"y":272.59,"z":-74.088},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806055,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1769.591,"y":272.256,"z":-72.538},"rot":{"x":0.0,"y":63.01,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":806074,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1668.296,"y":250.038,"z":-133.028},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155008225,"blockId":0,"pos":{"x":-158.13634,"y":0.0,"z":393.24234},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":225003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-119.072,"y":197.754,"z":342.711},"rot":{"x":17.721,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":225004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-118.485,"y":197.593,"z":342.42},"rot":{"x":27.035,"y":82.77,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":225001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-236.852,"y":185.177,"z":494.596},"rot":{"x":45.627,"y":297.571,"z":331.397}}]},{"sceneId":3,"groupId":133225004,"blockId":0,"pos":{"x":-6444.5815,"y":0.0,"z":-2492.8767},"spawns":[{"monsterId":0,"gadgetId":70520037,"configId":4009,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6412.971,"y":251.939,"z":-2557.035},"rot":{"x":341.839,"y":62.736,"z":0.002}},{"monsterId":0,"gadgetId":70520037,"configId":4010,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6416.844,"y":250.962,"z":-2553.397},"rot":{"x":0.004,"y":178.554,"z":41.675}},{"monsterId":0,"gadgetId":70520005,"configId":4021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6494.202,"y":225.67,"z":-2544.102},"rot":{"x":0.0,"y":31.44,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":4006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6494.852,"y":204.548,"z":-2537.758},"rot":{"x":0.0,"y":14.958,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":4002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6479.198,"y":230.832,"z":-2544.237},"rot":{"x":0.0,"y":142.928,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":4019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6460.798,"y":247.242,"z":-2546.305},"rot":{"x":0.0,"y":32.648,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":4018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6461.131,"y":246.83,"z":-2546.598},"rot":{"x":0.0,"y":32.648,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":4017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6461.049,"y":246.544,"z":-2545.802},"rot":{"x":0.0,"y":32.648,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":4015,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6428.629,"y":249.042,"z":-2536.568},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":4014,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6428.629,"y":249.042,"z":-2536.76},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":4005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6434.252,"y":248.361,"z":-2529.19},"rot":{"x":0.0,"y":101.955,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":4004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6459.164,"y":230.356,"z":-2492.813},"rot":{"x":0.0,"y":336.927,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":4025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6408.918,"y":253.93,"z":-2494.664},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":4024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6409.251,"y":253.518,"z":-2494.957},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":4023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6409.169,"y":253.232,"z":-2494.16},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":4011,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6495.407,"y":198.712,"z":-2478.899},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":4003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6413.396,"y":250.817,"z":-2477.332},"rot":{"x":0.0,"y":46.062,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":4012,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6492.648,"y":198.414,"z":-2468.523},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":4007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6440.037,"y":235.736,"z":-2470.747},"rot":{"x":0.0,"y":262.879,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":4020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6424.713,"y":207.082,"z":-2457.982},"rot":{"x":0.0,"y":216.03,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":4008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6496.245,"y":201.878,"z":-2433.407},"rot":{"x":0.0,"y":78.678,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":4001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6482.658,"y":216.535,"z":-2443.945},"rot":{"x":0.0,"y":309.228,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":4031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6421.564,"y":205.779,"z":-2442.626},"rot":{"x":0.0,"y":128.257,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":4030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6410.944,"y":203.277,"z":-2395.734},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":4029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6411.277,"y":202.865,"z":-2396.027},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":4028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6411.195,"y":202.579,"z":-2395.23},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133225005,"blockId":0,"pos":{"x":-6274.0337,"y":0.0,"z":-2463.7742},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":5051,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6397.793,"y":250.343,"z":-2536.004},"rot":{"x":0.0,"y":312.086,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":5050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6398.126,"y":249.931,"z":-2536.297},"rot":{"x":0.0,"y":312.086,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":5049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6398.044,"y":249.645,"z":-2535.5},"rot":{"x":0.0,"y":312.086,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6392.502,"y":248.407,"z":-2532.019},"rot":{"x":0.0,"y":190.105,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6389.872,"y":251.052,"z":-2506.642},"rot":{"x":0.0,"y":26.581,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6366.917,"y":255.396,"z":-2524.971},"rot":{"x":0.0,"y":10.003,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5056,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6359.941,"y":221.199,"z":-2441.14},"rot":{"x":0.0,"y":159.394,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6371.446,"y":211.663,"z":-2433.819},"rot":{"x":0.0,"y":309.228,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":5045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6342.184,"y":263.86,"z":-2475.019},"rot":{"x":2.943,"y":328.352,"z":358.188}},{"monsterId":0,"gadgetId":70540001,"configId":5044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6342.102,"y":263.574,"z":-2474.222},"rot":{"x":2.943,"y":328.352,"z":358.188}},{"monsterId":0,"gadgetId":70540001,"configId":5046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6341.851,"y":264.272,"z":-2474.726},"rot":{"x":2.943,"y":328.352,"z":358.188}},{"monsterId":0,"gadgetId":70520005,"configId":5011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6335.485,"y":261.621,"z":-2482.298},"rot":{"x":0.0,"y":75.408,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6333.724,"y":249.37,"z":-2434.929},"rot":{"x":0.0,"y":138.533,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6325.98,"y":260.53,"z":-2464.425},"rot":{"x":0.0,"y":338.328,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6314.428,"y":202.462,"z":-2426.809},"rot":{"x":0.0,"y":167.932,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":5066,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6324.485,"y":202.766,"z":-2413.725},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":5065,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6324.403,"y":202.48,"z":-2412.928},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":5067,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6324.152,"y":203.178,"z":-2413.432},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6307.095,"y":251.547,"z":-2545.763},"rot":{"x":0.0,"y":353.49,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6304.639,"y":254.015,"z":-2498.112},"rot":{"x":0.0,"y":46.062,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5057,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6300.168,"y":216.587,"z":-2447.532},"rot":{"x":0.0,"y":197.663,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6281.949,"y":249.077,"z":-2510.259},"rot":{"x":0.0,"y":190.105,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":5042,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6288.338,"y":198.598,"z":-2419.722},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":5041,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6285.588,"y":198.52,"z":-2421.28},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6262.745,"y":247.812,"z":-2516.12},"rot":{"x":0.0,"y":108.954,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6263.862,"y":237.014,"z":-2448.637},"rot":{"x":0.0,"y":296.34,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6252.584,"y":214.092,"z":-2429.716},"rot":{"x":0.0,"y":170.398,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6346.204,"y":206.273,"z":-2410.583},"rot":{"x":0.0,"y":340.422,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6237.691,"y":247.116,"z":-2498.872},"rot":{"x":0.0,"y":336.813,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6214.282,"y":243.824,"z":-2543.19},"rot":{"x":0.0,"y":353.49,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6214.219,"y":225.55,"z":-2543.431},"rot":{"x":0.0,"y":256.002,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6223.966,"y":231.462,"z":-2443.166},"rot":{"x":4.941,"y":338.328,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6225.432,"y":232.528,"z":-2417.208},"rot":{"x":0.0,"y":200.377,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6191.51,"y":234.373,"z":-2529.961},"rot":{"x":0.0,"y":50.314,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6177.256,"y":218.487,"z":-2480.898},"rot":{"x":0.0,"y":47.301,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6186.022,"y":225.397,"z":-2448.753},"rot":{"x":0.0,"y":185.455,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":5062,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6178.053,"y":202.528,"z":-2427.502},"rot":{"x":9.731,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":5061,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6177.971,"y":202.242,"z":-2426.705},"rot":{"x":9.731,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":5063,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6177.72,"y":202.94,"z":-2427.209},"rot":{"x":9.731,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6190.66,"y":201.663,"z":-2422.389},"rot":{"x":0.0,"y":311.167,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":5030,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-6277.764,"y":200.066,"z":-2383.081},"rot":{"x":0.0,"y":302.191,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6235.223,"y":200.324,"z":-2388.952},"rot":{"x":0.0,"y":232.163,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":5043,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6224.022,"y":198.591,"z":-2387.147},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6145.503,"y":219.014,"z":-2530.407},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":5031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6150.233,"y":208.794,"z":-2514.14},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":5008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6151.733,"y":221.008,"z":-2443.407},"rot":{"x":0.0,"y":279.376,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":5036,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6150.311,"y":198.728,"z":-2417.897},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":5035,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6147.477,"y":198.498,"z":-2420.208},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133225006,"blockId":0,"pos":{"x":-6262.577,"y":0.0,"z":-2932.549},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":6040,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6319.641,"y":198.427,"z":-3055.219},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":6041,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6309.706,"y":198.787,"z":-3058.869},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6259.341,"y":206.01,"z":-3061.349},"rot":{"x":0.0,"y":284.567,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6278.202,"y":205.999,"z":-3051.282},"rot":{"x":0.0,"y":310.3,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6278.195,"y":205.587,"z":-3051.726},"rot":{"x":0.0,"y":310.3,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6278.749,"y":205.301,"z":-3051.148},"rot":{"x":0.0,"y":310.3,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6295.974,"y":206.913,"z":-3007.42},"rot":{"x":0.0,"y":66.545,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6250.368,"y":215.542,"z":-3002.21},"rot":{"x":0.0,"y":106.37,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6174.95,"y":200.955,"z":-2993.751},"rot":{"x":0.0,"y":69.446,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":6061,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6292.418,"y":216.693,"z":-2978.374},"rot":{"x":0.0,"y":164.114,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6311.946,"y":215.651,"z":-2978.563},"rot":{"x":0.0,"y":282.882,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":6062,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6289.102,"y":216.313,"z":-2979.52},"rot":{"x":0.0,"y":220.455,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6254.914,"y":217.008,"z":-2979.388},"rot":{"x":0.0,"y":178.811,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6337.636,"y":203.477,"z":-2947.239},"rot":{"x":0.0,"y":90.039,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6286.129,"y":220.391,"z":-2941.293},"rot":{"x":0.0,"y":45.84,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":6056,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6264.246,"y":228.923,"z":-2932.422},"rot":{"x":20.925,"y":196.735,"z":6.129}},{"monsterId":0,"gadgetId":70520037,"configId":6055,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6262.686,"y":229.373,"z":-2932.365},"rot":{"x":335.978,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6205.658,"y":230.118,"z":-2951.253},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6205.991,"y":229.706,"z":-2951.546},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6205.909,"y":229.42,"z":-2950.75},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":6058,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6268.151,"y":221.657,"z":-2912.705},"rot":{"x":0.0,"y":326.163,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":6057,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6266.396,"y":221.798,"z":-2913.805},"rot":{"x":0.0,"y":240.667,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6252.072,"y":264.301,"z":-2925.857},"rot":{"x":0.0,"y":8.422,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6201.232,"y":231.011,"z":-2918.925},"rot":{"x":0.0,"y":263.945,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6342.595,"y":205.38,"z":-2893.536},"rot":{"x":0.0,"y":220.614,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":6060,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6289.662,"y":222.343,"z":-2907.202},"rot":{"x":0.0,"y":207.417,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6052,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6285.874,"y":221.136,"z":-2906.996},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6285.956,"y":221.422,"z":-2907.792},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6285.623,"y":221.834,"z":-2907.5},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520037,"configId":6059,"level":0,"poseId":0,"gatherItemId":101209,"pos":{"x":-6289.789,"y":223.057,"z":-2904.362},"rot":{"x":351.995,"y":192.032,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6237.266,"y":224.575,"z":-2893.273},"rot":{"x":0.0,"y":302.193,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6202.267,"y":224.784,"z":-2905.209},"rot":{"x":2.319,"y":317.858,"z":344.171}},{"monsterId":0,"gadgetId":70540001,"configId":6045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6202.6,"y":224.372,"z":-2905.502},"rot":{"x":2.319,"y":317.858,"z":344.171}},{"monsterId":0,"gadgetId":70540001,"configId":6044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6202.518,"y":224.086,"z":-2904.705},"rot":{"x":2.319,"y":317.858,"z":344.171}},{"monsterId":0,"gadgetId":70520009,"configId":6042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6194.922,"y":208.717,"z":-2893.853},"rot":{"x":0.0,"y":295.085,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6236.865,"y":209.3,"z":-2874.414},"rot":{"x":0.0,"y":2.054,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6348.648,"y":209.769,"z":-2868.396},"rot":{"x":0.0,"y":237.245,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6338.425,"y":228.746,"z":-2863.267},"rot":{"x":0.0,"y":63.563,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6314.338,"y":226.528,"z":-2869.885},"rot":{"x":0.0,"y":88.47,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6206.542,"y":207.484,"z":-2863.224},"rot":{"x":0.0,"y":33.847,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6352.091,"y":230.254,"z":-2839.217},"rot":{"x":0.0,"y":112.012,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6290.822,"y":240.043,"z":-2841.982},"rot":{"x":0.0,"y":256.534,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6390.044,"y":201.025,"z":-2887.43},"rot":{"x":0.0,"y":323.292,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6382.417,"y":205.562,"z":-2830.958},"rot":{"x":0.0,"y":143.884,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6392.734,"y":201.069,"z":-2905.614},"rot":{"x":0.0,"y":93.038,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6144.787,"y":201.789,"z":-2967.354},"rot":{"x":0.0,"y":118.461,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6150.989,"y":219.374,"z":-2925.734},"rot":{"x":0.0,"y":59.322,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6165.754,"y":218.655,"z":-2895.38},"rot":{"x":0.0,"y":330.753,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6165.901,"y":218.243,"z":-2895.8},"rot":{"x":0.0,"y":330.753,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6166.219,"y":217.957,"z":-2895.063},"rot":{"x":0.0,"y":330.753,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6176.265,"y":204.372,"z":-2879.381},"rot":{"x":0.0,"y":56.259,"z":0.0}}]},{"sceneId":3,"groupId":133002803,"blockId":0,"pos":{"x":1915.3696,"y":0.0,"z":-552.6358},"spawns":[{"monsterId":0,"gadgetId":70510009,"configId":2099,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1929.959,"y":235.962,"z":-959.84},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2320,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1949.019,"y":219.354,"z":-953.922},"rot":{"x":0.0,"y":292.966,"z":329.692}},{"monsterId":0,"gadgetId":70540020,"configId":2321,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1900.755,"y":237.991,"z":-920.143},"rot":{"x":0.0,"y":50.884,"z":44.162}},{"monsterId":0,"gadgetId":70510009,"configId":2123,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1932.774,"y":215.965,"z":-666.487},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":1565,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1990.99,"y":219.34,"z":-545.806},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":1882,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2031.812,"y":230.979,"z":-675.941},"rot":{"x":352.24,"y":0.0,"z":7.56}},{"monsterId":0,"gadgetId":70510006,"configId":2060,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2056.676,"y":243.743,"z":-613.678},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":1731,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1973.629,"y":253.398,"z":-473.224},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540013,"configId":803033,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2047.722,"y":247.549,"z":-467.26},"rot":{"x":33.681,"y":341.973,"z":304.684}},{"monsterId":0,"gadgetId":70510009,"configId":2097,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1928.648,"y":250.705,"z":-446.936},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540013,"configId":803034,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2033.601,"y":253.685,"z":-413.577},"rot":{"x":5.681,"y":358.565,"z":331.673}},{"monsterId":0,"gadgetId":70510005,"configId":1567,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1957.139,"y":231.462,"z":-410.788},"rot":{"x":0.0,"y":39.12,"z":1.0}},{"monsterId":0,"gadgetId":70540013,"configId":803046,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2018.908,"y":257.203,"z":-389.295},"rot":{"x":0.337,"y":307.8,"z":329.05}},{"monsterId":0,"gadgetId":70540013,"configId":2306,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2041.209,"y":260.014,"z":-390.42},"rot":{"x":348.129,"y":27.028,"z":3.818}},{"monsterId":0,"gadgetId":70540013,"configId":2305,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2044.244,"y":260.908,"z":-388.673},"rot":{"x":344.809,"y":26.316,"z":12.609}},{"monsterId":0,"gadgetId":70540013,"configId":803039,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2049.413,"y":263.312,"z":-385.519},"rot":{"x":22.003,"y":244.053,"z":6.148}},{"monsterId":0,"gadgetId":70540013,"configId":803035,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2049.296,"y":262.989,"z":-386.604},"rot":{"x":346.578,"y":357.942,"z":17.355}},{"monsterId":0,"gadgetId":70510006,"configId":1725,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1958.847,"y":246.041,"z":-357.728},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540013,"configId":803045,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":1985.908,"y":254.927,"z":-369.973},"rot":{"x":359.66,"y":239.5,"z":349.773}},{"monsterId":0,"gadgetId":70540013,"configId":803048,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2024.543,"y":261.197,"z":-359.932},"rot":{"x":0.0,"y":324.6,"z":12.34}},{"monsterId":0,"gadgetId":70540013,"configId":803047,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2022.975,"y":260.886,"z":-360.002},"rot":{"x":357.362,"y":249.12,"z":10.62}},{"monsterId":0,"gadgetId":70540013,"configId":803043,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2044.393,"y":261.074,"z":-352.031},"rot":{"x":5.304,"y":101.1,"z":8.005}},{"monsterId":0,"gadgetId":70540013,"configId":803042,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2060.263,"y":261.283,"z":-353.164},"rot":{"x":8.877,"y":289.66,"z":358.21}},{"monsterId":0,"gadgetId":70540013,"configId":2302,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2066.664,"y":262.851,"z":-371.563},"rot":{"x":10.539,"y":25.669,"z":350.476}},{"monsterId":0,"gadgetId":70540013,"configId":2310,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2078.672,"y":262.494,"z":-389.97},"rot":{"x":4.794,"y":26.572,"z":354.432}},{"monsterId":0,"gadgetId":70540013,"configId":803041,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2070.543,"y":261.407,"z":-363.699},"rot":{"x":6.182,"y":221.4,"z":351.995}},{"monsterId":0,"gadgetId":70540013,"configId":803040,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2072.566,"y":261.0,"z":-363.467},"rot":{"x":6.834,"y":35.6,"z":343.464}},{"monsterId":0,"gadgetId":70540013,"configId":2311,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2023.771,"y":258.577,"z":-343.634},"rot":{"x":14.102,"y":27.432,"z":1.376}},{"monsterId":0,"gadgetId":70540013,"configId":2301,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2043.204,"y":261.118,"z":-350.839},"rot":{"x":19.986,"y":44.763,"z":65.689}},{"monsterId":0,"gadgetId":70540013,"configId":2300,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2004.218,"y":256.81,"z":-328.942},"rot":{"x":14.102,"y":27.432,"z":1.376}},{"monsterId":0,"gadgetId":70540013,"configId":803044,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2040.986,"y":260.98,"z":-317.256},"rot":{"x":346.468,"y":70.1,"z":15.71}},{"monsterId":0,"gadgetId":70540013,"configId":2309,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2037.742,"y":260.519,"z":-318.266},"rot":{"x":355.708,"y":27.269,"z":3.317}},{"monsterId":0,"gadgetId":70540013,"configId":2303,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2045.349,"y":259.824,"z":-328.867},"rot":{"x":348.894,"y":27.041,"z":4.223}},{"monsterId":0,"gadgetId":70540013,"configId":803053,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":1938.994,"y":269.803,"z":-272.262},"rot":{"x":4.759,"y":8.3,"z":348.199}},{"monsterId":0,"gadgetId":70540013,"configId":803052,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":1934.729,"y":270.949,"z":-242.192},"rot":{"x":356.583,"y":135.4,"z":348.102}},{"monsterId":0,"gadgetId":70540013,"configId":2304,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2090.475,"y":260.733,"z":-395.097},"rot":{"x":8.747,"y":26.67,"z":356.459}},{"monsterId":0,"gadgetId":70540013,"configId":803051,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":1933.765,"y":271.778,"z":-228.73},"rot":{"x":357.179,"y":357.05,"z":352.735}},{"monsterId":0,"gadgetId":70540013,"configId":803050,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":1949.657,"y":272.499,"z":-216.781},"rot":{"x":348.855,"y":19.29,"z":2.175}},{"monsterId":0,"gadgetId":70540013,"configId":803049,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":1951.539,"y":272.619,"z":-216.506},"rot":{"x":350.021,"y":284.9,"z":1.498}},{"monsterId":0,"gadgetId":70540013,"configId":2308,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":1948.302,"y":272.093,"z":-218.61},"rot":{"x":349.356,"y":27.266,"z":356.551}},{"monsterId":0,"gadgetId":70510005,"configId":1699,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1581.669,"y":209.589,"z":-478.913},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":1695,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1582.018,"y":204.251,"z":-454.853},"rot":{"x":13.18,"y":357.26,"z":4.8}},{"monsterId":0,"gadgetId":70520003,"configId":803024,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1671.787,"y":259.352,"z":-719.871},"rot":{"x":24.21,"y":44.772,"z":22.138}},{"monsterId":0,"gadgetId":70520003,"configId":803023,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1668.451,"y":259.452,"z":-720.507},"rot":{"x":33.521,"y":25.664,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":803021,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1677.755,"y":258.754,"z":-707.388},"rot":{"x":349.303,"y":53.923,"z":39.247}},{"monsterId":0,"gadgetId":70520003,"configId":803022,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1678.339,"y":258.768,"z":-708.889},"rot":{"x":342.47,"y":349.866,"z":30.686}},{"monsterId":0,"gadgetId":70510005,"configId":1616,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1695.31,"y":256.573,"z":-726.843},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":1618,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1697.853,"y":256.339,"z":-675.419},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":1711,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1733.622,"y":252.152,"z":-694.795},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":1709,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1752.653,"y":240.74,"z":-626.024},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":1713,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1808.968,"y":250.172,"z":-693.678},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2325,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1880.188,"y":242.123,"z":-858.582},"rot":{"x":0.0,"y":340.371,"z":320.406}},{"monsterId":0,"gadgetId":70540020,"configId":2324,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1874.808,"y":249.517,"z":-861.648},"rot":{"x":321.153,"y":0.0,"z":345.949}},{"monsterId":0,"gadgetId":70510005,"configId":2422,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1980.031,"y":207.415,"z":-757.789},"rot":{"x":357.395,"y":74.047,"z":9.469}},{"monsterId":0,"gadgetId":70510005,"configId":1723,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1921.991,"y":219.658,"z":-637.048},"rot":{"x":1.93,"y":2.39,"z":339.13}},{"monsterId":0,"gadgetId":70510007,"configId":1545,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1788.835,"y":218.967,"z":-462.077},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2333,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1696.016,"y":218.101,"z":-388.245},"rot":{"x":42.352,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2332,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1695.469,"y":210.856,"z":-390.386},"rot":{"x":343.81,"y":61.903,"z":332.424}},{"monsterId":0,"gadgetId":70510007,"configId":2020,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1859.123,"y":201.41,"z":-175.491},"rot":{"x":0.0,"y":242.648,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":2085,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1864.072,"y":201.164,"z":-170.206},"rot":{"x":0.0,"y":325.144,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":1612,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1997.264,"y":216.545,"z":-991.652},"rot":{"x":0.0,"y":0.0,"z":344.98}},{"monsterId":0,"gadgetId":70540020,"configId":2317,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1909.376,"y":235.437,"z":-941.917},"rot":{"x":9.525,"y":359.333,"z":359.144}},{"monsterId":0,"gadgetId":70540020,"configId":2316,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1914.179,"y":228.549,"z":-939.923},"rot":{"x":8.007,"y":353.513,"z":308.919}},{"monsterId":0,"gadgetId":70540020,"configId":2318,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1938.065,"y":234.824,"z":-944.627},"rot":{"x":42.308,"y":250.231,"z":302.301}},{"monsterId":0,"gadgetId":70540020,"configId":2315,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1937.697,"y":228.498,"z":-940.409},"rot":{"x":8.007,"y":353.513,"z":308.919}},{"monsterId":0,"gadgetId":70540020,"configId":2339,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1966.834,"y":229.23,"z":-950.511},"rot":{"x":21.194,"y":342.764,"z":319.366}},{"monsterId":0,"gadgetId":70540020,"configId":2336,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1965.059,"y":222.187,"z":-951.519},"rot":{"x":0.0,"y":306.845,"z":33.483}},{"monsterId":0,"gadgetId":70540020,"configId":2335,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1970.037,"y":224.002,"z":-942.376},"rot":{"x":25.859,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2338,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1968.187,"y":219.315,"z":-935.028},"rot":{"x":321.829,"y":258.154,"z":7.386}},{"monsterId":0,"gadgetId":70540020,"configId":2323,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1939.103,"y":241.765,"z":-915.959},"rot":{"x":340.613,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2322,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1934.873,"y":234.975,"z":-908.158},"rot":{"x":0.0,"y":0.0,"z":41.553}},{"monsterId":0,"gadgetId":70540020,"configId":2314,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1912.351,"y":227.411,"z":-867.961},"rot":{"x":0.0,"y":0.0,"z":321.229}},{"monsterId":0,"gadgetId":70540020,"configId":2326,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1935.38,"y":224.676,"z":-869.475},"rot":{"x":0.0,"y":0.0,"z":36.401}},{"monsterId":0,"gadgetId":70540020,"configId":2319,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1941.622,"y":226.382,"z":-863.892},"rot":{"x":17.604,"y":319.54,"z":337.358}},{"monsterId":0,"gadgetId":70510006,"configId":1539,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1796.945,"y":246.457,"z":-523.638},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2329,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1721.822,"y":208.299,"z":-506.765},"rot":{"x":333.422,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2328,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1726.488,"y":212.31,"z":-499.879},"rot":{"x":0.0,"y":0.0,"z":322.614}},{"monsterId":0,"gadgetId":70540013,"configId":803037,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2154.658,"y":238.022,"z":-427.551},"rot":{"x":350.221,"y":332.1,"z":1.098}},{"monsterId":0,"gadgetId":70540013,"configId":803036,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2155.052,"y":238.189,"z":-426.624},"rot":{"x":350.221,"y":359.906,"z":1.098}},{"monsterId":0,"gadgetId":70540013,"configId":803038,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":2181.067,"y":237.368,"z":-437.673},"rot":{"x":6.862,"y":0.948,"z":15.71}},{"monsterId":0,"gadgetId":70540020,"configId":2327,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1950.971,"y":221.611,"z":-863.58},"rot":{"x":0.0,"y":306.822,"z":312.922}},{"monsterId":0,"gadgetId":70510006,"configId":803031,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2057.756,"y":209.154,"z":-716.185},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":2103,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1695.396,"y":231.748,"z":-533.818},"rot":{"x":0.0,"y":333.16,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":2101,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":1696.96,"y":231.422,"z":-534.229},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2331,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1697.613,"y":213.258,"z":-462.326},"rot":{"x":0.0,"y":48.473,"z":33.866}},{"monsterId":0,"gadgetId":70540020,"configId":2330,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1699.716,"y":208.479,"z":-462.556},"rot":{"x":324.277,"y":304.805,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":2334,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":1684.777,"y":208.63,"z":-377.568},"rot":{"x":29.31,"y":305.896,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":2420,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1730.46,"y":204.422,"z":-79.888},"rot":{"x":0.0,"y":75.544,"z":0.0}}]},{"sceneId":3,"groupId":155008226,"blockId":0,"pos":{"x":-272.36185,"y":0.0,"z":366.90952},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":226002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-230.369,"y":206.611,"z":444.272},"rot":{"x":335.218,"y":260.877,"z":357.617}},{"monsterId":0,"gadgetId":70590036,"configId":226001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-229.707,"y":205.434,"z":443.124},"rot":{"x":30.586,"y":19.904,"z":333.901}},{"monsterId":0,"gadgetId":70590036,"configId":226007,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-288.577,"y":219.329,"z":335.394},"rot":{"x":14.289,"y":156.699,"z":342.517}},{"monsterId":0,"gadgetId":70590036,"configId":226005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-287.721,"y":219.187,"z":327.246},"rot":{"x":348.759,"y":118.964,"z":355.806}},{"monsterId":0,"gadgetId":70590036,"configId":226008,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-296.455,"y":219.394,"z":325.39},"rot":{"x":12.77,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":226003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-301.342,"y":219.565,"z":326.031},"rot":{"x":341.058,"y":220.578,"z":23.076}}]},{"sceneId":3,"groupId":133002802,"blockId":0,"pos":{"x":1873.6951,"y":0.0,"z":-120.545},"spawns":[{"monsterId":0,"gadgetId":70510004,"configId":1563,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1877.678,"y":204.624,"z":-119.747},"rot":{"x":0.0,"y":298.55,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1562,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1870.459,"y":204.375,"z":-117.702},"rot":{"x":0.0,"y":153.857,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1560,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1870.563,"y":203.983,"z":-120.22},"rot":{"x":0.0,"y":296.24,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1561,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":1876.08,"y":203.7,"z":-124.511},"rot":{"x":0.0,"y":260.358,"z":0.0}}]},{"sceneId":3,"groupId":133102129,"blockId":0,"pos":{"x":1833.2607,"y":0.0,"z":65.20599},"spawns":[{"monsterId":0,"gadgetId":70540014,"configId":129002,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1807.602,"y":200.0,"z":4.319},"rot":{"x":0.0,"y":239.114,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":129003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1802.669,"y":200.299,"z":28.845},"rot":{"x":341.7,"y":0.0,"z":16.5}},{"monsterId":0,"gadgetId":70520005,"configId":129006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1798.995,"y":223.745,"z":110.324},"rot":{"x":0.0,"y":288.335,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":129004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1855.907,"y":254.535,"z":1.112},"rot":{"x":0.0,"y":320.433,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":129005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1901.131,"y":252.279,"z":181.43},"rot":{"x":4.569,"y":164.325,"z":5.368}}]},{"sceneId":3,"groupId":133226001,"blockId":0,"pos":{"x":-6254.053,"y":0.0,"z":-3181.4888},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":1001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6144.995,"y":201.595,"z":-3233.488},"rot":{"x":0.0,"y":293.476,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":1033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6166.245,"y":205.955,"z":-3270.874},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":1009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6161.527,"y":207.121,"z":-3244.994},"rot":{"x":0.0,"y":61.855,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":1029,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-6179.288,"y":203.09,"z":-3263.826},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":1028,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-6179.567,"y":203.068,"z":-3263.69},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":1032,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6202.0,"y":201.86,"z":-3232.677},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":1031,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-6202.0,"y":201.86,"z":-3232.869},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":1006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6246.121,"y":200.782,"z":-3199.205},"rot":{"x":0.0,"y":319.231,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":1002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6250.929,"y":200.024,"z":-3158.944},"rot":{"x":0.0,"y":266.646,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":1016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6262.833,"y":202.377,"z":-3188.288},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":1015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6263.167,"y":201.965,"z":-3188.581},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":1014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6263.084,"y":201.679,"z":-3187.784},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":1008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6259.984,"y":201.127,"z":-3176.569},"rot":{"x":0.0,"y":42.588,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":1027,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6276.873,"y":198.72,"z":-3214.923},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":1024,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6273.885,"y":197.939,"z":-3214.402},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":1025,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-6275.099,"y":198.522,"z":-3211.23},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":1023,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-6282.211,"y":200.895,"z":-3181.636},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":1022,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-6281.901,"y":201.256,"z":-3179.979},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":1021,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":-6282.215,"y":201.261,"z":-3180.076},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":1010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6269.28,"y":203.537,"z":-3136.927},"rot":{"x":0.0,"y":132.601,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":1011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6297.774,"y":201.532,"z":-3181.566},"rot":{"x":0.0,"y":182.683,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":1005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6303.065,"y":200.667,"z":-3161.485},"rot":{"x":0.0,"y":235.646,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":1020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6300.892,"y":201.518,"z":-3125.979},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":1019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6301.225,"y":201.106,"z":-3126.272},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":1018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-6301.143,"y":200.82,"z":-3125.475},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":1034,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-6325.769,"y":198.551,"z":-3147.692},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":1026,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-6326.914,"y":198.459,"z":-3149.893},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":1004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-6246.7,"y":201.733,"z":-3107.732},"rot":{"x":0.0,"y":63.332,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":1007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6272.264,"y":203.827,"z":-3082.741},"rot":{"x":0.0,"y":239.239,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":1012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6222.653,"y":200.874,"z":-3074.859},"rot":{"x":0.0,"y":233.014,"z":0.0}}]},{"sceneId":3,"groupId":155008223,"blockId":0,"pos":{"x":-233.9976,"y":0.0,"z":418.3864},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":223009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-233.021,"y":222.689,"z":412.829},"rot":{"x":0.0,"y":314.929,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":223007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-232.647,"y":222.994,"z":413.429},"rot":{"x":335.659,"y":30.455,"z":17.441}},{"monsterId":0,"gadgetId":70520001,"configId":223008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-235.035,"y":221.726,"z":421.298},"rot":{"x":344.213,"y":23.711,"z":23.533}},{"monsterId":0,"gadgetId":70520001,"configId":223002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-234.99,"y":221.699,"z":422.293},"rot":{"x":0.732,"y":277.118,"z":2.07}},{"monsterId":0,"gadgetId":70520001,"configId":223001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-234.295,"y":221.894,"z":422.083},"rot":{"x":352.684,"y":356.593,"z":31.769}}]},{"sceneId":3,"groupId":155005147,"blockId":0,"pos":{"x":399.74152,"y":0.0,"z":884.0179},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":147009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":308.244,"y":157.253,"z":931.29},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":308.728,"y":155.923,"z":907.812},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":291.0,"y":149.17,"z":880.72},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":288.83,"y":145.615,"z":896.44},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":331.439,"y":156.013,"z":898.413},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":332.751,"y":144.692,"z":882.302},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":293.006,"y":149.614,"z":877.907},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":284.107,"y":154.736,"z":863.052},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":310.526,"y":146.607,"z":870.971},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":356.076,"y":168.859,"z":956.506},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147019,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":309.816,"y":151.583,"z":851.484},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147018,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":313.372,"y":151.424,"z":849.976},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":374.214,"y":144.899,"z":860.663},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":374.505,"y":174.289,"z":961.235},"rot":{"x":350.505,"y":359.603,"z":4.773}},{"monsterId":0,"gadgetId":70520004,"configId":147025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":378.797,"y":175.343,"z":964.444},"rot":{"x":349.498,"y":359.353,"z":7.034}},{"monsterId":0,"gadgetId":70520009,"configId":147006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":260.769,"y":160.989,"z":824.941},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":282.342,"y":159.14,"z":832.167},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":387.932,"y":143.588,"z":864.159},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147024,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":391.105,"y":165.483,"z":919.664},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":384.587,"y":164.117,"z":918.949},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":388.353,"y":143.688,"z":903.648},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147023,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":390.817,"y":143.82,"z":904.76},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":394.602,"y":173.479,"z":952.235},"rot":{"x":349.036,"y":359.789,"z":2.197}},{"monsterId":0,"gadgetId":70520009,"configId":147014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":381.196,"y":177.086,"z":972.43},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":403.353,"y":140.917,"z":863.248},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":147041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":453.442,"y":191.015,"z":802.339},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":451.34,"y":135.574,"z":908.896},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":147042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":460.613,"y":174.611,"z":848.85},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":467.799,"y":168.038,"z":865.289},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":469.435,"y":169.262,"z":895.413},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147035,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":471.399,"y":144.574,"z":910.775},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":461.269,"y":140.691,"z":934.874},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":493.1,"y":201.085,"z":827.568},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147037,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":485.089,"y":167.528,"z":863.209},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":488.047,"y":153.64,"z":892.402},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147044,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":484.981,"y":146.906,"z":913.468},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":147045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":498.519,"y":153.742,"z":935.52},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":511.757,"y":156.306,"z":892.23},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":508.819,"y":155.496,"z":952.191},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147039,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":509.99,"y":202.162,"z":813.835},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":483.744,"y":192.402,"z":790.597},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":147038,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":501.967,"y":189.3,"z":781.576},"rot":{"x":0.0,"y":0.0,"z":348.517}},{"monsterId":0,"gadgetId":70520004,"configId":147040,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":467.109,"y":189.005,"z":774.319},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001676,"blockId":0,"pos":{"x":397.953,"y":0.0,"z":1118.6226},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":676001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":342.94,"y":83.773,"z":1089.973},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":676003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":374.957,"y":83.17,"z":1112.067},"rot":{"x":0.0,"y":39.399,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":676002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":378.287,"y":83.386,"z":1109.147},"rot":{"x":359.866,"y":280.39,"z":8.935}},{"monsterId":0,"gadgetId":70510007,"configId":676005,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":495.628,"y":92.079,"z":1163.303},"rot":{"x":346.488,"y":327.258,"z":-0.001}}]},{"sceneId":3,"groupId":155008212,"blockId":0,"pos":{"x":-554.27875,"y":0.0,"z":544.93756},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":212003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-541.653,"y":216.275,"z":534.116},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":212004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-568.852,"y":216.883,"z":555.82},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":212007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-546.491,"y":216.357,"z":543.148},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":212002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-520.743,"y":215.525,"z":547.367},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":212006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-528.361,"y":215.591,"z":571.215},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":212005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-589.391,"y":223.049,"z":523.543},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":212001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-584.46,"y":218.554,"z":539.354},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004806,"blockId":0,"pos":{"x":2218.9473,"y":0.0,"z":-288.20798},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":1219,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2065.139,"y":262.129,"z":-334.374},"rot":{"x":0.0,"y":315.562,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":1274,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2451.953,"y":300.437,"z":-343.383},"rot":{"x":349.811,"y":304.797,"z":17.481}},{"monsterId":0,"gadgetId":70520002,"configId":1212,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2139.75,"y":279.311,"z":-186.867},"rot":{"x":0.0,"y":21.31,"z":0.0}}]},{"sceneId":3,"groupId":155008209,"blockId":0,"pos":{"x":-390.5667,"y":0.0,"z":396.5537},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":209005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-317.33,"y":260.516,"z":303.116},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-282.125,"y":254.515,"z":316.986},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209014,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-266.516,"y":226.851,"z":313.243},"rot":{"x":0.0,"y":290.101,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-266.892,"y":226.753,"z":311.865},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-263.296,"y":227.222,"z":322.458},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-277.649,"y":251.791,"z":346.906},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-261.573,"y":242.852,"z":378.431},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-290.766,"y":257.95,"z":345.187},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-289.48,"y":253.856,"z":390.532},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-309.155,"y":262.923,"z":338.609},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-338.354,"y":266.634,"z":352.467},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":209028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-338.147,"y":265.737,"z":377.354},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":209030,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-336.361,"y":215.241,"z":407.474},"rot":{"x":0.0,"y":302.466,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-333.68,"y":254.142,"z":424.965},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":209029,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-343.197,"y":214.803,"z":406.531},"rot":{"x":0.0,"y":137.166,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-368.385,"y":214.15,"z":383.809},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-472.153,"y":217.513,"z":353.52},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209018,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-474.216,"y":214.472,"z":387.383},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-474.749,"y":211.012,"z":458.78},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-483.923,"y":217.812,"z":354.076},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209024,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-494.8,"y":217.505,"z":376.12},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209019,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-481.349,"y":213.063,"z":451.136},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-497.578,"y":216.479,"z":457.682},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209023,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-502.221,"y":242.035,"z":432.13},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":209027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-480.098,"y":217.483,"z":467.921},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":209026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-482.147,"y":217.456,"z":469.689},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-507.353,"y":249.552,"z":481.969},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-502.623,"y":217.999,"z":486.056},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":209008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-474.764,"y":224.199,"z":491.403},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":209021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-506.122,"y":216.695,"z":508.813},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004801,"blockId":0,"pos":{"x":2235.445,"y":0.0,"z":-753.03845},"spawns":[{"monsterId":0,"gadgetId":70510009,"configId":1517,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2184.244,"y":209.534,"z":-943.294},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":801012,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2186.075,"y":220.581,"z":-869.717},"rot":{"x":23.939,"y":148.203,"z":319.142}},{"monsterId":0,"gadgetId":70510009,"configId":1515,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2195.351,"y":210.006,"z":-943.077},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":1513,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2196.979,"y":209.899,"z":-951.138},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":801007,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2192.22,"y":214.49,"z":-905.793},"rot":{"x":293.299,"y":92.296,"z":253.352}},{"monsterId":0,"gadgetId":70540020,"configId":801006,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2198.723,"y":213.408,"z":-908.392},"rot":{"x":3.401,"y":256.422,"z":226.378}},{"monsterId":0,"gadgetId":70540020,"configId":801005,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2203.811,"y":223.18,"z":-906.724},"rot":{"x":293.4,"y":233.835,"z":261.054}},{"monsterId":0,"gadgetId":70540020,"configId":801011,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2188.403,"y":218.327,"z":-875.135},"rot":{"x":58.149,"y":219.53,"z":36.342}},{"monsterId":0,"gadgetId":70540020,"configId":801009,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2200.295,"y":214.819,"z":-888.086},"rot":{"x":38.901,"y":184.248,"z":312.928}},{"monsterId":0,"gadgetId":70540020,"configId":801008,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2200.557,"y":217.434,"z":-889.251},"rot":{"x":66.942,"y":312.183,"z":73.326}},{"monsterId":0,"gadgetId":70540020,"configId":801010,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2190.075,"y":216.07,"z":-874.527},"rot":{"x":58.149,"y":219.53,"z":36.342}},{"monsterId":0,"gadgetId":70540020,"configId":801013,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2215.84,"y":243.479,"z":-849.104},"rot":{"x":66.773,"y":92.825,"z":318.15}},{"monsterId":0,"gadgetId":70510009,"configId":1511,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2242.117,"y":210.152,"z":-973.677},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":1284,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2230.141,"y":210.313,"z":-976.041},"rot":{"x":0.0,"y":354.31,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":1509,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2236.749,"y":210.075,"z":-981.074},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":1286,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2251.888,"y":209.205,"z":-976.36},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":801025,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2282.362,"y":228.013,"z":-940.158},"rot":{"x":307.412,"y":177.463,"z":76.409}},{"monsterId":0,"gadgetId":70540020,"configId":801024,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2280.568,"y":227.989,"z":-934.44},"rot":{"x":307.412,"y":177.463,"z":76.409}},{"monsterId":0,"gadgetId":70540020,"configId":801023,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2296.581,"y":223.706,"z":-934.808},"rot":{"x":307.412,"y":177.463,"z":76.409}},{"monsterId":0,"gadgetId":70540020,"configId":801022,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2303.431,"y":222.53,"z":-930.164},"rot":{"x":58.543,"y":117.081,"z":261.325}},{"monsterId":0,"gadgetId":70540020,"configId":801021,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2315.823,"y":222.536,"z":-931.595},"rot":{"x":64.739,"y":123.828,"z":268.979}},{"monsterId":0,"gadgetId":70510004,"configId":440,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2107.294,"y":219.637,"z":-471.263},"rot":{"x":0.0,"y":200.085,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":462,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2213.636,"y":244.764,"z":-411.374},"rot":{"x":0.0,"y":35.35,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":408,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2236.491,"y":234.873,"z":-452.294},"rot":{"x":8.157,"y":204.528,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":468,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2263.409,"y":260.586,"z":-360.098},"rot":{"x":341.677,"y":316.776,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":467,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2263.458,"y":261.166,"z":-358.077},"rot":{"x":14.94,"y":70.844,"z":340.06}},{"monsterId":0,"gadgetId":70540020,"configId":801014,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2222.811,"y":247.345,"z":-819.564},"rot":{"x":52.044,"y":105.871,"z":258.401}},{"monsterId":0,"gadgetId":70540020,"configId":801004,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2293.581,"y":237.141,"z":-829.047},"rot":{"x":47.257,"y":331.658,"z":302.548}},{"monsterId":0,"gadgetId":70540020,"configId":801001,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2306.615,"y":237.898,"z":-827.211},"rot":{"x":47.257,"y":331.658,"z":302.548}},{"monsterId":0,"gadgetId":70540020,"configId":801002,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2338.195,"y":240.925,"z":-869.116},"rot":{"x":358.272,"y":84.611,"z":43.215}},{"monsterId":0,"gadgetId":70540020,"configId":801003,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2343.51,"y":241.495,"z":-831.124},"rot":{"x":66.652,"y":276.035,"z":59.088}},{"monsterId":0,"gadgetId":70510004,"configId":415,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2327.38,"y":285.833,"z":-246.462},"rot":{"x":0.0,"y":332.466,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":414,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2323.625,"y":285.83,"z":-248.294},"rot":{"x":0.0,"y":147.62,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":413,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2327.775,"y":285.22,"z":-248.701},"rot":{"x":0.0,"y":339.891,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":1277,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2327.374,"y":276.458,"z":-354.617},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540020,"configId":801017,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2205.813,"y":253.83,"z":-773.841},"rot":{"x":319.378,"y":220.12,"z":116.627}},{"monsterId":0,"gadgetId":70540020,"configId":801016,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2201.831,"y":241.247,"z":-774.127},"rot":{"x":28.318,"y":351.75,"z":106.422}},{"monsterId":0,"gadgetId":70540020,"configId":801015,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2199.783,"y":241.98,"z":-770.802},"rot":{"x":315.128,"y":11.635,"z":58.045}},{"monsterId":0,"gadgetId":70540020,"configId":801020,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2199.502,"y":234.228,"z":-769.793},"rot":{"x":74.251,"y":342.105,"z":52.392}},{"monsterId":0,"gadgetId":70540020,"configId":801018,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2207.445,"y":251.54,"z":-771.137},"rot":{"x":9.676,"y":182.358,"z":71.956}},{"monsterId":0,"gadgetId":70540020,"configId":801019,"level":0,"poseId":0,"gatherItemId":100025,"pos":{"x":2200.32,"y":235.379,"z":-768.0},"rot":{"x":54.046,"y":296.099,"z":2.568}},{"monsterId":0,"gadgetId":70520002,"configId":489,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2139.837,"y":213.578,"z":-595.283},"rot":{"x":341.453,"y":180.758,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":488,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2160.329,"y":213.453,"z":-599.163},"rot":{"x":22.797,"y":213.18,"z":313.266}},{"monsterId":0,"gadgetId":70520002,"configId":487,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2157.348,"y":213.589,"z":-601.748},"rot":{"x":348.681,"y":172.217,"z":0.0}}]},{"sceneId":3,"groupId":155008208,"blockId":0,"pos":{"x":-192.70747,"y":0.0,"z":362.4649},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":208037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-160.769,"y":226.216,"z":256.812},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":208001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-143.986,"y":228.68,"z":256.375},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":208015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-249.525,"y":224.15,"z":314.424},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":208003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-161.806,"y":230.971,"z":307.876},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":208014,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-123.617,"y":228.633,"z":261.644},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":208017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-200.406,"y":237.417,"z":354.317},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":208018,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-104.88,"y":242.045,"z":348.533},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":208016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-237.228,"y":234.997,"z":354.591},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":208012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-224.819,"y":238.162,"z":356.565},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":208011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-227.556,"y":240.545,"z":419.318},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":208030,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-226.82,"y":240.781,"z":426.387},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":208009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-235.419,"y":236.69,"z":492.405},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":208032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-209.153,"y":230.315,"z":328.477},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":208004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-124.971,"y":238.641,"z":328.132},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":208013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-252.491,"y":235.388,"z":354.085},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":208031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-255.239,"y":239.604,"z":386.303},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":208025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-190.291,"y":174.328,"z":447.253},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":208027,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-160.926,"y":193.304,"z":450.414},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":208026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-171.54,"y":184.372,"z":442.922},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155008211,"blockId":0,"pos":{"x":-556.63153,"y":0.0,"z":486.4834},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":211004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-513.645,"y":240.944,"z":419.726},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":211003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-519.493,"y":249.468,"z":477.148},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":211006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-573.358,"y":224.861,"z":496.863},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":211005,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-572.233,"y":225.546,"z":510.553},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":211002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-575.599,"y":225.226,"z":505.463},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":211007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-559.811,"y":217.699,"z":511.428},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":211001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-582.282,"y":192.588,"z":484.203},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004803,"blockId":0,"pos":{"x":2191.837,"y":0.0,"z":-398.3},"spawns":[{"monsterId":0,"gadgetId":70510004,"configId":1491,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2090.832,"y":274.954,"z":-154.226},"rot":{"x":0.0,"y":115.139,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1490,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2093.043,"y":275.689,"z":-160.967},"rot":{"x":0.0,"y":133.633,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1488,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2095.122,"y":275.724,"z":-160.346},"rot":{"x":0.0,"y":335.556,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1482,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2101.082,"y":215.197,"z":-495.623},"rot":{"x":0.0,"y":14.475,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1481,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2098.919,"y":215.909,"z":-495.231},"rot":{"x":0.0,"y":123.642,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1475,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2197.672,"y":208.893,"z":-490.843},"rot":{"x":0.0,"y":252.412,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1474,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2195.721,"y":209.383,"z":-490.424},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1476,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2209.234,"y":212.523,"z":-474.04},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1477,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2209.864,"y":212.568,"z":-474.042},"rot":{"x":0.0,"y":265.291,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1484,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2211.456,"y":237.378,"z":-432.335},"rot":{"x":0.0,"y":314.828,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1483,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2214.114,"y":237.393,"z":-432.347},"rot":{"x":0.0,"y":172.604,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1480,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2167.197,"y":209.019,"z":-550.745},"rot":{"x":0.0,"y":57.723,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1479,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2165.447,"y":208.805,"z":-546.961},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1478,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2168.15,"y":208.81,"z":-548.688},"rot":{"x":0.0,"y":123.642,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1486,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2312.653,"y":270.436,"z":-316.318},"rot":{"x":0.0,"y":224.785,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1485,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2309.215,"y":269.45,"z":-317.805},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1489,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2306.66,"y":270.319,"z":-314.705},"rot":{"x":0.0,"y":210.174,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1487,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2306.685,"y":270.557,"z":-313.754},"rot":{"x":0.0,"y":194.929,"z":0.0}}]},{"sceneId":3,"groupId":155008210,"blockId":0,"pos":{"x":-487.45135,"y":0.0,"z":545.0778},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":210003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-478.301,"y":223.259,"z":519.198},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":210005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-501.684,"y":215.577,"z":526.864},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":210004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-465.901,"y":219.78,"z":531.877},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":210001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-479.877,"y":217.142,"z":559.849},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":210002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-511.494,"y":203.495,"z":587.601},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":155005138,"blockId":0,"pos":{"x":672.9507,"y":0.0,"z":636.23566},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":138003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":674.922,"y":246.904,"z":634.803},"rot":{"x":5.842,"y":341.338,"z":6.401}},{"monsterId":0,"gadgetId":70590036,"configId":138002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":674.395,"y":247.362,"z":633.222},"rot":{"x":5.842,"y":287.415,"z":6.401}},{"monsterId":0,"gadgetId":70590036,"configId":138004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":669.535,"y":247.001,"z":640.682},"rot":{"x":3.628,"y":345.552,"z":359.93}}]},{"sceneId":3,"groupId":133004802,"blockId":0,"pos":{"x":2408.824,"y":0.0,"z":-433.4882},"spawns":[{"monsterId":0,"gadgetId":70510009,"configId":1427,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2322.507,"y":205.342,"z":-969.256},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":159,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2075.056,"y":260.681,"z":-342.581},"rot":{"x":8.292,"y":127.375,"z":324.365}},{"monsterId":0,"gadgetId":70520003,"configId":738,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2072.02,"y":210.033,"z":-41.962},"rot":{"x":0.0,"y":115.108,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":281,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2111.923,"y":240.611,"z":-443.499},"rot":{"x":337.561,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":802004,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2155.868,"y":210.273,"z":-480.611},"rot":{"x":0.0,"y":51.991,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":802003,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2155.851,"y":210.308,"z":-473.885},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":802002,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2154.721,"y":210.505,"z":-479.829},"rot":{"x":0.0,"y":318.648,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":802001,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2154.895,"y":210.57,"z":-481.346},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":802006,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2171.684,"y":220.762,"z":-466.906},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":802005,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2173.371,"y":220.726,"z":-467.314},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":571,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2179.872,"y":241.718,"z":-423.465},"rot":{"x":353.919,"y":76.056,"z":349.866}},{"monsterId":0,"gadgetId":70520002,"configId":570,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2179.058,"y":241.906,"z":-419.517},"rot":{"x":0.0,"y":161.844,"z":307.052}},{"monsterId":0,"gadgetId":70510005,"configId":569,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2174.777,"y":239.244,"z":-415.304},"rot":{"x":353.746,"y":352.905,"z":18.24}},{"monsterId":0,"gadgetId":70520002,"configId":572,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2186.441,"y":245.684,"z":-409.581},"rot":{"x":0.0,"y":164.626,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":286,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2202.624,"y":202.4,"z":-525.647},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":399,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2126.328,"y":212.311,"z":-551.478},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":728,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2272.547,"y":241.197,"z":-427.438},"rot":{"x":0.0,"y":150.095,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":576,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2303.841,"y":247.104,"z":-432.008},"rot":{"x":0.0,"y":237.486,"z":342.531}},{"monsterId":0,"gadgetId":70510004,"configId":801,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2458.866,"y":299.575,"z":-357.705},"rot":{"x":0.0,"y":151.202,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":1127,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2522.547,"y":202.197,"z":-465.203},"rot":{"x":347.734,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1130,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2521.132,"y":214.051,"z":-416.974},"rot":{"x":359.296,"y":30.802,"z":331.494}},{"monsterId":0,"gadgetId":70520002,"configId":1129,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2525.756,"y":211.503,"z":-417.708},"rot":{"x":0.0,"y":280.008,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1128,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2518.857,"y":211.791,"z":-416.907},"rot":{"x":0.0,"y":105.71,"z":323.079}},{"monsterId":0,"gadgetId":70590013,"configId":137,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2585.545,"y":202.169,"z":-529.097},"rot":{"x":0.0,"y":249.511,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1499,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2625.908,"y":262.124,"z":-396.619},"rot":{"x":0.0,"y":301.295,"z":290.389}},{"monsterId":0,"gadgetId":70520002,"configId":1497,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2620.843,"y":261.971,"z":-400.123},"rot":{"x":0.0,"y":301.295,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":136,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2595.681,"y":202.281,"z":-541.138},"rot":{"x":0.0,"y":96.511,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":1159,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2643.439,"y":206.45,"z":-523.929},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1498,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2645.884,"y":262.24,"z":-395.274},"rot":{"x":0.0,"y":32.786,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1503,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2634.886,"y":266.577,"z":-399.018},"rot":{"x":0.0,"y":206.196,"z":346.462}},{"monsterId":0,"gadgetId":70520002,"configId":1500,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2628.75,"y":263.75,"z":-399.149},"rot":{"x":0.0,"y":201.009,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1501,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2628.305,"y":265.966,"z":-401.884},"rot":{"x":0.0,"y":301.295,"z":334.607}},{"monsterId":0,"gadgetId":70520002,"configId":1502,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2637.949,"y":266.622,"z":-396.83},"rot":{"x":0.0,"y":301.295,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1398,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2656.415,"y":246.967,"z":-441.192},"rot":{"x":0.0,"y":134.57,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1400,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2659.716,"y":246.392,"z":-442.609},"rot":{"x":0.0,"y":154.926,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1360,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2658.328,"y":247.581,"z":-434.525},"rot":{"x":0.0,"y":77.651,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":1399,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2656.529,"y":246.695,"z":-442.877},"rot":{"x":0.0,"y":101.008,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1359,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2657.115,"y":247.925,"z":-435.582},"rot":{"x":298.802,"y":190.687,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1148,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2713.694,"y":249.818,"z":-294.692},"rot":{"x":0.0,"y":48.689,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1147,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2717.537,"y":251.367,"z":-303.835},"rot":{"x":0.0,"y":268.488,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":1146,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2716.516,"y":251.061,"z":-299.078},"rot":{"x":357.118,"y":357.978,"z":35.067}},{"monsterId":0,"gadgetId":70520002,"configId":1362,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2749.486,"y":251.662,"z":-361.331},"rot":{"x":0.0,"y":258.788,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":1138,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2753.944,"y":252.389,"z":-366.253},"rot":{"x":333.094,"y":0.0,"z":24.319}},{"monsterId":0,"gadgetId":70520002,"configId":1361,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2759.632,"y":254.049,"z":-361.934},"rot":{"x":0.0,"y":301.295,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":742,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2383.145,"y":284.57,"z":-334.834},"rot":{"x":329.835,"y":102.236,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":566,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2298.563,"y":271.966,"z":-234.233},"rot":{"x":0.0,"y":161.092,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":565,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2298.458,"y":272.121,"z":-232.758},"rot":{"x":331.065,"y":96.406,"z":358.178}},{"monsterId":0,"gadgetId":70510005,"configId":376,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2299.905,"y":271.58,"z":-230.118},"rot":{"x":7.857,"y":1.045,"z":7.6}},{"monsterId":0,"gadgetId":70510005,"configId":359,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2256.181,"y":266.1,"z":-319.121},"rot":{"x":351.936,"y":287.444,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":357,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2231.26,"y":268.048,"z":-287.019},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":734,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2607.673,"y":270.628,"z":-335.37},"rot":{"x":0.0,"y":318.154,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":733,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2671.672,"y":222.312,"z":-484.474},"rot":{"x":31.052,"y":167.316,"z":311.243}},{"monsterId":0,"gadgetId":70510009,"configId":1425,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2369.57,"y":206.209,"z":-902.874},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":730,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2072.942,"y":205.256,"z":-709.741},"rot":{"x":0.0,"y":334.24,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":1496,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2145.123,"y":213.701,"z":-588.303},"rot":{"x":0.419,"y":124.158,"z":31.005}},{"monsterId":0,"gadgetId":70520002,"configId":1493,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2152.184,"y":213.947,"z":-582.807},"rot":{"x":357.707,"y":164.664,"z":0.136}},{"monsterId":0,"gadgetId":70520003,"configId":726,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2148.455,"y":213.35,"z":-581.172},"rot":{"x":2.65,"y":168.453,"z":8.84}},{"monsterId":0,"gadgetId":70520002,"configId":1494,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2148.947,"y":215.566,"z":-586.509},"rot":{"x":15.641,"y":205.462,"z":325.527}},{"monsterId":0,"gadgetId":70510005,"configId":597,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2369.868,"y":285.941,"z":-273.377},"rot":{"x":18.97,"y":284.932,"z":7.625}}]},{"sceneId":3,"groupId":133106207,"blockId":0,"pos":{"x":-753.383,"y":0.0,"z":899.67633},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":207008,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-752.819,"y":165.686,"z":897.336},"rot":{"x":0.0,"y":235.338,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":207006,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-755.791,"y":165.479,"z":903.484},"rot":{"x":8.314,"y":31.509,"z":351.631}},{"monsterId":0,"gadgetId":70510007,"configId":207010,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-751.539,"y":165.464,"z":898.209},"rot":{"x":3.197,"y":307.766,"z":350.136}}]},{"sceneId":3,"groupId":133106206,"blockId":0,"pos":{"x":-579.82367,"y":0.0,"z":1074.4954},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":206006,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-579.17,"y":166.0,"z":1075.562},"rot":{"x":0.0,"y":267.864,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":206004,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-582.808,"y":166.0,"z":1074.037},"rot":{"x":0.0,"y":234.496,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":206002,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-577.493,"y":166.125,"z":1073.887},"rot":{"x":0.0,"y":351.94,"z":0.0}}]},{"sceneId":3,"groupId":155008207,"blockId":0,"pos":{"x":-278.54077,"y":0.0,"z":136.96324},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":207003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-274.72,"y":201.703,"z":107.638},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":207004,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-264.575,"y":217.406,"z":172.467},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":207001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-280.232,"y":204.358,"z":115.427},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":207002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-294.636,"y":212.613,"z":152.321},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133106205,"blockId":0,"pos":{"x":-959.9707,"y":0.0,"z":902.7557},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":205010,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-962.167,"y":198.703,"z":905.431},"rot":{"x":358.826,"y":290.707,"z":8.114}},{"monsterId":0,"gadgetId":70510006,"configId":205006,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-955.308,"y":198.254,"z":901.296},"rot":{"x":351.882,"y":20.585,"z":358.855}},{"monsterId":0,"gadgetId":70510006,"configId":205008,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-962.437,"y":198.628,"z":901.54},"rot":{"x":358.602,"y":92.777,"z":351.921}}]},{"sceneId":3,"groupId":133003807,"blockId":0,"pos":{"x":2089.0806,"y":0.0,"z":-1729.155},"spawns":[{"monsterId":0,"gadgetId":70510009,"configId":807004,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2083.578,"y":228.92,"z":-1728.663},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":807008,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2094.583,"y":229.692,"z":-1729.647},"rot":{"x":0.0,"y":240.873,"z":0.0}}]},{"sceneId":3,"groupId":155008206,"blockId":0,"pos":{"x":-149.35031,"y":0.0,"z":142.67206},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":206002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-17.802,"y":171.126,"z":21.373},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-44.511,"y":175.249,"z":15.387},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-78.51,"y":179.599,"z":9.913},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":206017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-67.631,"y":167.781,"z":59.253},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-81.528,"y":169.746,"z":49.996},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":206018,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-104.623,"y":168.256,"z":104.777},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-152.237,"y":239.769,"z":149.933},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-115.702,"y":238.263,"z":141.853},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-93.069,"y":240.682,"z":144.231},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-100.224,"y":237.122,"z":175.269},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-84.337,"y":213.273,"z":171.681},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-196.76,"y":177.918,"z":121.33},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":206019,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-203.82,"y":182.43,"z":123.87},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-206.35,"y":245.671,"z":172.317},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":206021,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-218.205,"y":217.872,"z":187.674},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-183.905,"y":245.851,"z":185.687},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-149.739,"y":243.447,"z":183.204},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-235.441,"y":190.975,"z":117.4},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-220.876,"y":234.484,"z":132.769},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-226.712,"y":244.295,"z":165.84},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":206022,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-192.748,"y":219.762,"z":203.942},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":206023,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-152.915,"y":227.313,"z":212.733},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":206026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-155.655,"y":237.662,"z":205.981},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":206024,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-111.027,"y":232.541,"z":201.306},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-85.982,"y":231.861,"z":204.073},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":206020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-242.194,"y":193.286,"z":112.149},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-249.962,"y":217.233,"z":191.963},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":206015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-209.344,"y":195.783,"z":228.914},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133106204,"blockId":0,"pos":{"x":-765.86163,"y":0.0,"z":1339.539},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":204010,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-768.023,"y":212.839,"z":1342.231},"rot":{"x":354.366,"y":290.541,"z":11.399}},{"monsterId":0,"gadgetId":70510006,"configId":204006,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-761.117,"y":212.039,"z":1338.152},"rot":{"x":348.628,"y":21.385,"z":354.311}},{"monsterId":0,"gadgetId":70510006,"configId":204008,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-768.445,"y":211.902,"z":1338.234},"rot":{"x":1.843,"y":92.79,"z":347.434}}]},{"sceneId":3,"groupId":133007902,"blockId":0,"pos":{"x":3010.177,"y":0.0,"z":137.00433},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":902012,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":3007.901,"y":214.34,"z":135.154},"rot":{"x":0.0,"y":233.142,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":902011,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":3010.876,"y":213.171,"z":139.592},"rot":{"x":0.0,"y":4.054,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":902010,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":3011.755,"y":214.055,"z":136.267},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133003806,"blockId":0,"pos":{"x":2776.7788,"y":0.0,"z":-1420.9506},"spawns":[{"monsterId":0,"gadgetId":70540022,"configId":806063,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2847.519,"y":257.751,"z":-1846.416},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806064,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2847.833,"y":257.738,"z":-1846.261},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806065,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2847.745,"y":257.736,"z":-1846.622},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806060,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2933.785,"y":235.15,"z":-1763.497},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806059,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2933.873,"y":235.152,"z":-1763.136},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806058,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2933.559,"y":235.165,"z":-1763.291},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806057,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2933.773,"y":235.423,"z":-1763.35},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540022,"configId":806055,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2934.997,"y":225.748,"z":-1720.221},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806054,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2935.085,"y":225.749,"z":-1719.861},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806053,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2934.771,"y":225.762,"z":-1720.015},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806052,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2934.985,"y":226.02,"z":-1720.074},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":3956,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2808.974,"y":278.314,"z":-1552.756},"rot":{"x":0.0,"y":96.422,"z":30.907}},{"monsterId":0,"gadgetId":70520002,"configId":3900,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2906.676,"y":253.672,"z":-1624.797},"rot":{"x":0.0,"y":276.568,"z":0.0}},{"monsterId":0,"gadgetId":70540022,"configId":806050,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2923.998,"y":252.491,"z":-1621.698},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70520002,"configId":3901,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2908.304,"y":253.086,"z":-1628.977},"rot":{"x":0.0,"y":267.813,"z":0.0}},{"monsterId":0,"gadgetId":70540022,"configId":806048,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2923.772,"y":252.506,"z":-1621.492},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70520002,"configId":3954,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2912.853,"y":253.843,"z":-1625.843},"rot":{"x":0.0,"y":224.795,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":3953,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2913.506,"y":252.783,"z":-1629.171},"rot":{"x":352.927,"y":295.317,"z":4.516}},{"monsterId":0,"gadgetId":70540022,"configId":806049,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2924.086,"y":252.493,"z":-1621.337},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70520002,"configId":3955,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2910.163,"y":255.561,"z":-1625.945},"rot":{"x":12.211,"y":273.196,"z":357.21}},{"monsterId":0,"gadgetId":70540022,"configId":806095,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2841.35,"y":271.045,"z":-1454.957},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806094,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2841.438,"y":271.047,"z":-1454.597},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806093,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2841.125,"y":271.059,"z":-1454.751},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70520002,"configId":4437,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2790.377,"y":268.007,"z":-1416.634},"rot":{"x":0.0,"y":138.914,"z":19.019}},{"monsterId":0,"gadgetId":70520002,"configId":4440,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2780.249,"y":267.099,"z":-1422.186},"rot":{"x":340.001,"y":151.997,"z":19.7}},{"monsterId":0,"gadgetId":70520002,"configId":4439,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2784.174,"y":265.928,"z":-1416.554},"rot":{"x":335.678,"y":132.074,"z":16.237}},{"monsterId":0,"gadgetId":70540022,"configId":806040,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2972.845,"y":262.393,"z":-1400.021},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806039,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2972.933,"y":262.394,"z":-1399.661},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806038,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2972.619,"y":262.407,"z":-1399.816},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806037,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2972.833,"y":262.665,"z":-1399.875},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540022,"configId":806085,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2848.563,"y":260.036,"z":-1350.828},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806084,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2848.651,"y":260.038,"z":-1350.467},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806083,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2848.337,"y":260.051,"z":-1350.622},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806080,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2943.213,"y":272.882,"z":-1246.305},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806079,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2943.302,"y":272.884,"z":-1245.944},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806078,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2942.988,"y":272.897,"z":-1246.099},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806035,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2778.773,"y":280.157,"z":-1143.074},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806034,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2778.862,"y":280.159,"z":-1142.713},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806033,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2778.548,"y":280.172,"z":-1142.868},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806020,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2780.534,"y":245.04,"z":-1062.42},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806019,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2780.622,"y":245.042,"z":-1062.06},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806018,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2780.308,"y":245.055,"z":-1062.214},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806005,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2604.406,"y":226.746,"z":-1118.305},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806004,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2604.494,"y":226.747,"z":-1117.944},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806003,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2604.18,"y":226.76,"z":-1118.099},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540019,"configId":4429,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2596.808,"y":213.774,"z":-1306.303},"rot":{"x":14.632,"y":285.272,"z":3.946}},{"monsterId":0,"gadgetId":70540019,"configId":4428,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2595.265,"y":213.351,"z":-1306.981},"rot":{"x":0.0,"y":0.0,"z":15.144}},{"monsterId":0,"gadgetId":70540022,"configId":806075,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2685.54,"y":263.424,"z":-1368.978},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806074,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2685.628,"y":263.426,"z":-1368.617},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806073,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2685.314,"y":263.439,"z":-1368.772},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806072,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2685.529,"y":263.697,"z":-1368.831},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540022,"configId":806025,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2674.901,"y":245.723,"z":-1307.888},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806024,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2674.989,"y":245.725,"z":-1307.527},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806023,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2674.676,"y":245.738,"z":-1307.682},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806022,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2674.89,"y":245.996,"z":-1307.741},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540022,"configId":806070,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2673.527,"y":281.736,"z":-1443.788},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806069,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2673.615,"y":281.737,"z":-1443.427},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806068,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2673.301,"y":281.75,"z":-1443.582},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806045,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2669.271,"y":275.273,"z":-1487.991},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806044,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2669.359,"y":275.275,"z":-1487.631},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806043,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2669.045,"y":275.288,"z":-1487.785},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806042,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2669.259,"y":275.546,"z":-1487.844},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":2791,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2283.325,"y":247.34,"z":-1457.347},"rot":{"x":0.0,"y":79.371,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":2790,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2284.155,"y":247.126,"z":-1457.518},"rot":{"x":0.0,"y":245.542,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":2792,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2291.947,"y":247.171,"z":-1463.086},"rot":{"x":349.107,"y":245.542,"z":0.0}},{"monsterId":0,"gadgetId":70540022,"configId":806090,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2749.858,"y":264.843,"z":-1417.196},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806088,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2749.633,"y":264.857,"z":-1416.99},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806089,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2749.946,"y":264.844,"z":-1416.835},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806030,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2765.004,"y":258.091,"z":-1254.005},"rot":{"x":344.486,"y":149.827,"z":4.688}},{"monsterId":0,"gadgetId":70540022,"configId":806029,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2765.092,"y":258.093,"z":-1253.644},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806028,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2764.778,"y":258.106,"z":-1253.799},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806027,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2764.992,"y":258.364,"z":-1253.858},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":3418,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2692.887,"y":244.929,"z":-1213.492},"rot":{"x":0.0,"y":104.309,"z":0.0}},{"monsterId":0,"gadgetId":70540022,"configId":806013,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2685.368,"y":241.438,"z":-1176.424},"rot":{"x":348.727,"y":341.756,"z":340.76}},{"monsterId":0,"gadgetId":70540022,"configId":806014,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2685.682,"y":241.425,"z":-1176.269},"rot":{"x":348.515,"y":87.775,"z":340.02}},{"monsterId":0,"gadgetId":70540022,"configId":806015,"level":0,"poseId":0,"gatherItemId":100022,"pos":{"x":2685.594,"y":241.423,"z":-1176.63},"rot":{"x":344.486,"y":149.827,"z":4.688}}]},{"sceneId":3,"groupId":133106203,"blockId":0,"pos":{"x":-284.3335,"y":0.0,"z":769.80347},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":203008,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-287.783,"y":220.545,"z":768.617},"rot":{"x":0.384,"y":72.224,"z":15.472}},{"monsterId":0,"gadgetId":70510006,"configId":203006,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-280.884,"y":220.194,"z":770.99},"rot":{"x":14.833,"y":0.582,"z":4.467}}]},{"sceneId":3,"groupId":133003803,"blockId":0,"pos":{"x":2502.0745,"y":0.0,"z":-1489.6818},"spawns":[{"monsterId":0,"gadgetId":70540018,"configId":4488,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2602.823,"y":372.31,"z":-1744.833},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4487,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2611.064,"y":373.413,"z":-1745.358},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4486,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2613.042,"y":373.367,"z":-1743.975},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":4050,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2655.778,"y":246.472,"z":-1331.79},"rot":{"x":12.189,"y":0.0,"z":4.47}},{"monsterId":0,"gadgetId":70510005,"configId":3992,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2903.168,"y":228.638,"z":-1751.955},"rot":{"x":8.477,"y":3.637,"z":334.196}},{"monsterId":0,"gadgetId":70510006,"configId":3256,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2927.021,"y":234.504,"z":-1698.923},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":4001,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2906.718,"y":262.983,"z":-1593.72},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":4082,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2910.191,"y":253.855,"z":-1628.232},"rot":{"x":0.0,"y":163.776,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":3165,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2806.869,"y":270.134,"z":-1475.802},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":3098,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2161.16,"y":226.01,"z":-1351.315},"rot":{"x":356.72,"y":0.0,"z":19.6}},{"monsterId":0,"gadgetId":70510006,"configId":2962,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2208.996,"y":234.707,"z":-1299.108},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4374,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2289.879,"y":210.991,"z":-1170.775},"rot":{"x":0.0,"y":161.52,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4373,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2290.811,"y":210.674,"z":-1167.782},"rot":{"x":0.0,"y":249.698,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4372,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2289.998,"y":210.763,"z":-1166.607},"rot":{"x":0.0,"y":319.839,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4371,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2316.083,"y":210.73,"z":-1168.677},"rot":{"x":0.0,"y":295.219,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4370,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2315.301,"y":211.009,"z":-1166.209},"rot":{"x":0.0,"y":342.904,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":3214,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2345.428,"y":206.211,"z":-1153.402},"rot":{"x":3.134,"y":351.708,"z":17.497}},{"monsterId":0,"gadgetId":70590013,"configId":2457,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2345.369,"y":206.272,"z":-1154.146},"rot":{"x":335.112,"y":91.546,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":3215,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2336.479,"y":205.294,"z":-1150.136},"rot":{"x":0.0,"y":244.756,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4376,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2365.924,"y":207.654,"z":-1161.348},"rot":{"x":0.0,"y":125.431,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4375,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2367.637,"y":207.623,"z":-1161.2},"rot":{"x":0.0,"y":94.235,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4377,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2368.011,"y":207.663,"z":-1161.695},"rot":{"x":0.0,"y":155.265,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":3452,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2068.553,"y":224.387,"z":-1588.623},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":4175,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2776.839,"y":268.276,"z":-1189.702},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":3299,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2677.063,"y":231.88,"z":-1137.473},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":4046,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2679.681,"y":232.574,"z":-1099.355},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":4177,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2594.892,"y":227.565,"z":-1096.423},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4369,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2368.347,"y":208.624,"z":-1110.148},"rot":{"x":0.0,"y":290.601,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4366,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2375.138,"y":213.77,"z":-1092.862},"rot":{"x":0.0,"y":4.055,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4365,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2379.496,"y":212.985,"z":-1093.093},"rot":{"x":0.0,"y":173.665,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":2946,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2388.971,"y":260.559,"z":-1242.86},"rot":{"x":0.0,"y":128.842,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":4195,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2486.719,"y":211.695,"z":-1268.51},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":4193,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2495.473,"y":212.893,"z":-1282.328},"rot":{"x":0.0,"y":12.823,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":3243,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2538.585,"y":211.155,"z":-1314.635},"rot":{"x":0.546,"y":256.414,"z":3.072}},{"monsterId":0,"gadgetId":70590013,"configId":1955,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2537.788,"y":211.108,"z":-1315.901},"rot":{"x":349.6,"y":359.742,"z":1.814}},{"monsterId":0,"gadgetId":70590013,"configId":3419,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2677.818,"y":240.89,"z":-1221.026},"rot":{"x":8.896,"y":299.479,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":3973,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2669.733,"y":286.047,"z":-1421.495},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":3017,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2676.517,"y":263.656,"z":-1418.602},"rot":{"x":0.0,"y":274.981,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2540,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2526.055,"y":249.935,"z":-1529.9},"rot":{"x":0.0,"y":296.13,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2536,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2524.638,"y":249.984,"z":-1529.3},"rot":{"x":0.0,"y":173.665,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2624,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2471.04,"y":293.5,"z":-1558.192},"rot":{"x":0.0,"y":272.639,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2622,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2470.823,"y":293.412,"z":-1557.044},"rot":{"x":0.0,"y":8.024,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2620,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2469.493,"y":293.3,"z":-1559.905},"rot":{"x":0.0,"y":7.477,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":4171,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2443.548,"y":290.009,"z":-1571.941},"rot":{"x":0.0,"y":303.754,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":4169,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2443.443,"y":289.505,"z":-1567.952},"rot":{"x":0.0,"y":82.469,"z":0.0}},{"monsterId":0,"gadgetId":70510009,"configId":4167,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2444.963,"y":290.307,"z":-1571.992},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4477,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2421.579,"y":321.41,"z":-1747.209},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4479,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2427.394,"y":318.885,"z":-1727.565},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4478,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2426.044,"y":318.898,"z":-1727.742},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4493,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2426.976,"y":302.077,"z":-1827.409},"rot":{"x":0.0,"y":301.125,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4492,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2418.118,"y":302.675,"z":-1831.544},"rot":{"x":0.0,"y":328.252,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4491,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2424.823,"y":303.074,"z":-1834.364},"rot":{"x":0.0,"y":312.506,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4489,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2425.974,"y":303.132,"z":-1834.85},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4490,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2431.216,"y":302.962,"z":-1833.463},"rot":{"x":0.0,"y":18.443,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4389,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2458.072,"y":324.647,"z":-1702.087},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4388,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2455.948,"y":324.296,"z":-1700.809},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4390,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2507.296,"y":337.679,"z":-1696.431},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":2950,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2455.646,"y":308.718,"z":-1668.818},"rot":{"x":10.72,"y":357.85,"z":6.04}},{"monsterId":0,"gadgetId":70540018,"configId":4397,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2554.977,"y":350.056,"z":-1696.01},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4396,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2553.156,"y":349.3,"z":-1695.361},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4395,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2555.336,"y":349.712,"z":-1693.195},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4476,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2581.535,"y":359.35,"z":-1698.16},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4475,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2586.556,"y":360.444,"z":-1694.809},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4473,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2582.444,"y":358.777,"z":-1693.019},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4474,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2587.761,"y":360.933,"z":-1695.544},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4394,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2601.775,"y":369.723,"z":-1722.523},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4393,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2601.338,"y":368.745,"z":-1717.245},"rot":{"x":0.0,"y":286.748,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4391,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2603.104,"y":369.059,"z":-1716.012},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4392,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2605.95,"y":370.189,"z":-1717.89},"rot":{"x":0.0,"y":22.609,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4387,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2475.697,"y":327.968,"z":-1720.47},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4386,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2481.808,"y":329.891,"z":-1718.48},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4480,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2487.044,"y":324.445,"z":-1637.747},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":2028,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2580.981,"y":225.347,"z":-1566.769},"rot":{"x":354.651,"y":121.811,"z":1.507}},{"monsterId":0,"gadgetId":70510009,"configId":4173,"level":0,"poseId":0,"gatherItemId":100057,"pos":{"x":2988.017,"y":238.78,"z":-1703.377},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":3975,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2749.351,"y":283.711,"z":-1548.492},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":3309,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2665.431,"y":236.154,"z":-1169.451},"rot":{"x":0.0,"y":137.225,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":4081,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2700.58,"y":261.321,"z":-1343.962},"rot":{"x":351.479,"y":171.396,"z":3.073}},{"monsterId":0,"gadgetId":70520002,"configId":3334,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2694.796,"y":263.222,"z":-1344.627},"rot":{"x":0.0,"y":62.98,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":3332,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2698.085,"y":262.955,"z":-1350.902},"rot":{"x":0.0,"y":301.51,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":3289,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2699.333,"y":262.242,"z":-1349.329},"rot":{"x":48.505,"y":90.608,"z":27.37}},{"monsterId":0,"gadgetId":70520003,"configId":3288,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2698.578,"y":263.208,"z":-1345.703},"rot":{"x":335.895,"y":226.0,"z":69.611}},{"monsterId":0,"gadgetId":70520002,"configId":2026,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2699.339,"y":262.459,"z":-1350.65},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":3333,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2697.569,"y":260.918,"z":-1341.636},"rot":{"x":46.194,"y":353.803,"z":290.495}},{"monsterId":0,"gadgetId":70590013,"configId":2027,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2581.217,"y":225.508,"z":-1581.344},"rot":{"x":358.943,"y":352.212,"z":19.892}},{"monsterId":0,"gadgetId":70540018,"configId":4485,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2528.558,"y":339.752,"z":-1662.325},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4484,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2530.099,"y":340.305,"z":-1664.526},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4483,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2529.173,"y":339.978,"z":-1662.489},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":3915,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2462.023,"y":220.413,"z":-1394.247},"rot":{"x":349.6,"y":359.742,"z":1.814}},{"monsterId":0,"gadgetId":70590013,"configId":3914,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2459.992,"y":220.063,"z":-1384.807},"rot":{"x":349.6,"y":359.742,"z":1.814}},{"monsterId":0,"gadgetId":70510004,"configId":4381,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2398.739,"y":212.238,"z":-1096.535},"rot":{"x":0.0,"y":182.547,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4380,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2399.206,"y":211.741,"z":-1098.735},"rot":{"x":0.0,"y":206.176,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4379,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2357.489,"y":208.708,"z":-1112.222},"rot":{"x":0.0,"y":249.698,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4378,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2359.18,"y":208.813,"z":-1112.219},"rot":{"x":0.0,"y":78.142,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4368,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2362.167,"y":209.564,"z":-1104.171},"rot":{"x":0.0,"y":297.997,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":4367,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2363.839,"y":209.436,"z":-1103.047},"rot":{"x":0.0,"y":235.724,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2571,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2268.314,"y":267.024,"z":-1684.582},"rot":{"x":0.0,"y":7.477,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2570,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2269.344,"y":267.28,"z":-1684.837},"rot":{"x":0.0,"y":97.246,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":2574,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2267.621,"y":266.152,"z":-1677.841},"rot":{"x":12.633,"y":11.174,"z":8.964}},{"monsterId":0,"gadgetId":70510004,"configId":2573,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2263.535,"y":265.727,"z":-1681.491},"rot":{"x":10.604,"y":231.337,"z":339.205}},{"monsterId":0,"gadgetId":70510004,"configId":2572,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2267.0,"y":266.94,"z":-1687.046},"rot":{"x":0.0,"y":313.371,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4482,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2489.898,"y":324.743,"z":-1647.802},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4481,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2489.75,"y":324.794,"z":-1645.874},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4385,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2510.881,"y":341.427,"z":-1723.615},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4384,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2510.222,"y":341.297,"z":-1723.644},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4382,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2513.241,"y":341.747,"z":-1722.62},"rot":{"x":0.0,"y":41.686,"z":0.0}},{"monsterId":0,"gadgetId":70540018,"configId":4383,"level":0,"poseId":0,"gatherItemId":100023,"pos":{"x":2514.354,"y":342.342,"z":-1725.167},"rot":{"x":0.0,"y":41.686,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":3747,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2246.221,"y":205.895,"z":-1802.472},"rot":{"x":0.0,"y":339.186,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":2956,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2148.976,"y":234.877,"z":-1652.073},"rot":{"x":0.0,"y":92.66,"z":0.0}}]},{"sceneId":3,"groupId":166001638,"blockId":0,"pos":{"x":395.83,"y":0.0,"z":817.3963},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":638003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":394.643,"y":172.935,"z":818.402},"rot":{"x":0.0,"y":78.785,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":638002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":393.225,"y":172.642,"z":818.103},"rot":{"x":0.0,"y":301.803,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":638001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":399.622,"y":172.837,"z":815.684},"rot":{"x":0.0,"y":42.588,"z":0.0}}]},{"sceneId":3,"groupId":166001632,"blockId":0,"pos":{"x":945.08203,"y":0.0,"z":393.81702},"spawns":[{"monsterId":0,"gadgetId":70540032,"configId":632001,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":942.322,"y":770.754,"z":394.383},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":632002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":947.842,"y":768.473,"z":393.251},"rot":{"x":0.635,"y":55.454,"z":319.186}}]},{"sceneId":3,"groupId":166001633,"blockId":0,"pos":{"x":1011.8688,"y":0.0,"z":739.65216},"spawns":[{"monsterId":0,"gadgetId":70520008,"configId":633003,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":999.911,"y":900.45,"z":779.387},"rot":{"x":0.0,"y":167.866,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":633005,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1013.476,"y":900.506,"z":768.496},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":633009,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1017.583,"y":976.345,"z":711.161},"rot":{"x":0.0,"y":91.597,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":633007,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1014.332,"y":975.671,"z":703.152},"rot":{"x":0.0,"y":64.592,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":633004,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1014.042,"y":900.809,"z":736.065},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001634,"blockId":0,"pos":{"x":447.821,"y":0.0,"z":502.54294},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":634004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":449.223,"y":406.458,"z":415.973},"rot":{"x":0.0,"y":226.718,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":634003,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":451.521,"y":407.055,"z":416.655},"rot":{"x":0.0,"y":80.537,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":634002,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":446.117,"y":406.334,"z":413.129},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":634001,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":450.282,"y":408.385,"z":406.708},"rot":{"x":0.0,"y":62.462,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":634012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":373.719,"y":401.531,"z":516.779},"rot":{"x":27.112,"y":356.777,"z":14.397}},{"monsterId":0,"gadgetId":70520001,"configId":634011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":377.808,"y":404.014,"z":509.22},"rot":{"x":350.898,"y":180.692,"z":17.855}},{"monsterId":0,"gadgetId":70520001,"configId":634010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":364.654,"y":408.251,"z":511.56},"rot":{"x":7.678,"y":358.883,"z":343.464}},{"monsterId":0,"gadgetId":70520001,"configId":634009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":365.5,"y":404.964,"z":519.37},"rot":{"x":15.027,"y":357.694,"z":342.645}},{"monsterId":0,"gadgetId":70520003,"configId":634007,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":349.757,"y":400.105,"z":580.482},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":634006,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":349.876,"y":401.084,"z":585.563},"rot":{"x":13.819,"y":77.214,"z":342.322}},{"monsterId":0,"gadgetId":70540031,"configId":634005,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":351.881,"y":400.085,"z":584.461},"rot":{"x":0.0,"y":344.655,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":634016,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":551.881,"y":399.731,"z":510.098},"rot":{"x":26.305,"y":3.89,"z":16.536}},{"monsterId":0,"gadgetId":70540031,"configId":634015,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":567.458,"y":403.384,"z":511.464},"rot":{"x":0.0,"y":305.241,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":634014,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":564.513,"y":401.304,"z":517.713},"rot":{"x":7.514,"y":201.287,"z":313.441}},{"monsterId":0,"gadgetId":70540031,"configId":634013,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":563.357,"y":402.203,"z":506.74},"rot":{"x":356.842,"y":47.199,"z":356.594}},{"monsterId":0,"gadgetId":70540032,"configId":634008,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":587.589,"y":404.144,"z":534.772},"rot":{"x":19.574,"y":337.069,"z":20.962}}]},{"sceneId":3,"groupId":166001635,"blockId":0,"pos":{"x":270.556,"y":0.0,"z":337.364},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":635002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":271.75,"y":318.614,"z":338.893},"rot":{"x":0.0,"y":237.528,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":635001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":269.362,"y":318.86,"z":335.835},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133107176,"blockId":0,"pos":{"x":-263.76776,"y":0.0,"z":99.48987},"spawns":[{"monsterId":0,"gadgetId":70540021,"configId":176006,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-260.044,"y":247.19,"z":42.863},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":176005,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-259.217,"y":246.91,"z":40.471},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":176004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-261.158,"y":245.9,"z":42.196},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":176002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-260.124,"y":203.754,"z":122.335},"rot":{"x":29.259,"y":281.722,"z":14.805}},{"monsterId":0,"gadgetId":70520001,"configId":176001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-266.66,"y":200.346,"z":108.347},"rot":{"x":24.854,"y":290.102,"z":3.704}},{"monsterId":0,"gadgetId":70540021,"configId":176010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-267.583,"y":206.334,"z":147.597},"rot":{"x":0.894,"y":0.028,"z":3.577}},{"monsterId":0,"gadgetId":70540021,"configId":176009,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-266.741,"y":206.143,"z":145.201},"rot":{"x":3.193,"y":314.051,"z":1.843}},{"monsterId":0,"gadgetId":70540021,"configId":176008,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-268.615,"y":204.987,"z":146.909},"rot":{"x":3.484,"y":264.963,"z":358.796}}]},{"sceneId":3,"groupId":133107175,"blockId":0,"pos":{"x":-783.211,"y":0.0,"z":470.94},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":175001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-783.211,"y":231.308,"z":470.94},"rot":{"x":353.337,"y":20.361,"z":344.131}}]},{"sceneId":3,"groupId":133107174,"blockId":0,"pos":{"x":-685.73566,"y":0.0,"z":439.75134},"spawns":[{"monsterId":0,"gadgetId":70540014,"configId":174002,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-593.524,"y":247.673,"z":436.722},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":174003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-717.207,"y":232.61,"z":383.349},"rot":{"x":0.0,"y":19.431,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":174004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-746.476,"y":224.088,"z":499.183},"rot":{"x":0.0,"y":19.431,"z":0.0}}]},{"sceneId":3,"groupId":133107173,"blockId":0,"pos":{"x":-393.67596,"y":0.0,"z":460.24887},"spawns":[{"monsterId":0,"gadgetId":70540014,"configId":173006,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-491.315,"y":227.709,"z":404.307},"rot":{"x":0.0,"y":236.006,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":173004,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-484.592,"y":227.65,"z":414.986},"rot":{"x":0.0,"y":326.988,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":173002,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-492.352,"y":227.65,"z":401.411},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":173008,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-492.928,"y":227.65,"z":432.418},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":173010,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-479.035,"y":230.739,"z":467.044},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":173016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-287.99,"y":366.61,"z":507.398},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":173015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-288.323,"y":366.198,"z":507.105},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":173014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-288.241,"y":365.912,"z":507.902},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":173012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-321.646,"y":363.727,"z":476.123},"rot":{"x":0.0,"y":256.606,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":173011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-310.338,"y":366.937,"z":483.795},"rot":{"x":11.927,"y":1.88,"z":17.851}}]},{"sceneId":3,"groupId":133103077,"blockId":0,"pos":{"x":476.368,"y":0.0,"z":1797.982},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":77002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":476.368,"y":324.016,"z":1797.982},"rot":{"x":0.0,"y":242.155,"z":0.0}}]},{"sceneId":3,"groupId":166001640,"blockId":0,"pos":{"x":428.987,"y":0.0,"z":657.8574},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":640003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":441.491,"y":380.043,"z":667.97},"rot":{"x":29.782,"y":51.576,"z":16.622}},{"monsterId":0,"gadgetId":70540031,"configId":640001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":442.778,"y":380.055,"z":666.556},"rot":{"x":0.0,"y":299.84,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":640002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":437.484,"y":380.412,"z":666.298},"rot":{"x":0.0,"y":45.143,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":640005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":409.666,"y":384.724,"z":644.813},"rot":{"x":9.942,"y":359.671,"z":356.223}},{"monsterId":0,"gadgetId":70520001,"configId":640004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":413.516,"y":385.286,"z":643.65},"rot":{"x":4.551,"y":294.062,"z":350.514}}]},{"sceneId":3,"groupId":133103074,"blockId":0,"pos":{"x":386.15396,"y":0.0,"z":1095.6785},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":74038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":482.273,"y":229.43,"z":1040.659},"rot":{"x":355.31,"y":169.977,"z":6.478}},{"monsterId":0,"gadgetId":70520005,"configId":74035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":484.601,"y":218.139,"z":1056.49},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":74037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":483.98,"y":221.86,"z":1087.171},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":74036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":489.657,"y":216.515,"z":1068.5},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":74006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":500.863,"y":223.862,"z":1121.293},"rot":{"x":0.0,"y":174.786,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":74004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":432.815,"y":255.898,"z":1149.185},"rot":{"x":0.0,"y":79.732,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":74002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":470.009,"y":263.246,"z":1183.601},"rot":{"x":0.0,"y":273.158,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":74005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":467.75,"y":282.077,"z":1241.239},"rot":{"x":0.0,"y":334.492,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":74003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":388.474,"y":283.752,"z":1255.133},"rot":{"x":0.0,"y":347.138,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":74021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":308.272,"y":259.489,"z":1265.682},"rot":{"x":0.0,"y":113.984,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":74014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":279.466,"y":250.23,"z":1198.673},"rot":{"x":0.0,"y":18.95,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":74012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":274.675,"y":236.708,"z":1045.688},"rot":{"x":2.444,"y":66.7,"z":2.198}},{"monsterId":0,"gadgetId":70520005,"configId":74026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":293.152,"y":221.028,"z":1034.937},"rot":{"x":0.0,"y":180.203,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":74027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":257.454,"y":239.902,"z":1067.983},"rot":{"x":3.47,"y":359.573,"z":345.963}},{"monsterId":0,"gadgetId":70520013,"configId":74030,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":316.739,"y":225.473,"z":1052.964},"rot":{"x":357.144,"y":359.881,"z":4.767}},{"monsterId":0,"gadgetId":70520013,"configId":74029,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":316.209,"y":225.536,"z":1054.472},"rot":{"x":354.973,"y":359.788,"z":4.827}},{"monsterId":0,"gadgetId":70540021,"configId":74034,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":362.737,"y":222.809,"z":1044.923},"rot":{"x":7.005,"y":0.652,"z":10.62}},{"monsterId":0,"gadgetId":70540021,"configId":74033,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":365.219,"y":220.339,"z":1044.579},"rot":{"x":12.492,"y":314.253,"z":48.462}},{"monsterId":0,"gadgetId":70540021,"configId":74032,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":362.189,"y":219.933,"z":1044.327},"rot":{"x":9.881,"y":264.306,"z":351.981}},{"monsterId":0,"gadgetId":70540021,"configId":74018,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":381.915,"y":229.823,"z":1040.45},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":74017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":382.742,"y":229.543,"z":1038.058},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":74016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":380.801,"y":228.533,"z":1039.783},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":74025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":399.549,"y":224.691,"z":1024.814},"rot":{"x":0.0,"y":38.756,"z":0.0}}]},{"sceneId":3,"groupId":133105123,"blockId":0,"pos":{"x":723.817,"y":0.0,"z":-332.589},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":295,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":723.817,"y":250.369,"z":-332.589},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133105122,"blockId":0,"pos":{"x":495.333,"y":0.0,"z":-378.652},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":292,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":495.333,"y":199.802,"z":-378.652},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103075,"blockId":0,"pos":{"x":342.7392,"y":0.0,"z":1399.9358},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":75013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":507.454,"y":361.215,"z":1424.464},"rot":{"x":0.0,"y":157.417,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":75012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":493.856,"y":358.231,"z":1425.694},"rot":{"x":325.519,"y":134.732,"z":342.932}},{"monsterId":0,"gadgetId":70520001,"configId":75011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":501.292,"y":358.094,"z":1427.356},"rot":{"x":0.0,"y":157.417,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":75010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":511.263,"y":359.425,"z":1427.509},"rot":{"x":337.108,"y":154.237,"z":15.609}},{"monsterId":0,"gadgetId":70520005,"configId":75007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":348.16,"y":260.849,"z":1361.538},"rot":{"x":0.0,"y":172.273,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":75004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":342.792,"y":243.425,"z":1315.846},"rot":{"x":0.0,"y":73.673,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":75009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":325.169,"y":257.994,"z":1419.59},"rot":{"x":0.0,"y":335.762,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":75021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":296.651,"y":198.998,"z":1343.67},"rot":{"x":0.0,"y":231.507,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":75017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":275.541,"y":197.06,"z":1319.697},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":75018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":275.459,"y":197.346,"z":1318.9},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":75019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":275.792,"y":197.758,"z":1319.193},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":75022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":260.369,"y":196.665,"z":1284.564},"rot":{"x":0.0,"y":188.787,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":75020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":257.357,"y":247.431,"z":1520.331},"rot":{"x":0.0,"y":65.164,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":75023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":256.758,"y":244.131,"z":1483.943},"rot":{"x":4.65,"y":359.949,"z":3.887}},{"monsterId":0,"gadgetId":70520009,"configId":75001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":393.247,"y":321.643,"z":1459.524},"rot":{"x":0.0,"y":211.934,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":75025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":287.754,"y":185.449,"z":1434.394},"rot":{"x":0.0,"y":285.613,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":75024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":285.927,"y":185.422,"z":1435.735},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":75014,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":307.209,"y":187.819,"z":1445.226},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":75015,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":309.995,"y":187.623,"z":1431.605},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001642,"blockId":0,"pos":{"x":636.5618,"y":0.0,"z":690.74677},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":642005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":691.469,"y":386.568,"z":736.774},"rot":{"x":0.0,"y":159.485,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":642004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":686.96,"y":386.617,"z":738.269},"rot":{"x":308.801,"y":4.197,"z":351.253}},{"monsterId":0,"gadgetId":70540031,"configId":642003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":599.126,"y":405.228,"z":658.784},"rot":{"x":348.602,"y":278.645,"z":336.351}},{"monsterId":0,"gadgetId":70540031,"configId":642002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":603.694,"y":403.189,"z":656.752},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":642001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":601.56,"y":402.705,"z":663.155},"rot":{"x":12.902,"y":354.47,"z":313.744}}]},{"sceneId":3,"groupId":133105121,"blockId":0,"pos":{"x":540.5405,"y":0.0,"z":-93.1},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":288,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":534.429,"y":201.352,"z":-94.113},"rot":{"x":351.761,"y":2.818,"z":331.235}},{"monsterId":0,"gadgetId":70510005,"configId":286,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":546.652,"y":200.151,"z":-92.087},"rot":{"x":9.67,"y":301.03,"z":0.0}}]},{"sceneId":3,"groupId":133103103,"blockId":0,"pos":{"x":813.726,"y":0.0,"z":1535.027},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":335,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":813.726,"y":324.286,"z":1535.027},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001650,"blockId":0,"pos":{"x":688.4968,"y":0.0,"z":620.12067},"spawns":[{"monsterId":0,"gadgetId":70520038,"configId":650001,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":627.063,"y":394.989,"z":560.666},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":650002,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":689.622,"y":390.842,"z":599.069},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":650004,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":693.666,"y":386.153,"z":631.494},"rot":{"x":326.764,"y":292.596,"z":339.002}},{"monsterId":0,"gadgetId":70520038,"configId":650006,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":692.361,"y":384.805,"z":654.543},"rot":{"x":0.0,"y":333.558,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":650003,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":719.941,"y":389.482,"z":623.208},"rot":{"x":354.011,"y":359.771,"z":4.376}},{"monsterId":0,"gadgetId":70520038,"configId":650005,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":708.328,"y":384.423,"z":651.744},"rot":{"x":350.373,"y":353.826,"z":5.027}}]},{"sceneId":3,"groupId":133102071,"blockId":0,"pos":{"x":1576.797,"y":0.0,"z":195.784},"spawns":[{"monsterId":0,"gadgetId":70590021,"configId":71006,"level":0,"poseId":0,"gatherItemId":107003,"pos":{"x":1576.797,"y":238.159,"z":195.784},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103090,"blockId":0,"pos":{"x":131.06139,"y":0.0,"z":1379.8418},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":90019,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":73.758,"y":188.456,"z":1293.713},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":90018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":84.332,"y":186.199,"z":1301.577},"rot":{"x":12.936,"y":358.694,"z":348.517}},{"monsterId":0,"gadgetId":70540005,"configId":90016,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":45.646,"y":194.51,"z":1280.625},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":90015,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":42.517,"y":195.413,"z":1280.915},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":90017,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":47.813,"y":194.2,"z":1282.051},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":90007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1.38,"y":212.931,"z":1330.374},"rot":{"x":0.0,"y":128.176,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":90008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":220.94,"y":197.458,"z":1404.308},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":90010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":217.808,"y":197.454,"z":1414.708},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":90004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":134.878,"y":186.772,"z":1311.227},"rot":{"x":0.0,"y":90.094,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":90003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":56.961,"y":189.922,"z":1322.574},"rot":{"x":0.0,"y":116.601,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":90020,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":23.59,"y":200.466,"z":1318.47},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":90005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":61.557,"y":203.252,"z":1376.654},"rot":{"x":0.0,"y":217.967,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":90011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":251.212,"y":248.615,"z":1519.913},"rot":{"x":0.0,"y":0.0,"z":344.291}},{"monsterId":0,"gadgetId":70520009,"configId":90002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":252.603,"y":247.452,"z":1445.879},"rot":{"x":0.0,"y":275.1,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":90012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":213.904,"y":251.618,"z":1482.361},"rot":{"x":358.231,"y":0.585,"z":351.795}},{"monsterId":0,"gadgetId":70520001,"configId":90014,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":214.086,"y":259.802,"z":1532.234},"rot":{"x":24.99,"y":107.47,"z":6.735}},{"monsterId":0,"gadgetId":70520001,"configId":90013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":213.536,"y":260.042,"z":1530.616},"rot":{"x":0.478,"y":180.865,"z":25.821}},{"monsterId":0,"gadgetId":70520004,"configId":90009,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":202.584,"y":196.987,"z":1408.953},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103054,"blockId":0,"pos":{"x":252.60417,"y":0.0,"z":1654.4398},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":54004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":251.673,"y":246.03,"z":1627.349},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":251.34,"y":245.618,"z":1627.056},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":54002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":251.422,"y":245.332,"z":1627.853},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":54015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":252.839,"y":235.618,"z":1642.478},"rot":{"x":13.369,"y":4.293,"z":336.251}},{"monsterId":0,"gadgetId":70520001,"configId":54014,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":254.955,"y":242.242,"z":1704.639},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":54013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":253.396,"y":240.602,"z":1697.264},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133101007,"blockId":0,"pos":{"x":1186.3239,"y":0.0,"z":1130.2837},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":7047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1031.424,"y":305.562,"z":1215.654},"rot":{"x":0.0,"y":239.841,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1107.015,"y":256.118,"z":1168.155},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1179.813,"y":255.846,"z":1249.638},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1161.721,"y":274.665,"z":1205.578},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1225.736,"y":266.754,"z":1191.394},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1249.049,"y":269.623,"z":1204.076},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":7002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1265.014,"y":264.695,"z":1239.08},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":7001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1263.857,"y":265.097,"z":1245.859},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1249.585,"y":278.926,"z":1263.67},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1262.606,"y":265.383,"z":1252.511},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7032,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1139.99,"y":260.325,"z":1184.147},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7031,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1139.99,"y":260.325,"z":1183.955},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1178.706,"y":266.979,"z":1184.106},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1232.458,"y":265.905,"z":1176.134},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7026,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1258.108,"y":284.984,"z":1176.67},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7025,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1258.108,"y":284.984,"z":1176.478},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1116.819,"y":253.269,"z":1152.276},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1094.582,"y":246.316,"z":1128.832},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1107.62,"y":248.795,"z":1135.245},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1273.711,"y":261.41,"z":1214.169},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1117.247,"y":229.773,"z":1100.123},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1112.733,"y":222.912,"z":1071.102},"rot":{"x":0.0,"y":67.404,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1113.622,"y":222.448,"z":1070.012},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1130.464,"y":224.296,"z":1076.789},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7011,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1130.633,"y":225.999,"z":1085.729},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":7006,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1131.502,"y":227.548,"z":1085.754},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":7007,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1133.443,"y":228.558,"z":1084.029},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":7008,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":1132.616,"y":228.838,"z":1086.421},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1132.196,"y":229.641,"z":1084.745},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7028,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1197.412,"y":255.899,"z":1072.761},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7029,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1197.412,"y":255.899,"z":1072.953},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1216.276,"y":262.528,"z":1075.078},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1233.738,"y":233.892,"z":1078.498},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1230.617,"y":249.037,"z":1050.384},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1267.064,"y":223.648,"z":1065.177},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":7003,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":1178.31,"y":240.46,"z":1043.926},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1193.199,"y":241.167,"z":1028.267},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1222.378,"y":245.645,"z":1033.096},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7035,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1258.089,"y":219.166,"z":1046.745},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7034,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1258.089,"y":219.166,"z":1046.553},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1256.332,"y":212.108,"z":1035.862},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133107148,"blockId":0,"pos":{"x":-371.42477,"y":0.0,"z":642.99713},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":148039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-450.078,"y":337.943,"z":540.239},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":148038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-450.411,"y":337.531,"z":539.946},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":148037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-450.329,"y":337.245,"z":540.743},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":148016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-373.472,"y":321.576,"z":568.749},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":148004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-382.516,"y":249.121,"z":699.014},"rot":{"x":0.0,"y":129.152,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":148011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-261.35,"y":265.487,"z":720.109},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":148010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-261.683,"y":265.075,"z":719.816},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":148009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-261.601,"y":264.789,"z":720.613},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":148005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-363.683,"y":241.468,"z":756.052},"rot":{"x":0.0,"y":304.716,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":148006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-304.884,"y":246.936,"z":751.903},"rot":{"x":0.0,"y":136.157,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":148017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-410.021,"y":262.503,"z":647.138},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":148020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-404.783,"y":255.236,"z":688.321},"rot":{"x":351.103,"y":26.139,"z":358.36}},{"monsterId":0,"gadgetId":70520005,"configId":148003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-400.871,"y":244.395,"z":720.238},"rot":{"x":0.0,"y":61.898,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":148033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-258.913,"y":390.895,"z":521.024},"rot":{"x":15.931,"y":4.365,"z":30.47}},{"monsterId":0,"gadgetId":70520009,"configId":148034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-478.736,"y":419.783,"z":583.109},"rot":{"x":2.814,"y":359.914,"z":356.5}},{"monsterId":0,"gadgetId":70520005,"configId":148026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-429.465,"y":337.039,"z":570.94},"rot":{"x":353.272,"y":1.032,"z":342.583}}]},{"sceneId":3,"groupId":133103053,"blockId":0,"pos":{"x":106.570305,"y":0.0,"z":1194.9268},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":53077,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":120.947,"y":189.67,"z":1252.222},"rot":{"x":3.576,"y":359.972,"z":359.105}},{"monsterId":0,"gadgetId":70520005,"configId":53049,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":141.391,"y":186.456,"z":1263.14},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":159.001,"y":186.246,"z":1264.44},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53046,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":192.441,"y":193.306,"z":1254.484},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":242.297,"y":230.342,"z":1136.384},"rot":{"x":0.0,"y":89.573,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53078,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":82.913,"y":187.68,"z":1274.52},"rot":{"x":1.789,"y":0.028,"z":1.79}},{"monsterId":0,"gadgetId":70520009,"configId":53076,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":109.191,"y":185.374,"z":1278.924},"rot":{"x":8.872,"y":359.806,"z":357.318}},{"monsterId":0,"gadgetId":70520005,"configId":53050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":182.094,"y":185.377,"z":1278.815},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":53057,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":53.63,"y":231.3,"z":1123.381},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53062,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":67.555,"y":220.176,"z":1156.872},"rot":{"x":10.615,"y":359.834,"z":358.21}},{"monsterId":0,"gadgetId":70520009,"configId":53037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":49.123,"y":216.193,"z":1182.01},"rot":{"x":0.0,"y":161.546,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":59.09,"y":211.017,"z":1222.512},"rot":{"x":0.0,"y":179.276,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":59.419,"y":210.605,"z":1222.809},"rot":{"x":0.0,"y":179.276,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":59.347,"y":210.319,"z":1222.011},"rot":{"x":0.0,"y":179.276,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":43.835,"y":223.195,"z":1158.208},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":35.841,"y":197.775,"z":1258.018},"rot":{"x":0.0,"y":104.673,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":36.877,"y":197.967,"z":1266.457},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":36.544,"y":197.555,"z":1266.164},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":36.626,"y":197.269,"z":1266.961},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":53064,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":20.533,"y":238.272,"z":1109.21},"rot":{"x":353.226,"y":1.084,"z":341.833}},{"monsterId":0,"gadgetId":70540001,"configId":53074,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":19.22,"y":241.516,"z":1148.864},"rot":{"x":5.394,"y":358.859,"z":336.124}},{"monsterId":0,"gadgetId":70540001,"configId":53073,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":18.887,"y":241.104,"z":1148.571},"rot":{"x":5.394,"y":358.859,"z":336.124}},{"monsterId":0,"gadgetId":70540001,"configId":53072,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":18.969,"y":240.818,"z":1149.368},"rot":{"x":5.394,"y":358.859,"z":336.124}},{"monsterId":0,"gadgetId":70520005,"configId":53063,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":11.142,"y":239.645,"z":1178.328},"rot":{"x":12.41,"y":357.839,"z":340.317}},{"monsterId":0,"gadgetId":70520005,"configId":53013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":21.147,"y":223.515,"z":1206.291},"rot":{"x":0.0,"y":239.903,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53070,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":19.511,"y":204.485,"z":1255.214},"rot":{"x":20.293,"y":356.347,"z":346.016}},{"monsterId":0,"gadgetId":70540001,"configId":53069,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":19.178,"y":204.073,"z":1254.921},"rot":{"x":20.293,"y":356.347,"z":346.016}},{"monsterId":0,"gadgetId":70540001,"configId":53068,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":19.26,"y":203.787,"z":1255.718},"rot":{"x":20.293,"y":356.347,"z":346.016}},{"monsterId":0,"gadgetId":70520005,"configId":53034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":2.893,"y":245.557,"z":1138.195},"rot":{"x":0.0,"y":144.73,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":53035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":179.421,"y":202.308,"z":1222.992},"rot":{"x":0.0,"y":168.222,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":222.422,"y":209.517,"z":1223.794},"rot":{"x":0.0,"y":41.02,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":53016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":160.258,"y":199.1,"z":1215.463},"rot":{"x":1.774,"y":18.139,"z":14.395}},{"monsterId":0,"gadgetId":70520005,"configId":53048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":154.953,"y":191.2,"z":1236.565},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":170.293,"y":209.538,"z":1193.428},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":169.96,"y":209.126,"z":1193.135},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":53042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":170.042,"y":208.84,"z":1193.932},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":53080,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":204.634,"y":219.214,"z":1207.315},"rot":{"x":36.269,"y":357.436,"z":352.183}},{"monsterId":0,"gadgetId":70520001,"configId":53079,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":206.564,"y":218.67,"z":1207.191},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":96.217,"y":195.733,"z":1238.839},"rot":{"x":0.0,"y":265.713,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53075,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":87.288,"y":200.294,"z":1231.439},"rot":{"x":19.549,"y":358.467,"z":351.119}},{"monsterId":0,"gadgetId":70520005,"configId":53017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":74.31,"y":208.571,"z":1202.787},"rot":{"x":13.462,"y":80.445,"z":15.877}},{"monsterId":0,"gadgetId":70520009,"configId":53036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":155.684,"y":247.969,"z":1033.186},"rot":{"x":0.0,"y":36.675,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":207.707,"y":235.03,"z":1042.278},"rot":{"x":0.0,"y":239.527,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":53052,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":232.723,"y":235.6,"z":1043.522},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":53051,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":233.945,"y":236.58,"z":1045.567},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":53045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":236.911,"y":236.564,"z":1042.185},"rot":{"x":0.0,"y":344.456,"z":0.0}}]},{"sceneId":3,"groupId":133107147,"blockId":0,"pos":{"x":-862.88446,"y":0.0,"z":717.0292},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":147015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-864.647,"y":213.399,"z":675.15},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":147014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-843.674,"y":211.673,"z":681.571},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":147013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-844.007,"y":211.261,"z":681.278},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":147012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-843.925,"y":210.975,"z":682.075},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-894.595,"y":221.343,"z":708.28},"rot":{"x":0.0,"y":341.379,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-798.256,"y":216.343,"z":710.38},"rot":{"x":11.926,"y":354.708,"z":13.598}},{"monsterId":0,"gadgetId":70520009,"configId":147009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-913.388,"y":200.835,"z":757.674},"rot":{"x":0.0,"y":173.892,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":147004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-876.547,"y":201.536,"z":759.081},"rot":{"x":0.0,"y":115.715,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-786.797,"y":206.906,"z":766.426},"rot":{"x":0.0,"y":243.663,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":147006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-963.009,"y":208.46,"z":748.377},"rot":{"x":0.0,"y":0.725,"z":0.0}}]},{"sceneId":3,"groupId":133107146,"blockId":0,"pos":{"x":-667.43353,"y":0.0,"z":671.7698},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":146032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-683.443,"y":217.76,"z":707.966},"rot":{"x":0.0,"y":318.751,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":146043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-592.898,"y":368.698,"z":512.625},"rot":{"x":12.539,"y":358.888,"z":349.908}},{"monsterId":0,"gadgetId":70520005,"configId":146041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-612.846,"y":363.73,"z":539.186},"rot":{"x":0.0,"y":0.0,"z":350.247}},{"monsterId":0,"gadgetId":70520009,"configId":146045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-712.902,"y":314.416,"z":614.125},"rot":{"x":18.307,"y":2.721,"z":16.771}},{"monsterId":0,"gadgetId":70520009,"configId":146016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-764.726,"y":222.038,"z":672.877},"rot":{"x":0.0,"y":287.16,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":146008,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-760.375,"y":191.4,"z":751.565},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":146030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-733.335,"y":218.585,"z":668.935},"rot":{"x":0.0,"y":103.84,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":146031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-738.072,"y":219.633,"z":723.649},"rot":{"x":0.0,"y":42.265,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":146012,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-739.594,"y":191.4,"z":760.79},"rot":{"x":0.0,"y":236.596,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":146010,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-743.543,"y":191.4,"z":753.456},"rot":{"x":0.0,"y":280.147,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":146029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-723.498,"y":217.832,"z":657.067},"rot":{"x":0.0,"y":18.278,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":146028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-705.411,"y":248.219,"z":626.221},"rot":{"x":6.268,"y":0.384,"z":6.999}},{"monsterId":0,"gadgetId":70520005,"configId":146022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-699.95,"y":218.214,"z":734.443},"rot":{"x":0.0,"y":289.417,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":146055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-660.274,"y":304.541,"z":634.24},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":146054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-660.607,"y":304.129,"z":633.947},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":146053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-660.525,"y":303.843,"z":634.744},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":146003,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-657.268,"y":227.665,"z":665.307},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":146002,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-657.268,"y":227.665,"z":665.115},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":146021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-655.836,"y":222.757,"z":668.922},"rot":{"x":0.0,"y":202.312,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":146035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-646.248,"y":299.129,"z":645.385},"rot":{"x":25.99,"y":0.203,"z":0.878}},{"monsterId":0,"gadgetId":70520005,"configId":146018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-642.07,"y":244.818,"z":757.392},"rot":{"x":0.0,"y":333.99,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":146006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-629.386,"y":226.799,"z":670.287},"rot":{"x":0.0,"y":317.404,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":146005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-629.256,"y":226.799,"z":670.146},"rot":{"x":0.0,"y":317.404,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":146019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-615.123,"y":227.41,"z":711.374},"rot":{"x":0.0,"y":341.042,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":146026,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-600.161,"y":253.82,"z":765.931},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":146025,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-599.334,"y":253.54,"z":763.539},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":146024,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-601.275,"y":252.53,"z":765.264},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":146049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-609.039,"y":359.643,"z":550.21},"rot":{"x":6.011,"y":359.17,"z":344.29}},{"monsterId":0,"gadgetId":70520005,"configId":146042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-621.309,"y":363.901,"z":556.616},"rot":{"x":358.246,"y":0.176,"z":348.517}}]},{"sceneId":3,"groupId":133107145,"blockId":0,"pos":{"x":-327.96854,"y":0.0,"z":862.5587},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":145061,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-464.831,"y":184.504,"z":940.508},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":145007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-470.478,"y":226.159,"z":983.791},"rot":{"x":0.0,"y":80.949,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-359.762,"y":241.402,"z":769.735},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-360.095,"y":240.99,"z":769.442},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-360.013,"y":240.704,"z":770.239},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":145052,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-276.34,"y":218.803,"z":780.473},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":145053,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-274.399,"y":219.813,"z":778.748},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":145054,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-275.226,"y":220.093,"z":781.14},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":145016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-331.572,"y":216.204,"z":795.935},"rot":{"x":0.0,"y":235.71,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-357.191,"y":224.331,"z":814.684},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-357.524,"y":223.919,"z":814.391},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-357.442,"y":223.633,"z":815.188},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-354.533,"y":206.398,"z":846.295},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-354.866,"y":205.986,"z":846.002},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-354.784,"y":205.7,"z":846.799},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":145010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-279.044,"y":193.756,"z":838.982},"rot":{"x":0.0,"y":294.285,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":145003,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-279.372,"y":204.651,"z":858.701},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":145002,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-279.372,"y":204.651,"z":858.509},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":145005,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-258.022,"y":180.68,"z":872.332},"rot":{"x":0.0,"y":295.85,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-286.645,"y":186.499,"z":889.403},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-286.978,"y":186.087,"z":889.11},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":145021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-286.896,"y":185.801,"z":889.907},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":145019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-280.559,"y":231.589,"z":938.586},"rot":{"x":0.0,"y":164.381,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":145014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-300.325,"y":194.35,"z":889.351},"rot":{"x":0.0,"y":42.138,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":145006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-329.881,"y":280.059,"z":979.06},"rot":{"x":0.0,"y":8.013,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":145049,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-339.5,"y":288.67,"z":1015.792},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":145050,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-339.5,"y":288.67,"z":1015.984},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103049,"blockId":0,"pos":{"x":820.97974,"y":0.0,"z":1835.3346},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":49001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":771.943,"y":323.022,"z":1803.477},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":49007,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":859.105,"y":230.7,"z":1801.653},"rot":{"x":0.0,"y":273.17,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":49005,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":863.791,"y":230.7,"z":1793.543},"rot":{"x":0.0,"y":155.71,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":49002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":792.172,"y":327.6,"z":1811.707},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":49012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":806.327,"y":333.916,"z":1843.321},"rot":{"x":0.0,"y":246.391,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":49011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":811.322,"y":328.849,"z":1832.208},"rot":{"x":0.0,"y":224.494,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":49008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":868.205,"y":282.383,"z":1840.811},"rot":{"x":0.0,"y":35.51,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":49009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":777.622,"y":359.375,"z":1894.466},"rot":{"x":0.0,"y":353.83,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":49010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":838.33,"y":283.483,"z":1896.826},"rot":{"x":0.0,"y":118.522,"z":0.0}}]},{"sceneId":3,"groupId":133107144,"blockId":0,"pos":{"x":-656.0028,"y":0.0,"z":892.9425},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":144051,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-747.871,"y":177.919,"z":861.532},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-721.472,"y":202.241,"z":802.335},"rot":{"x":0.0,"y":338.903,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-721.678,"y":201.829,"z":801.942},"rot":{"x":0.0,"y":338.903,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-721.888,"y":201.543,"z":802.715},"rot":{"x":0.0,"y":338.903,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-723.118,"y":170.952,"z":867.626},"rot":{"x":0.0,"y":9.208,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-723.494,"y":170.54,"z":867.39},"rot":{"x":0.0,"y":9.208,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-723.285,"y":170.254,"z":868.164},"rot":{"x":0.0,"y":9.208,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":144050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-712.245,"y":166.651,"z":907.819},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":144013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-732.244,"y":227.799,"z":973.941},"rot":{"x":0.0,"y":338.955,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":144018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-709.366,"y":191.772,"z":833.443},"rot":{"x":0.0,"y":37.373,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":144010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-762.236,"y":167.128,"z":1001.849},"rot":{"x":0.0,"y":239.239,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-681.064,"y":218.189,"z":840.874},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-681.397,"y":217.777,"z":840.581},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-681.315,"y":217.491,"z":841.378},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":144011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-678.481,"y":197.925,"z":888.717},"rot":{"x":0.0,"y":6.757,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":144004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-657.218,"y":212.159,"z":900.367},"rot":{"x":0.0,"y":288.961,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":144003,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-654.687,"y":211.879,"z":900.372},"rot":{"x":0.0,"y":242.961,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":144002,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-656.949,"y":210.869,"z":899.097},"rot":{"x":0.0,"y":193.961,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-665.615,"y":221.532,"z":981.041},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-665.948,"y":221.12,"z":980.748},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-665.866,"y":220.834,"z":981.545},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":144017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-624.226,"y":228.867,"z":863.468},"rot":{"x":0.0,"y":294.753,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":144052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-627.35,"y":220.78,"z":896.096},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":144046,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-626.804,"y":233.011,"z":942.279},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":144045,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-625.977,"y":232.731,"z":939.887},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":144044,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-627.918,"y":231.721,"z":941.612},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-608.253,"y":313.474,"z":813.737},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-608.586,"y":313.062,"z":813.444},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-608.504,"y":312.776,"z":814.241},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":144047,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-597.232,"y":212.782,"z":900.438},"rot":{"x":349.898,"y":1.619,"z":341.833}},{"monsterId":0,"gadgetId":70520009,"configId":144049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-598.81,"y":267.109,"z":930.697},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":144016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-702.756,"y":207.057,"z":795.5},"rot":{"x":0.0,"y":243.114,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":144009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-591.998,"y":304.326,"z":799.284},"rot":{"x":0.0,"y":311.552,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":144048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-591.583,"y":210.278,"z":896.007},"rot":{"x":347.539,"y":331.779,"z":351.809}},{"monsterId":0,"gadgetId":70540001,"configId":144038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-567.779,"y":239.385,"z":909.995},"rot":{"x":0.0,"y":332.09,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-567.936,"y":238.973,"z":909.58},"rot":{"x":0.0,"y":332.09,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":144036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-568.236,"y":238.687,"z":910.323},"rot":{"x":0.0,"y":332.09,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":144014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-599.184,"y":213.384,"z":996.434},"rot":{"x":0.0,"y":198.73,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":144008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-678.456,"y":213.584,"z":1012.375},"rot":{"x":0.0,"y":236.566,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":144012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-531.085,"y":180.905,"z":988.83},"rot":{"x":0.0,"y":349.927,"z":0.0}}]},{"sceneId":3,"groupId":133103046,"blockId":0,"pos":{"x":910.8528,"y":0.0,"z":1158.073},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":46016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":805.045,"y":254.622,"z":1268.363},"rot":{"x":0.0,"y":202.353,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":46025,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":768.803,"y":187.498,"z":1245.227},"rot":{"x":357.183,"y":330.19,"z":22.168}},{"monsterId":0,"gadgetId":70520009,"configId":46013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":839.853,"y":220.842,"z":1196.733},"rot":{"x":0.0,"y":293.137,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":46010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":881.179,"y":235.072,"z":1204.003},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":46009,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":881.179,"y":235.072,"z":1203.811},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":46007,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":874.096,"y":236.828,"z":1192.896},"rot":{"x":0.0,"y":147.32,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":46006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":873.993,"y":236.828,"z":1193.058},"rot":{"x":0.0,"y":147.32,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":46015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":809.509,"y":251.297,"z":1033.604},"rot":{"x":0.0,"y":25.09,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":46014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":891.508,"y":284.785,"z":1071.333},"rot":{"x":0.0,"y":156.683,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":46017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":827.321,"y":284.571,"z":1100.797},"rot":{"x":0.0,"y":52.943,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":46022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":948.933,"y":279.816,"z":1047.164},"rot":{"x":0.0,"y":308.619,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":46002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":976.038,"y":268.424,"z":1075.451},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":46001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":984.71,"y":268.392,"z":1079.528},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":46018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":904.702,"y":294.254,"z":1162.059},"rot":{"x":0.0,"y":109.601,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":46020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":964.492,"y":285.883,"z":1151.962},"rot":{"x":0.0,"y":83.624,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":46003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":930.319,"y":298.284,"z":1186.706},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":46004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":972.908,"y":307.386,"z":1181.134},"rot":{"x":0.0,"y":14.396,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":46024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":955.477,"y":300.46,"z":1194.603},"rot":{"x":0.0,"y":20.115,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":46011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1004.796,"y":271.199,"z":1084.594},"rot":{"x":0.0,"y":66.653,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":46019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":917.908,"y":252.392,"z":1234.483},"rot":{"x":0.0,"y":14.22,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":46012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1002.743,"y":308.246,"z":1235.583},"rot":{"x":0.0,"y":327.666,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":46021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1023.249,"y":298.627,"z":1134.511},"rot":{"x":0.0,"y":48.059,"z":0.0}}]},{"sceneId":3,"groupId":133103045,"blockId":0,"pos":{"x":912.207,"y":0.0,"z":1387.9784},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":45021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":876.352,"y":381.06,"z":1431.509},"rot":{"x":0.0,"y":120.874,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":784.04,"y":232.226,"z":1300.899},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":782.968,"y":275.764,"z":1367.218},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":45010,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":794.809,"y":267.419,"z":1342.16},"rot":{"x":0.0,"y":132.01,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":799.284,"y":312.486,"z":1373.103},"rot":{"x":0.0,"y":222.478,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":45009,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":812.456,"y":266.06,"z":1322.401},"rot":{"x":0.0,"y":253.758,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":45020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":885.981,"y":326.241,"z":1312.87},"rot":{"x":0.0,"y":271.549,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":896.223,"y":367.384,"z":1367.739},"rot":{"x":0.0,"y":271.954,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":45013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":828.205,"y":377.967,"z":1459.657},"rot":{"x":0.0,"y":348.919,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":778.255,"y":322.822,"z":1498.656},"rot":{"x":0.0,"y":290.08,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":45014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":905.734,"y":358.112,"z":1487.574},"rot":{"x":0.0,"y":99.839,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":45018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":957.541,"y":339.414,"z":1444.41},"rot":{"x":0.0,"y":188.195,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":986.845,"y":343.657,"z":1495.91},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":992.197,"y":344.823,"z":1496.1},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":45011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":978.75,"y":305.095,"z":1290.323},"rot":{"x":0.0,"y":271.244,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":45008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":978.109,"y":305.032,"z":1291.686},"rot":{"x":0.0,"y":340.925,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":964.509,"y":269.024,"z":1341.462},"rot":{"x":0.0,"y":272.18,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":45005,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":978.301,"y":269.016,"z":1348.964},"rot":{"x":0.0,"y":281.071,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":45006,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":995.47,"y":269.146,"z":1361.728},"rot":{"x":0.0,"y":221.627,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1015.01,"y":272.102,"z":1355.06},"rot":{"x":0.0,"y":53.02,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":982.635,"y":269.422,"z":1390.986},"rot":{"x":0.0,"y":166.165,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":45007,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1000.11,"y":268.839,"z":1409.368},"rot":{"x":0.0,"y":87.137,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":45022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1006.976,"y":269.204,"z":1433.718},"rot":{"x":0.0,"y":225.93,"z":0.0}}]},{"sceneId":3,"groupId":133007808,"blockId":0,"pos":{"x":2597.8552,"y":0.0,"z":215.44022},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":936,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2059.184,"y":217.428,"z":-59.895},"rot":{"x":358.201,"y":28.22,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":632,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2061.318,"y":205.391,"z":-35.522},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":636,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2183.258,"y":252.657,"z":-57.089},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":948,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2280.657,"y":230.343,"z":-94.871},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":938,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2318.169,"y":229.093,"z":-102.944},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":944,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2334.305,"y":234.439,"z":-54.743},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":562,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2492.24,"y":206.45,"z":49.57},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":672,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2433.327,"y":226.239,"z":151.25},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":665,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2566.977,"y":216.047,"z":180.652},"rot":{"x":0.0,"y":48.487,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":667,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2568.802,"y":216.498,"z":184.905},"rot":{"x":0.0,"y":246.888,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":594,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2704.183,"y":215.628,"z":49.074},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":554,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2743.434,"y":206.908,"z":84.163},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":432,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2766.781,"y":240.682,"z":156.833},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":560,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2768.099,"y":240.803,"z":152.896},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":580,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2817.919,"y":206.825,"z":2.006},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":546,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2707.076,"y":206.784,"z":241.545},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":492,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2616.493,"y":208.388,"z":232.824},"rot":{"x":0.0,"y":79.485,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":588,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2754.527,"y":209.909,"z":282.557},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":558,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2488.588,"y":208.482,"z":258.073},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":644,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2593.167,"y":206.356,"z":300.377},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":586,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2454.563,"y":219.437,"z":233.711},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":919,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2498.469,"y":199.246,"z":327.285},"rot":{"x":0.0,"y":0.0,"z":351.444}},{"monsterId":0,"gadgetId":70510007,"configId":866,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2477.91,"y":226.483,"z":347.019},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":538,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2535.099,"y":181.704,"z":346.334},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":860,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2420.023,"y":225.638,"z":327.213},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":572,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2605.705,"y":217.801,"z":429.572},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":854,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2524.197,"y":206.942,"z":453.925},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":856,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2900.377,"y":225.243,"z":338.731},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":574,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2868.788,"y":208.528,"z":146.168},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":550,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2883.546,"y":215.77,"z":86.497},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":566,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2863.32,"y":209.927,"z":139.865},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":544,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2874.753,"y":211.368,"z":349.054},"rot":{"x":0.0,"y":259.331,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":582,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2858.095,"y":208.946,"z":174.634},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":552,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2940.073,"y":216.966,"z":-99.363},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":556,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2776.451,"y":233.463,"z":-169.908},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":621,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2644.929,"y":206.825,"z":320.276},"rot":{"x":0.0,"y":58.239,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":584,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2639.312,"y":206.825,"z":314.35},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":852,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2486.524,"y":213.021,"z":386.094},"rot":{"x":0.0,"y":214.923,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":864,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2533.857,"y":216.086,"z":368.753},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":542,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2589.746,"y":180.198,"z":380.381},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":570,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2552.317,"y":180.532,"z":388.855},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":568,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2571.071,"y":179.82,"z":396.753},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":858,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2427.32,"y":222.545,"z":414.165},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":896,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2534.099,"y":226.609,"z":492.057},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":540,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2596.893,"y":180.348,"z":397.556},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":902,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2599.151,"y":215.305,"z":500.472},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":900,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2604.088,"y":215.001,"z":500.82},"rot":{"x":0.0,"y":153.797,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":904,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2624.936,"y":211.408,"z":494.334},"rot":{"x":0.0,"y":230.189,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":921,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":2682.8,"y":187.611,"z":420.124},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":548,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":3024.015,"y":216.432,"z":275.77},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":578,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2679.36,"y":209.216,"z":-135.183},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":576,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":2558.189,"y":208.044,"z":-65.082},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103041,"blockId":0,"pos":{"x":668.4568,"y":0.0,"z":1855.4547},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":41005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":708.101,"y":392.487,"z":1900.201},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":41004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":750.957,"y":378.05,"z":1890.995},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":41017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":643.913,"y":363.392,"z":1925.069},"rot":{"x":0.0,"y":268.245,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":41010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":653.331,"y":370.273,"z":1911.659},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":41023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":621.457,"y":351.361,"z":1947.729},"rot":{"x":0.0,"y":225.668,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":41024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":693.21,"y":360.87,"z":1934.523},"rot":{"x":0.0,"y":28.077,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":41013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":690.527,"y":404.419,"z":1804.416},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":41003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":741.043,"y":320.222,"z":1793.439},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":41018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":707.201,"y":410.549,"z":1852.803},"rot":{"x":0.0,"y":336.331,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":41016,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":681.735,"y":406.959,"z":1814.298},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":41015,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":686.054,"y":404.683,"z":1808.053},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":41014,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":674.58,"y":400.753,"z":1814.002},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":41012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":590.211,"y":386.312,"z":1798.928},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":41011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":600.671,"y":363.555,"z":1830.865},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":41019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":583.86,"y":374.398,"z":1804.839},"rot":{"x":0.0,"y":122.908,"z":0.0}}]},{"sceneId":3,"groupId":166001620,"blockId":0,"pos":{"x":1027.2013,"y":0.0,"z":373.16833},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":620001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1029.941,"y":769.136,"z":373.652},"rot":{"x":341.407,"y":89.038,"z":10.198}},{"monsterId":0,"gadgetId":70540031,"configId":620002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1024.421,"y":769.588,"z":371.136},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":620003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1027.242,"y":769.104,"z":374.717},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001621,"blockId":0,"pos":{"x":995.55536,"y":0.0,"z":389.40234},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":621001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":991.293,"y":739.618,"z":388.408},"rot":{"x":11.278,"y":257.665,"z":341.99}},{"monsterId":0,"gadgetId":70520001,"configId":621002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":993.679,"y":739.705,"z":389.922},"rot":{"x":17.758,"y":21.377,"z":42.202}},{"monsterId":0,"gadgetId":70520001,"configId":621003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1001.694,"y":740.06,"z":389.877},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103071,"blockId":0,"pos":{"x":387.59396,"y":0.0,"z":1630.0355},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":71007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":506.64,"y":318.124,"z":1738.444},"rot":{"x":0.0,"y":208.595,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":71004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":500.139,"y":310.106,"z":1731.933},"rot":{"x":0.0,"y":57.861,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":71006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":504.691,"y":335.554,"z":1767.116},"rot":{"x":0.0,"y":340.971,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":71001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":481.832,"y":306.098,"z":1678.795},"rot":{"x":0.0,"y":314.934,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":71005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":478.15,"y":298.061,"z":1603.267},"rot":{"x":0.0,"y":270.718,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":71003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":505.598,"y":298.623,"z":1545.255},"rot":{"x":0.0,"y":196.85,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":71010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":297.402,"y":290.977,"z":1749.11},"rot":{"x":0.0,"y":167.637,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":71013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":277.15,"y":231.863,"z":1630.216},"rot":{"x":0.0,"y":260.9,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":71029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":285.824,"y":231.856,"z":1669.063},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":71008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":275.868,"y":234.964,"z":1703.384},"rot":{"x":356.188,"y":351.226,"z":347.245}},{"monsterId":0,"gadgetId":70520009,"configId":71017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":420.475,"y":291.476,"z":1587.467},"rot":{"x":0.0,"y":49.516,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":71031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":271.733,"y":245.478,"z":1557.869},"rot":{"x":1.773,"y":359.786,"z":355.528}},{"monsterId":0,"gadgetId":70540004,"configId":71037,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":347.875,"y":220.039,"z":1550.351},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":71036,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":347.875,"y":220.039,"z":1550.159},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":71034,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":349.596,"y":221.187,"z":1555.202},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":71033,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":349.596,"y":221.187,"z":1555.01},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":71002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":388.653,"y":292.711,"z":1537.962},"rot":{"x":0.0,"y":139.708,"z":0.0}}]},{"sceneId":3,"groupId":166001622,"blockId":0,"pos":{"x":873.6164,"y":0.0,"z":244.31708},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":622004,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":927.342,"y":724.742,"z":338.645},"rot":{"x":3.877,"y":78.439,"z":348.063}},{"monsterId":0,"gadgetId":70540031,"configId":622003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":933.798,"y":725.409,"z":327.491},"rot":{"x":354.159,"y":240.399,"z":349.805}},{"monsterId":0,"gadgetId":70540031,"configId":622002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":921.301,"y":726.208,"z":328.743},"rot":{"x":26.39,"y":348.816,"z":314.668}},{"monsterId":0,"gadgetId":70520002,"configId":622008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":991.022,"y":723.316,"z":293.264},"rot":{"x":0.0,"y":284.32,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":622009,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":1028.802,"y":733.974,"z":292.344},"rot":{"x":5.312,"y":287.619,"z":17.058}},{"monsterId":0,"gadgetId":70540031,"configId":622017,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":891.493,"y":714.728,"z":278.132},"rot":{"x":338.664,"y":0.169,"z":359.105}},{"monsterId":0,"gadgetId":70540031,"configId":622016,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":896.533,"y":713.565,"z":276.447},"rot":{"x":18.061,"y":129.847,"z":352.038}},{"monsterId":0,"gadgetId":70520002,"configId":622014,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":885.377,"y":716.248,"z":268.01},"rot":{"x":11.994,"y":118.034,"z":9.235}},{"monsterId":0,"gadgetId":70520002,"configId":622013,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":894.323,"y":714.561,"z":278.112},"rot":{"x":2.101,"y":359.699,"z":343.696}},{"monsterId":0,"gadgetId":70520002,"configId":622007,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":993.668,"y":724.064,"z":278.078},"rot":{"x":12.824,"y":223.826,"z":323.598}},{"monsterId":0,"gadgetId":70520002,"configId":622006,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":990.552,"y":723.042,"z":274.6},"rot":{"x":12.695,"y":3.655,"z":32.007}},{"monsterId":0,"gadgetId":70540031,"configId":622018,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":883.313,"y":716.033,"z":286.257},"rot":{"x":359.021,"y":17.627,"z":358.391}},{"monsterId":0,"gadgetId":70520002,"configId":622015,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":882.247,"y":715.672,"z":282.193},"rot":{"x":0.0,"y":257.688,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":622025,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":875.512,"y":710.274,"z":210.515},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":622012,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":916.956,"y":721.777,"z":162.314},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":622010,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":918.833,"y":721.503,"z":163.272},"rot":{"x":359.33,"y":34.25,"z":355.028}},{"monsterId":0,"gadgetId":70540031,"configId":622023,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":800.634,"y":709.774,"z":178.05},"rot":{"x":4.248,"y":336.129,"z":354.7}},{"monsterId":0,"gadgetId":70540031,"configId":622024,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":793.391,"y":708.452,"z":177.79},"rot":{"x":0.0,"y":222.405,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":622022,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":795.082,"y":708.701,"z":177.416},"rot":{"x":11.427,"y":296.025,"z":356.757}},{"monsterId":0,"gadgetId":70540031,"configId":622011,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":919.589,"y":723.224,"z":155.937},"rot":{"x":0.0,"y":83.341,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":622021,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":708.333,"y":732.885,"z":209.478},"rot":{"x":0.0,"y":249.28,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":622019,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":706.249,"y":733.887,"z":205.614},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":622001,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":701.943,"y":733.959,"z":213.652},"rot":{"x":0.0,"y":264.456,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":622020,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":710.499,"y":732.539,"z":207.256},"rot":{"x":9.318,"y":357.671,"z":331.99}}]},{"sceneId":3,"groupId":166001623,"blockId":0,"pos":{"x":763.59924,"y":0.0,"z":309.31674},"spawns":[{"monsterId":0,"gadgetId":70540032,"configId":623002,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":784.453,"y":755.405,"z":327.142},"rot":{"x":0.0,"y":38.584,"z":0.0}},{"monsterId":0,"gadgetId":70540032,"configId":623001,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":786.025,"y":757.27,"z":334.887},"rot":{"x":0.0,"y":318.958,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":623009,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":740.926,"y":763.363,"z":288.177},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":623004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":742.993,"y":760.997,"z":287.061},"rot":{"x":0.0,"y":48.055,"z":0.0}}]},{"sceneId":3,"groupId":166001617,"blockId":0,"pos":{"x":1001.52704,"y":0.0,"z":900.0368},"spawns":[{"monsterId":0,"gadgetId":70540032,"configId":617005,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":954.034,"y":1091.766,"z":950.953},"rot":{"x":0.0,"y":319.131,"z":0.0}},{"monsterId":0,"gadgetId":70540032,"configId":617004,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":951.254,"y":1092.243,"z":952.715},"rot":{"x":0.0,"y":147.607,"z":0.0}},{"monsterId":0,"gadgetId":70540032,"configId":617013,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1016.105,"y":1022.087,"z":932.717},"rot":{"x":0.0,"y":225.661,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":617003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1034.906,"y":1085.873,"z":936.97},"rot":{"x":8.343,"y":285.107,"z":20.891}},{"monsterId":0,"gadgetId":70520001,"configId":617002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1032.528,"y":1084.118,"z":941.727},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":617006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1029.266,"y":1082.968,"z":941.796},"rot":{"x":16.745,"y":260.565,"z":0.001}},{"monsterId":0,"gadgetId":70520001,"configId":617001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1026.327,"y":1081.377,"z":952.153},"rot":{"x":0.0,"y":297.815,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":617007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1042.628,"y":1089.208,"z":930.925},"rot":{"x":356.823,"y":359.407,"z":21.147}},{"monsterId":0,"gadgetId":70540031,"configId":617012,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1066.835,"y":1016.234,"z":923.679},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":617011,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1064.239,"y":1015.059,"z":926.462},"rot":{"x":0.0,"y":72.134,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":617010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":919.377,"y":1022.09,"z":894.185},"rot":{"x":354.599,"y":335.885,"z":358.722}},{"monsterId":0,"gadgetId":70520001,"configId":617009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":916.373,"y":1022.176,"z":896.725},"rot":{"x":327.224,"y":357.285,"z":9.215}},{"monsterId":0,"gadgetId":70520001,"configId":617008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":919.536,"y":1022.506,"z":899.201},"rot":{"x":16.652,"y":93.447,"z":355.76}},{"monsterId":0,"gadgetId":70510012,"configId":617015,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1047.971,"y":840.604,"z":520.309},"rot":{"x":0.0,"y":127.801,"z":0.0}}]},{"sceneId":3,"groupId":166001618,"blockId":0,"pos":{"x":1012.365,"y":0.0,"z":661.723},"spawns":[{"monsterId":0,"gadgetId":70540032,"configId":618001,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1012.365,"y":909.968,"z":661.723},"rot":{"x":0.0,"y":350.839,"z":0.0}}]},{"sceneId":3,"groupId":166001619,"blockId":0,"pos":{"x":1026.7825,"y":0.0,"z":521.72424},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":619008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1055.825,"y":843.142,"z":537.701},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":619009,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1032.796,"y":844.179,"z":528.826},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":619010,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1009.333,"y":847.273,"z":506.075},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":619011,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1009.176,"y":844.753,"z":514.295},"rot":{"x":0.0,"y":116.459,"z":0.0}}]},{"sceneId":3,"groupId":133107160,"blockId":0,"pos":{"x":-885.941,"y":0.0,"z":905.02185},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":160017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-868.88,"y":193.024,"z":782.693},"rot":{"x":0.0,"y":187.946,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-890.335,"y":189.108,"z":803.912},"rot":{"x":0.0,"y":328.74,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":160010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-926.195,"y":205.055,"z":816.529},"rot":{"x":0.0,"y":291.32,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":160041,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-890.348,"y":188.51,"z":826.403},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":160040,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-889.521,"y":188.23,"z":824.011},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":160039,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-891.462,"y":187.219,"z":825.736},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-868.245,"y":201.942,"z":814.55},"rot":{"x":354.694,"y":359.893,"z":2.32}},{"monsterId":0,"gadgetId":70520009,"configId":160006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-815.043,"y":189.194,"z":814.333},"rot":{"x":0.0,"y":254.78,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-860.572,"y":198.003,"z":836.313},"rot":{"x":0.0,"y":187.184,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":160016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-870.758,"y":171.756,"z":873.989},"rot":{"x":0.0,"y":250.323,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-827.663,"y":173.483,"z":872.447},"rot":{"x":0.0,"y":15.04,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-828.06,"y":173.071,"z":872.251},"rot":{"x":0.0,"y":15.04,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-827.774,"y":172.785,"z":872.999},"rot":{"x":0.0,"y":15.04,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-785.69,"y":171.786,"z":880.09},"rot":{"x":0.0,"y":319.434,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-829.632,"y":174.823,"z":896.668},"rot":{"x":0.0,"y":116.295,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":160042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-775.021,"y":166.48,"z":906.519},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":160001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-966.267,"y":197.102,"z":782.038},"rot":{"x":0.0,"y":252.514,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-953.713,"y":211.001,"z":817.817},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-912.035,"y":181.372,"z":935.499},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-911.702,"y":181.784,"z":935.792},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-911.953,"y":181.086,"z":936.296},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-779.942,"y":174.348,"z":933.878},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-884.887,"y":189.213,"z":955.612},"rot":{"x":0.0,"y":279.831,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-865.574,"y":211.859,"z":969.851},"rot":{"x":0.0,"y":10.268,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-865.954,"y":211.447,"z":969.622},"rot":{"x":0.0,"y":10.268,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-865.731,"y":211.161,"z":970.392},"rot":{"x":0.0,"y":10.268,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":160012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-838.839,"y":214.389,"z":1004.125},"rot":{"x":0.0,"y":307.697,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":160007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1015.331,"y":241.283,"z":1019.683},"rot":{"x":0.0,"y":19.675,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-949.253,"y":207.447,"z":970.377},"rot":{"x":0.0,"y":278.191,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":160003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-980.411,"y":219.172,"z":912.299},"rot":{"x":0.0,"y":213.389,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":160011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-998.945,"y":195.514,"z":862.493},"rot":{"x":0.0,"y":103.954,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":160004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1022.269,"y":261.036,"z":768.576},"rot":{"x":0.0,"y":162.975,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-875.227,"y":210.261,"z":1013.951},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-875.56,"y":209.849,"z":1013.658},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":160023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-875.478,"y":209.563,"z":1014.455},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":160015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-889.003,"y":207.273,"z":1021.082},"rot":{"x":0.0,"y":149.84,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":160037,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-889.38,"y":212.927,"z":990.657},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":160036,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-888.553,"y":212.647,"z":988.265},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":160035,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-890.494,"y":211.637,"z":989.99},"rot":{"x":0.0,"y":265.0,"z":0.0}}]},{"sceneId":3,"groupId":166001628,"blockId":0,"pos":{"x":861.32825,"y":0.0,"z":740.2672},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":628004,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":859.306,"y":968.832,"z":737.842},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":628003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":864.615,"y":970.536,"z":738.542},"rot":{"x":0.0,"y":278.566,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":628001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":860.402,"y":969.41,"z":739.316},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":628002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":860.99,"y":971.441,"z":745.369},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001629,"blockId":0,"pos":{"x":783.34015,"y":0.0,"z":980.05975},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":629005,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":788.675,"y":942.074,"z":1018.872},"rot":{"x":0.0,"y":133.027,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":629004,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":784.32,"y":939.542,"z":1015.222},"rot":{"x":22.996,"y":287.302,"z":0.001}},{"monsterId":0,"gadgetId":70540031,"configId":629003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":786.413,"y":941.813,"z":1026.796},"rot":{"x":344.284,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":629002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":790.861,"y":943.129,"z":1022.99},"rot":{"x":0.0,"y":80.328,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":629001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":784.69,"y":942.747,"z":1028.885},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":629014,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":741.984,"y":927.314,"z":960.455},"rot":{"x":0.0,"y":86.631,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":629010,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":753.072,"y":926.203,"z":959.086},"rot":{"x":0.0,"y":209.651,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":629007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":799.256,"y":945.43,"z":921.945},"rot":{"x":348.127,"y":309.773,"z":338.754}},{"monsterId":0,"gadgetId":70520002,"configId":629008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":803.705,"y":945.95,"z":921.121},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":629006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":800.426,"y":944.335,"z":925.226},"rot":{"x":9.322,"y":56.759,"z":26.946}}]},{"sceneId":3,"groupId":166001631,"blockId":0,"pos":{"x":1072.7726,"y":0.0,"z":317.49866},"spawns":[{"monsterId":0,"gadgetId":70520038,"configId":631004,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":1110.736,"y":714.775,"z":361.143},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":631002,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":1065.347,"y":736.541,"z":301.525},"rot":{"x":1.179,"y":248.897,"z":355.228}},{"monsterId":0,"gadgetId":70520038,"configId":631001,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":1042.235,"y":735.978,"z":289.828},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133101010,"blockId":0,"pos":{"x":1384.4402,"y":0.0,"z":1325.4697},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":10007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1321.062,"y":228.124,"z":1297.573},"rot":{"x":0.0,"y":132.579,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":10004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1299.608,"y":281.178,"z":1320.933},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":10006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1477.789,"y":239.782,"z":1301.702},"rot":{"x":0.0,"y":162.838,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":10009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1439.302,"y":227.982,"z":1381.671},"rot":{"x":0.0,"y":24.634,"z":0.0}}]},{"sceneId":3,"groupId":166001625,"blockId":0,"pos":{"x":229.95343,"y":0.0,"z":748.658},"spawns":[{"monsterId":0,"gadgetId":70520038,"configId":625001,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":406.09,"y":180.476,"z":735.043},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":625002,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":404.795,"y":181.367,"z":771.132},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":625003,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":389.931,"y":183.417,"z":774.3},"rot":{"x":6.234,"y":359.485,"z":359.054}},{"monsterId":0,"gadgetId":70520038,"configId":625009,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":234.166,"y":157.071,"z":700.883},"rot":{"x":10.069,"y":0.323,"z":3.664}},{"monsterId":0,"gadgetId":70520038,"configId":625019,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":127.723,"y":145.84,"z":643.357},"rot":{"x":332.475,"y":85.294,"z":355.685}},{"monsterId":0,"gadgetId":70520038,"configId":625018,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":132.047,"y":147.173,"z":646.629},"rot":{"x":354.803,"y":359.36,"z":14.037}},{"monsterId":0,"gadgetId":70520038,"configId":625020,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":133.565,"y":145.489,"z":693.786},"rot":{"x":358.286,"y":0.001,"z":359.933}},{"monsterId":0,"gadgetId":70520038,"configId":625021,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":79.537,"y":143.64,"z":654.773},"rot":{"x":4.335,"y":359.466,"z":345.963}},{"monsterId":0,"gadgetId":70540031,"configId":625017,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":71.545,"y":146.687,"z":683.492},"rot":{"x":0.0,"y":279.682,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":625016,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":67.994,"y":147.505,"z":681.117},"rot":{"x":0.0,"y":91.477,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":625007,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":81.144,"y":146.538,"z":716.25},"rot":{"x":2.679,"y":0.084,"z":3.577}},{"monsterId":0,"gadgetId":70520038,"configId":625011,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":192.346,"y":146.924,"z":725.716},"rot":{"x":350.882,"y":252.969,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":625010,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":191.467,"y":146.921,"z":725.521},"rot":{"x":350.863,"y":35.473,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":625022,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":181.272,"y":153.642,"z":786.671},"rot":{"x":342.404,"y":2.315,"z":345.123}},{"monsterId":0,"gadgetId":70540031,"configId":625014,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":230.3,"y":146.967,"z":779.736},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":625015,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":228.501,"y":145.706,"z":782.491},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":625013,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":236.734,"y":146.386,"z":797.03},"rot":{"x":0.0,"y":158.387,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":625012,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":240.395,"y":146.246,"z":794.659},"rot":{"x":0.0,"y":54.017,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":625008,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":256.624,"y":157.037,"z":781.509},"rot":{"x":334.328,"y":1.626,"z":352.875}},{"monsterId":0,"gadgetId":70520038,"configId":625006,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":277.04,"y":161.614,"z":728.422},"rot":{"x":5.093,"y":334.549,"z":12.658}},{"monsterId":0,"gadgetId":70520038,"configId":625004,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":345.368,"y":175.372,"z":811.433},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":625005,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":288.118,"y":174.051,"z":824.283},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":625023,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":358.203,"y":179.376,"z":844.671},"rot":{"x":10.729,"y":335.128,"z":7.066}},{"monsterId":0,"gadgetId":70520038,"configId":625024,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":363.977,"y":184.371,"z":884.887},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133101011,"blockId":0,"pos":{"x":1400.1504,"y":0.0,"z":1168.064},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":11051,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1284.795,"y":247.749,"z":1157.178},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1284.462,"y":247.337,"z":1156.885},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1284.544,"y":247.051,"z":1157.682},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1283.957,"y":269.259,"z":1196.16},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1303.02,"y":223.201,"z":1102.372},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11016,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1322.795,"y":230.303,"z":1148.84},"rot":{"x":0.0,"y":0.0,"z":312.62}},{"monsterId":0,"gadgetId":70520005,"configId":11002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1319.695,"y":258.96,"z":1200.286},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1341.241,"y":208.814,"z":1065.528},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1338.924,"y":229.076,"z":1152.086},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1345.219,"y":233.418,"z":1174.638},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1313.776,"y":201.638,"z":1039.801},"rot":{"x":0.0,"y":80.353,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1316.448,"y":200.777,"z":1037.691},"rot":{"x":0.0,"y":229.98,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1350.703,"y":216.76,"z":1110.681},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1350.37,"y":216.348,"z":1110.388},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1350.452,"y":216.062,"z":1111.185},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1356.618,"y":232.676,"z":1163.824},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":11046,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1349.117,"y":238.263,"z":1183.761},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11017,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1349.074,"y":234.696,"z":1183.765},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1365.126,"y":234.669,"z":1187.005},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1363.385,"y":234.721,"z":1183.847},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":11045,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1349.117,"y":238.263,"z":1183.569},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11047,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1350.813,"y":235.73,"z":1195.761},"rot":{"x":59.101,"y":331.163,"z":311.212}},{"monsterId":0,"gadgetId":70520005,"configId":11041,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1352.183,"y":234.707,"z":1191.243},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1426.019,"y":225.494,"z":1157.627},"rot":{"x":346.835,"y":2.585,"z":337.873}},{"monsterId":0,"gadgetId":70520005,"configId":11034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1365.978,"y":229.864,"z":1221.563},"rot":{"x":0.0,"y":199.042,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1425.432,"y":230.286,"z":1230.297},"rot":{"x":0.0,"y":141.04,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1426.893,"y":229.902,"z":1235.25},"rot":{"x":0.0,"y":141.04,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1436.903,"y":220.481,"z":1143.14},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1435.962,"y":224.145,"z":1164.937},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1435.131,"y":222.534,"z":1155.345},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1434.591,"y":224.976,"z":1169.956},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1438.944,"y":224.23,"z":1171.205},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1432.489,"y":231.256,"z":1229.425},"rot":{"x":0.0,"y":141.04,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1454.432,"y":221.12,"z":1159.999},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1456.571,"y":222.721,"z":1171.497},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1483.294,"y":237.044,"z":1274.868},"rot":{"x":0.0,"y":217.288,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1507.104,"y":234.165,"z":1273.041},"rot":{"x":0.0,"y":228.233,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1506.468,"y":234.219,"z":1273.385},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1451.174,"y":219.511,"z":1143.89},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1484.546,"y":215.531,"z":1135.895},"rot":{"x":0.0,"y":56.382,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1519.579,"y":230.873,"z":1254.808},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1519.497,"y":231.159,"z":1254.011},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":11028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1519.83,"y":231.571,"z":1254.304},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1506.785,"y":209.682,"z":1120.971},"rot":{"x":0.0,"y":133.256,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11032,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1507.876,"y":205.577,"z":1099.809},"rot":{"x":0.0,"y":229.239,"z":328.153}},{"monsterId":0,"gadgetId":70520009,"configId":11031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1520.823,"y":204.47,"z":1095.204},"rot":{"x":0.0,"y":245.824,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":11033,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1484.913,"y":211.813,"z":1114.397},"rot":{"x":300.17,"y":192.751,"z":59.617}}]},{"sceneId":3,"groupId":133101008,"blockId":0,"pos":{"x":1580.2299,"y":0.0,"z":1155.3425},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":8006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1547.499,"y":224.004,"z":1233.388},"rot":{"x":0.0,"y":19.571,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1559.651,"y":227.129,"z":1267.926},"rot":{"x":0.0,"y":96.096,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1568.586,"y":227.602,"z":1272.345},"rot":{"x":354.66,"y":359.792,"z":4.467}},{"monsterId":0,"gadgetId":70540001,"configId":8011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1575.985,"y":206.988,"z":1162.937},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1575.652,"y":206.576,"z":1162.644},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1575.734,"y":206.29,"z":1163.441},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1606.167,"y":202.404,"z":1138.723},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8003,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1605.834,"y":201.992,"z":1138.43},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":8002,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1605.916,"y":201.706,"z":1139.227},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":8015,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1586.252,"y":200.016,"z":1109.451},"rot":{"x":0.0,"y":285.327,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":8013,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1603.59,"y":200.42,"z":1089.764},"rot":{"x":0.0,"y":333.812,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":8014,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1594.735,"y":200.445,"z":1073.695},"rot":{"x":0.0,"y":333.812,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":8012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1537.388,"y":200.787,"z":1067.482},"rot":{"x":0.0,"y":245.824,"z":0.0}}]},{"sceneId":3,"groupId":133101009,"blockId":0,"pos":{"x":1184.7228,"y":0.0,"z":1373.6006},"spawns":[{"monsterId":0,"gadgetId":70520008,"configId":9035,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":1033.987,"y":268.921,"z":1460.621},"rot":{"x":0.0,"y":3.033,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":9001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1207.849,"y":274.673,"z":1441.913},"rot":{"x":355.199,"y":342.363,"z":345.11}},{"monsterId":0,"gadgetId":70520001,"configId":9030,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1227.307,"y":273.493,"z":1497.85},"rot":{"x":0.0,"y":0.0,"z":121.896}},{"monsterId":0,"gadgetId":70540014,"configId":9005,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1241.598,"y":269.0,"z":1473.491},"rot":{"x":0.0,"y":199.321,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":9003,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1241.729,"y":269.0,"z":1470.243},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":9029,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1241.467,"y":272.94,"z":1504.746},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":9004,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1255.033,"y":269.0,"z":1459.72},"rot":{"x":0.0,"y":265.944,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":9002,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1253.499,"y":269.0,"z":1460.756},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":9031,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1265.376,"y":278.064,"z":1533.653},"rot":{"x":337.858,"y":354.467,"z":352.144}},{"monsterId":0,"gadgetId":70520009,"configId":9038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1045.77,"y":306.055,"z":1347.468},"rot":{"x":0.0,"y":223.064,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1041.912,"y":305.418,"z":1333.094},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1043.681,"y":313.562,"z":1395.689},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1045.08,"y":316.71,"z":1404.947},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1140.478,"y":266.577,"z":1294.381},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1149.021,"y":267.448,"z":1332.852},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1156.692,"y":290.912,"z":1363.684},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1156.61,"y":291.198,"z":1362.887},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1156.943,"y":291.61,"z":1363.18},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":9011,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1173.922,"y":267.328,"z":1337.172},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":9015,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1203.829,"y":303.23,"z":1287.907},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":9014,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1203.829,"y":303.23,"z":1287.716},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":9018,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1199.182,"y":301.498,"z":1290.204},"rot":{"x":0.0,"y":271.701,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":9017,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1199.374,"y":301.498,"z":1290.198},"rot":{"x":0.0,"y":271.701,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1198.163,"y":263.832,"z":1352.816},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1196.028,"y":264.121,"z":1357.479},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":9021,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1208.222,"y":302.261,"z":1281.417},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":9020,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":1208.222,"y":302.261,"z":1281.225},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1240.325,"y":265.866,"z":1346.728},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1265.559,"y":282.382,"z":1317.184},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1251.841,"y":289.469,"z":1361.538},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1273.881,"y":278.727,"z":1288.858},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133107119,"blockId":0,"pos":{"x":-111.16583,"y":0.0,"z":859.1688},"spawns":[{"monsterId":0,"gadgetId":70540004,"configId":119003,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3.616,"y":285.701,"z":816.686},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":119002,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3.616,"y":285.701,"z":816.494},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":119035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-200.143,"y":188.902,"z":811.085},"rot":{"x":0.0,"y":76.253,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":119022,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-195.519,"y":180.68,"z":824.109},"rot":{"x":0.0,"y":296.213,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":119026,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-235.036,"y":180.68,"z":855.806},"rot":{"x":0.0,"y":284.189,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":119046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-207.364,"y":183.69,"z":855.994},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":119045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-207.697,"y":183.278,"z":855.701},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":119044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-207.615,"y":182.992,"z":856.498},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":119028,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-245.266,"y":180.68,"z":880.095},"rot":{"x":0.0,"y":67.919,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":119034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-192.993,"y":185.23,"z":879.543},"rot":{"x":0.0,"y":273.403,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":119018,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-188.909,"y":180.68,"z":825.456},"rot":{"x":0.0,"y":299.998,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":119020,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-174.064,"y":180.68,"z":838.45},"rot":{"x":0.0,"y":42.285,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":119024,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-169.243,"y":180.68,"z":835.596},"rot":{"x":0.0,"y":243.328,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":119050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-144.557,"y":198.917,"z":815.817},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":119049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-144.89,"y":198.505,"z":815.524},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":119048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-144.808,"y":198.219,"z":816.321},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":119033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-138.895,"y":186.558,"z":881.582},"rot":{"x":0.0,"y":263.437,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":119038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-222.526,"y":187.163,"z":947.653},"rot":{"x":0.0,"y":103.149,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":119030,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-226.76,"y":180.68,"z":975.236},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":119032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-99.728,"y":210.249,"z":847.679},"rot":{"x":0.0,"y":351.243,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":119007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-83.761,"y":331.178,"z":775.621},"rot":{"x":15.749,"y":19.034,"z":7.658}},{"monsterId":0,"gadgetId":70520009,"configId":119037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-77.426,"y":246.147,"z":831.958},"rot":{"x":0.0,"y":321.14,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":119008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-55.452,"y":331.217,"z":778.143},"rot":{"x":358.811,"y":101.849,"z":14.093}},{"monsterId":0,"gadgetId":70540004,"configId":119006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-54.228,"y":300.343,"z":812.388},"rot":{"x":344.611,"y":0.373,"z":357.243}},{"monsterId":0,"gadgetId":70540004,"configId":119005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-54.229,"y":300.292,"z":812.203},"rot":{"x":344.611,"y":0.373,"z":357.243}},{"monsterId":0,"gadgetId":70520005,"configId":119009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-37.325,"y":321.85,"z":804.104},"rot":{"x":350.185,"y":271.154,"z":334.633}},{"monsterId":0,"gadgetId":70520005,"configId":119012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-38.349,"y":296.57,"z":899.994},"rot":{"x":1.043,"y":216.744,"z":6.282}},{"monsterId":0,"gadgetId":70520005,"configId":119016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-23.956,"y":272.047,"z":838.604},"rot":{"x":28.072,"y":99.721,"z":346.115}},{"monsterId":0,"gadgetId":70520005,"configId":119011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-25.701,"y":300.839,"z":867.033},"rot":{"x":23.672,"y":177.044,"z":346.151}},{"monsterId":0,"gadgetId":70520001,"configId":119014,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-11.242,"y":293.052,"z":882.323},"rot":{"x":332.724,"y":303.203,"z":343.315}},{"monsterId":0,"gadgetId":70520001,"configId":119013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-9.515,"y":292.257,"z":885.302},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":119010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1.428,"y":297.363,"z":868.91},"rot":{"x":351.996,"y":167.948,"z":3.772}},{"monsterId":0,"gadgetId":70520009,"configId":119036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-15.912,"y":291.733,"z":917.283},"rot":{"x":0.0,"y":329.813,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":119015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-11.847,"y":290.865,"z":915.927},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":119054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-86.312,"y":200.766,"z":949.304},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":119053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-86.645,"y":200.354,"z":949.011},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":119052,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-86.563,"y":200.068,"z":949.808},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133107118,"blockId":0,"pos":{"x":-121.02955,"y":0.0,"z":339.8536},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":118027,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-5.087,"y":271.279,"z":286.538},"rot":{"x":355.622,"y":0.44,"z":348.517}},{"monsterId":0,"gadgetId":70520006,"configId":118025,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-5.906,"y":271.442,"z":290.806},"rot":{"x":0.895,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":118024,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-10.011,"y":271.174,"z":292.773},"rot":{"x":4.463,"y":0.105,"z":2.684}},{"monsterId":0,"gadgetId":70520005,"configId":118023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-17.13,"y":270.966,"z":261.588},"rot":{"x":0.891,"y":0.042,"z":5.356}},{"monsterId":0,"gadgetId":70520006,"configId":118026,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-17.7,"y":271.197,"z":283.721},"rot":{"x":354.654,"y":359.833,"z":3.577}},{"monsterId":0,"gadgetId":70520005,"configId":118010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-27.639,"y":269.959,"z":298.054},"rot":{"x":1.194,"y":295.542,"z":359.578}},{"monsterId":0,"gadgetId":70520004,"configId":118013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-14.992,"y":277.161,"z":361.075},"rot":{"x":357.317,"y":359.958,"z":1.79}},{"monsterId":0,"gadgetId":70520009,"configId":118011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-42.694,"y":268.738,"z":267.249},"rot":{"x":7.095,"y":359.668,"z":354.644}},{"monsterId":0,"gadgetId":70520005,"configId":118009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-47.82,"y":269.461,"z":285.759},"rot":{"x":350.276,"y":0.38,"z":355.533}},{"monsterId":0,"gadgetId":70520009,"configId":118012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-66.871,"y":271.667,"z":294.219},"rot":{"x":359.021,"y":1.795,"z":2.654}},{"monsterId":0,"gadgetId":70520004,"configId":118008,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-64.412,"y":272.615,"z":314.481},"rot":{"x":344.286,"y":270.05,"z":5.144}},{"monsterId":0,"gadgetId":70520009,"configId":118016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-80.039,"y":272.415,"z":257.416},"rot":{"x":353.646,"y":5.266,"z":342.145}},{"monsterId":0,"gadgetId":70520009,"configId":118018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-88.443,"y":274.604,"z":288.114},"rot":{"x":8.127,"y":0.331,"z":339.673}},{"monsterId":0,"gadgetId":70520009,"configId":118017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-99.838,"y":278.968,"z":257.011},"rot":{"x":3.062,"y":1.875,"z":348.624}},{"monsterId":0,"gadgetId":70520004,"configId":118007,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-102.168,"y":286.349,"z":305.691},"rot":{"x":6.14,"y":92.327,"z":0.207}},{"monsterId":0,"gadgetId":70520004,"configId":118006,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-98.511,"y":280.072,"z":302.756},"rot":{"x":340.897,"y":7.039,"z":319.842}},{"monsterId":0,"gadgetId":70540001,"configId":118022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-121.178,"y":286.536,"z":293.117},"rot":{"x":344.292,"y":359.877,"z":0.895}},{"monsterId":0,"gadgetId":70540001,"configId":118021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-121.504,"y":286.055,"z":292.947},"rot":{"x":344.292,"y":359.877,"z":0.895}},{"monsterId":0,"gadgetId":70540001,"configId":118020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-121.42,"y":285.997,"z":293.792},"rot":{"x":344.292,"y":359.877,"z":0.895}},{"monsterId":0,"gadgetId":70540014,"configId":118002,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-138.022,"y":279.07,"z":263.654},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":118004,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-133.757,"y":279.07,"z":272.262},"rot":{"x":0.0,"y":102.002,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":118005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-159.288,"y":281.761,"z":259.262},"rot":{"x":0.0,"y":210.948,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":118038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-191.569,"y":484.376,"z":319.572},"rot":{"x":341.289,"y":357.589,"z":14.559}},{"monsterId":0,"gadgetId":70520009,"configId":118041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-187.324,"y":486.927,"z":338.239},"rot":{"x":4.228,"y":0.1,"z":2.702}},{"monsterId":0,"gadgetId":70520005,"configId":118037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-213.363,"y":439.206,"z":351.67},"rot":{"x":358.444,"y":359.963,"z":2.695}},{"monsterId":0,"gadgetId":70540001,"configId":118045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-215.626,"y":374.96,"z":398.283},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":118044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-215.959,"y":374.548,"z":397.99},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":118043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-215.877,"y":374.262,"z":398.787},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":118035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-199.344,"y":397.514,"z":395.634},"rot":{"x":353.572,"y":358.572,"z":25.025}},{"monsterId":0,"gadgetId":70520009,"configId":118039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-253.946,"y":399.758,"z":510.227},"rot":{"x":26.725,"y":6.31,"z":26.128}},{"monsterId":0,"gadgetId":70520005,"configId":118033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-251.023,"y":400.645,"z":511.468},"rot":{"x":20.146,"y":4.982,"z":27.519}},{"monsterId":0,"gadgetId":70520009,"configId":118040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-218.933,"y":408.895,"z":498.169},"rot":{"x":5.292,"y":0.411,"z":8.881}},{"monsterId":0,"gadgetId":70520005,"configId":118034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-227.414,"y":407.27,"z":505.597},"rot":{"x":4.459,"y":359.861,"z":356.424}},{"monsterId":0,"gadgetId":70520004,"configId":118030,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-137.047,"y":288.257,"z":478.037},"rot":{"x":1.474,"y":334.584,"z":346.664}},{"monsterId":0,"gadgetId":70520004,"configId":118029,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-124.179,"y":285.424,"z":468.919},"rot":{"x":354.04,"y":0.91,"z":342.645}}]},{"sceneId":3,"groupId":133008804,"blockId":0,"pos":{"x":1145.3176,"y":0.0,"z":-887.466},"spawns":[{"monsterId":0,"gadgetId":70590027,"configId":804003,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1148.692,"y":405.897,"z":-895.074},"rot":{"x":43.305,"y":298.242,"z":342.479}},{"monsterId":0,"gadgetId":70590027,"configId":804001,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1135.332,"y":401.802,"z":-889.68},"rot":{"x":344.994,"y":33.915,"z":351.139}},{"monsterId":0,"gadgetId":70590027,"configId":804002,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1151.929,"y":406.641,"z":-877.644},"rot":{"x":340.2,"y":15.689,"z":6.767}}]},{"sceneId":3,"groupId":166001583,"blockId":0,"pos":{"x":361.74298,"y":0.0,"z":1041.4495},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":583003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":365.069,"y":87.677,"z":1039.294},"rot":{"x":359.66,"y":13.441,"z":14.694}},{"monsterId":0,"gadgetId":70540031,"configId":583004,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":358.417,"y":89.248,"z":1043.605},"rot":{"x":359.185,"y":0.176,"z":335.622}}]},{"sceneId":3,"groupId":133008801,"blockId":0,"pos":{"x":631.6773,"y":0.0,"z":-893.79407},"spawns":[{"monsterId":0,"gadgetId":70590027,"configId":801012,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":639.384,"y":200.738,"z":-967.543},"rot":{"x":21.501,"y":14.441,"z":38.951}},{"monsterId":0,"gadgetId":70590027,"configId":801011,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":643.483,"y":201.488,"z":-967.0},"rot":{"x":28.922,"y":6.742,"z":335.138}},{"monsterId":0,"gadgetId":70590027,"configId":801010,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":640.252,"y":200.99,"z":-966.85},"rot":{"x":21.58,"y":358.65,"z":356.872}},{"monsterId":0,"gadgetId":70540028,"configId":801013,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":644.872,"y":200.292,"z":-911.629},"rot":{"x":17.028,"y":1.725,"z":11.483}},{"monsterId":0,"gadgetId":70590027,"configId":801014,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":641.164,"y":227.819,"z":-817.226},"rot":{"x":10.004,"y":13.276,"z":6.695}},{"monsterId":0,"gadgetId":70590027,"configId":801015,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":635.992,"y":224.812,"z":-810.469},"rot":{"x":3.368,"y":12.788,"z":34.422}},{"monsterId":0,"gadgetId":70540028,"configId":801007,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":625.084,"y":198.597,"z":-932.811},"rot":{"x":343.078,"y":353.366,"z":21.785}},{"monsterId":0,"gadgetId":70540028,"configId":801008,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":622.984,"y":198.874,"z":-926.132},"rot":{"x":0.0,"y":186.914,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":801006,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":618.139,"y":199.845,"z":-846.731},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":801009,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":605.419,"y":200.73,"z":-791.55},"rot":{"x":343.745,"y":186.304,"z":4.274}}]},{"sceneId":3,"groupId":133103011,"blockId":0,"pos":{"x":650.0104,"y":0.0,"z":1681.0714},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":11001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":736.842,"y":324.775,"z":1536.081},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":750.747,"y":321.41,"z":1543.55},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":760.635,"y":322.317,"z":1564.113},"rot":{"x":0.0,"y":7.064,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":674.082,"y":243.309,"z":1581.249},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":679.981,"y":243.45,"z":1583.699},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":653.788,"y":237.101,"z":1602.702},"rot":{"x":0.0,"y":223.411,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":620.885,"y":240.501,"z":1551.975},"rot":{"x":0.0,"y":112.217,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":728.096,"y":231.762,"z":1637.817},"rot":{"x":0.0,"y":277.609,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":11016,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":696.705,"y":318.008,"z":1783.489},"rot":{"x":0.0,"y":71.118,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":11014,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":704.307,"y":263.289,"z":1741.896},"rot":{"x":0.0,"y":83.812,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":11013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":693.352,"y":245.403,"z":1744.631},"rot":{"x":0.0,"y":91.513,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":11015,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":709.59,"y":312.001,"z":1746.485},"rot":{"x":0.0,"y":35.66,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":723.362,"y":276.588,"z":1737.657},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":11009,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":734.819,"y":278.134,"z":1733.751},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":685.082,"y":316.225,"z":1785.467},"rot":{"x":0.0,"y":46.982,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":713.597,"y":230.938,"z":1705.153},"rot":{"x":0.0,"y":19.371,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":664.223,"y":230.942,"z":1731.967},"rot":{"x":0.0,"y":149.228,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":650.457,"y":231.728,"z":1780.585},"rot":{"x":0.0,"y":337.522,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":671.472,"y":231.141,"z":1677.26},"rot":{"x":0.0,"y":102.061,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":590.663,"y":230.726,"z":1675.514},"rot":{"x":0.0,"y":273.632,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":11005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":590.13,"y":290.645,"z":1722.804},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":11004,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":590.13,"y":290.645,"z":1722.612},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":11008,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":606.967,"y":279.511,"z":1743.026},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":11007,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":606.967,"y":279.511,"z":1742.835},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":572.261,"y":234.394,"z":1735.313},"rot":{"x":0.0,"y":47.592,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":11022,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":550.541,"y":230.7,"z":1730.701},"rot":{"x":0.0,"y":68.443,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":11020,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":545.137,"y":230.7,"z":1720.611},"rot":{"x":0.0,"y":271.138,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":11018,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":534.721,"y":230.7,"z":1723.768},"rot":{"x":0.0,"y":82.741,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":545.342,"y":241.471,"z":1636.249},"rot":{"x":0.0,"y":144.321,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":11024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":592.447,"y":236.175,"z":1622.653},"rot":{"x":0.0,"y":101.389,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":11029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":572.994,"y":244.321,"z":1567.602},"rot":{"x":0.0,"y":70.311,"z":0.0}}]},{"sceneId":3,"groupId":166001578,"blockId":0,"pos":{"x":439.945,"y":0.0,"z":704.2765},"spawns":[{"monsterId":0,"gadgetId":70520038,"configId":578002,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":440.259,"y":191.383,"z":704.308},"rot":{"x":21.188,"y":1.334,"z":7.125}},{"monsterId":0,"gadgetId":70520038,"configId":578003,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":439.631,"y":191.226,"z":704.245},"rot":{"x":15.405,"y":290.231,"z":1.915}}]},{"sceneId":3,"groupId":133107105,"blockId":0,"pos":{"x":-127.21412,"y":0.0,"z":674.4926},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":105015,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-4.248,"y":241.681,"z":719.784},"rot":{"x":354.983,"y":0.91,"z":339.443}},{"monsterId":0,"gadgetId":70520005,"configId":105048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-6.933,"y":253.372,"z":733.757},"rot":{"x":0.0,"y":52.943,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":105010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-25.692,"y":227.994,"z":614.218},"rot":{"x":351.198,"y":220.38,"z":15.391}},{"monsterId":0,"gadgetId":70520001,"configId":105003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-29.37,"y":238.356,"z":655.178},"rot":{"x":328.161,"y":285.489,"z":346.81}},{"monsterId":0,"gadgetId":70520001,"configId":105002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-28.466,"y":236.746,"z":652.267},"rot":{"x":0.0,"y":0.0,"z":329.435}},{"monsterId":0,"gadgetId":70520009,"configId":105012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-18.202,"y":239.35,"z":685.258},"rot":{"x":340.841,"y":3.777,"z":337.889}},{"monsterId":0,"gadgetId":70520004,"configId":105014,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-26.801,"y":251.52,"z":711.985},"rot":{"x":351.853,"y":1.707,"z":336.369}},{"monsterId":0,"gadgetId":70520004,"configId":105013,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-26.528,"y":253.967,"z":722.542},"rot":{"x":344.141,"y":4.28,"z":329.965}},{"monsterId":0,"gadgetId":70520009,"configId":105049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-255.098,"y":265.196,"z":713.386},"rot":{"x":0.0,"y":185.479,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":105056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-242.95,"y":219.881,"z":747.999},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":105047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-219.38,"y":222.227,"z":746.885},"rot":{"x":0.0,"y":165.278,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":105057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-242.617,"y":220.293,"z":748.292},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":105055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-242.868,"y":219.595,"z":748.796},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":105053,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-193.184,"y":259.386,"z":706.693},"rot":{"x":0.0,"y":19.801,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":105046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-143.108,"y":254.193,"z":757.245},"rot":{"x":0.0,"y":320.433,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":105064,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-220.775,"y":403.854,"z":523.421},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":105063,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-221.108,"y":403.442,"z":523.128},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":105062,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-221.026,"y":403.156,"z":523.925},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":105029,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-179.273,"y":328.721,"z":649.157},"rot":{"x":22.698,"y":6.149,"z":10.568}},{"monsterId":0,"gadgetId":70520009,"configId":105060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-169.849,"y":365.751,"z":565.339},"rot":{"x":13.767,"y":358.609,"z":348.517}},{"monsterId":0,"gadgetId":70540004,"configId":105036,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-165.778,"y":371.721,"z":583.169},"rot":{"x":6.784,"y":358.345,"z":359.167}},{"monsterId":0,"gadgetId":70540004,"configId":105035,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-165.78,"y":371.713,"z":582.977},"rot":{"x":6.784,"y":358.345,"z":359.167}},{"monsterId":0,"gadgetId":70520005,"configId":105027,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-166.77,"y":339.554,"z":623.265},"rot":{"x":1.771,"y":0.244,"z":4.473}},{"monsterId":0,"gadgetId":70520004,"configId":105025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-122.796,"y":280.188,"z":517.937},"rot":{"x":7.944,"y":359.505,"z":352.875}},{"monsterId":0,"gadgetId":70520009,"configId":105033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-184.61,"y":316.617,"z":676.167},"rot":{"x":24.613,"y":358.991,"z":355.199}},{"monsterId":0,"gadgetId":70520005,"configId":105051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-160.69,"y":324.278,"z":660.945},"rot":{"x":0.0,"y":219.18,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":105030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-139.572,"y":332.116,"z":644.704},"rot":{"x":18.972,"y":0.065,"z":359.175}},{"monsterId":0,"gadgetId":70520005,"configId":105044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-112.865,"y":300.671,"z":701.027},"rot":{"x":0.0,"y":239.527,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":105001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-105.321,"y":261.786,"z":719.302},"rot":{"x":0.0,"y":0.0,"z":304.105}},{"monsterId":0,"gadgetId":70520005,"configId":105052,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-93.179,"y":331.299,"z":767.997},"rot":{"x":0.0,"y":310.598,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":105043,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-88.1,"y":287.896,"z":729.013},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":105042,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-88.1,"y":287.896,"z":728.821},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":105009,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-56.617,"y":278.801,"z":729.468},"rot":{"x":356.806,"y":0.197,"z":352.943}},{"monsterId":0,"gadgetId":70540004,"configId":105008,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-56.618,"y":278.79,"z":729.277},"rot":{"x":356.806,"y":0.197,"z":352.943}},{"monsterId":0,"gadgetId":70520005,"configId":105037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-28.221,"y":321.265,"z":763.917},"rot":{"x":25.859,"y":359.792,"z":357.502}}]},{"sceneId":3,"groupId":133107135,"blockId":0,"pos":{"x":-154.1916,"y":0.0,"z":159.13577},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":135022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-27.542,"y":262.353,"z":5.758},"rot":{"x":3.728,"y":283.382,"z":3.636}},{"monsterId":0,"gadgetId":70540001,"configId":135010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-20.823,"y":279.328,"z":230.401},"rot":{"x":19.776,"y":1.768,"z":10.176}},{"monsterId":0,"gadgetId":70540001,"configId":135009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-21.27,"y":279.55,"z":230.262},"rot":{"x":19.776,"y":1.768,"z":10.176}},{"monsterId":0,"gadgetId":70540001,"configId":135008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-21.179,"y":279.034,"z":230.871},"rot":{"x":19.776,"y":1.768,"z":10.176}},{"monsterId":0,"gadgetId":70520005,"configId":135040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-68.134,"y":304.539,"z":191.277},"rot":{"x":346.81,"y":0.104,"z":359.105}},{"monsterId":0,"gadgetId":70540001,"configId":135006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-86.984,"y":278.443,"z":242.525},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":135005,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-87.317,"y":278.031,"z":242.232},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":135004,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-87.235,"y":277.745,"z":243.029},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":135042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-114.921,"y":320.99,"z":192.366},"rot":{"x":356.601,"y":359.457,"z":18.167}},{"monsterId":0,"gadgetId":70540004,"configId":135065,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-158.468,"y":310.651,"z":184.396},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":135064,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-158.468,"y":310.651,"z":184.204},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":135045,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-111.148,"y":315.535,"z":175.117},"rot":{"x":11.968,"y":1.035,"z":9.85}},{"monsterId":0,"gadgetId":70540004,"configId":135044,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-111.151,"y":315.575,"z":174.929},"rot":{"x":11.968,"y":1.035,"z":9.85}},{"monsterId":0,"gadgetId":70520005,"configId":135038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-92.083,"y":312.957,"z":184.669},"rot":{"x":26.56,"y":357.998,"z":351.531}},{"monsterId":0,"gadgetId":70520005,"configId":135039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-77.598,"y":299.323,"z":170.078},"rot":{"x":24.092,"y":0.634,"z":2.969}},{"monsterId":0,"gadgetId":70520004,"configId":135061,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-189.002,"y":292.687,"z":216.789},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":135002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-184.07,"y":281.951,"z":229.226},"rot":{"x":11.997,"y":341.74,"z":359.759}},{"monsterId":0,"gadgetId":70520009,"configId":135062,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-201.909,"y":289.397,"z":189.931},"rot":{"x":0.0,"y":94.973,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":135001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-204.9,"y":275.761,"z":249.602},"rot":{"x":350.29,"y":212.766,"z":338.84}},{"monsterId":0,"gadgetId":70520005,"configId":135060,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-225.484,"y":257.055,"z":180.519},"rot":{"x":354.71,"y":358.02,"z":41.017}},{"monsterId":0,"gadgetId":70540021,"configId":135057,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-237.554,"y":266.898,"z":201.187},"rot":{"x":4.419,"y":1.41,"z":35.372}},{"monsterId":0,"gadgetId":70540021,"configId":135056,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-236.776,"y":267.332,"z":198.802},"rot":{"x":27.95,"y":319.803,"z":23.025}},{"monsterId":0,"gadgetId":70540021,"configId":135055,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-237.735,"y":265.258,"z":200.396},"rot":{"x":34.628,"y":262.226,"z":351.118}},{"monsterId":0,"gadgetId":70520005,"configId":135058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-210.486,"y":266.608,"z":18.935},"rot":{"x":0.0,"y":247.537,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":135059,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-199.576,"y":273.288,"z":46.651},"rot":{"x":11.622,"y":276.884,"z":26.668}},{"monsterId":0,"gadgetId":70520001,"configId":135048,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-156.34,"y":288.776,"z":65.489},"rot":{"x":19.736,"y":0.0,"z":334.47}},{"monsterId":0,"gadgetId":70520001,"configId":135047,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-154.664,"y":288.501,"z":67.92},"rot":{"x":7.491,"y":356.894,"z":337.399}},{"monsterId":0,"gadgetId":70520009,"configId":135035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-155.367,"y":298.48,"z":54.983},"rot":{"x":357.05,"y":269.596,"z":5.803}},{"monsterId":0,"gadgetId":70520004,"configId":135049,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-254.831,"y":240.736,"z":85.037},"rot":{"x":26.903,"y":2.077,"z":11.949}},{"monsterId":0,"gadgetId":70520004,"configId":135050,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-253.813,"y":238.926,"z":92.973},"rot":{"x":18.911,"y":6.141,"z":35.708}},{"monsterId":0,"gadgetId":70520009,"configId":135037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-197.662,"y":312.278,"z":96.915},"rot":{"x":346.882,"y":359.088,"z":7.919}},{"monsterId":0,"gadgetId":70520009,"configId":135036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-161.261,"y":312.388,"z":101.355},"rot":{"x":330.444,"y":4.51,"z":343.02}},{"monsterId":0,"gadgetId":70520004,"configId":135051,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-245.467,"y":236.907,"z":115.628},"rot":{"x":352.326,"y":67.043,"z":8.443}},{"monsterId":0,"gadgetId":70520004,"configId":135053,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-219.286,"y":240.0,"z":144.223},"rot":{"x":1.826,"y":158.996,"z":3.145}},{"monsterId":0,"gadgetId":70520004,"configId":135052,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-226.201,"y":238.664,"z":131.077},"rot":{"x":0.488,"y":85.924,"z":348.46}}]},{"sceneId":3,"groupId":133103038,"blockId":0,"pos":{"x":911.1496,"y":0.0,"z":1680.0652},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":38030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":853.515,"y":313.223,"z":1544.643},"rot":{"x":0.0,"y":55.946,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":825.294,"y":317.463,"z":1576.14},"rot":{"x":0.0,"y":316.355,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":794.195,"y":251.871,"z":1621.012},"rot":{"x":0.0,"y":253.933,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":38037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":846.735,"y":242.851,"z":1625.308},"rot":{"x":0.0,"y":31.153,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":871.113,"y":260.704,"z":1603.236},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":873.955,"y":260.157,"z":1606.463},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":38036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":913.936,"y":271.946,"z":1551.099},"rot":{"x":0.0,"y":156.466,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":38039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":966.983,"y":267.386,"z":1544.559},"rot":{"x":0.0,"y":351.587,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":38040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":953.168,"y":264.984,"z":1617.377},"rot":{"x":0.0,"y":260.561,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":38041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1017.586,"y":270.693,"z":1539.867},"rot":{"x":0.0,"y":297.024,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1023.614,"y":251.869,"z":1641.382},"rot":{"x":0.0,"y":229.632,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":38015,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":910.347,"y":230.7,"z":1685.286},"rot":{"x":0.0,"y":58.807,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":38013,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":911.21,"y":230.7,"z":1678.069},"rot":{"x":0.0,"y":268.666,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38043,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":955.225,"y":243.411,"z":1678.986},"rot":{"x":0.0,"y":102.308,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":38023,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":982.882,"y":230.7,"z":1678.418},"rot":{"x":0.0,"y":247.743,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":38021,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":996.537,"y":230.7,"z":1679.606},"rot":{"x":0.0,"y":201.006,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":38017,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":928.957,"y":230.7,"z":1707.332},"rot":{"x":0.0,"y":94.438,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":916.667,"y":301.092,"z":1720.807},"rot":{"x":0.0,"y":95.242,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":38027,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":881.394,"y":230.7,"z":1733.819},"rot":{"x":0.0,"y":104.847,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":38025,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":876.44,"y":230.7,"z":1728.87},"rot":{"x":0.0,"y":300.377,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":38019,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":929.692,"y":230.7,"z":1729.404},"rot":{"x":0.0,"y":334.583,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38011,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":955.092,"y":351.764,"z":1744.001},"rot":{"x":0.0,"y":113.963,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":956.862,"y":351.875,"z":1743.023},"rot":{"x":0.0,"y":160.529,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38008,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":955.467,"y":351.748,"z":1743.952},"rot":{"x":0.0,"y":296.682,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38009,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":955.452,"y":351.673,"z":1742.557},"rot":{"x":0.0,"y":318.343,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":955.389,"y":351.797,"z":1743.758},"rot":{"x":0.0,"y":210.229,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38004,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":955.334,"y":351.773,"z":1744.135},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":957.233,"y":351.942,"z":1743.233},"rot":{"x":0.0,"y":130.869,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":38007,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":956.645,"y":351.447,"z":1744.574},"rot":{"x":0.0,"y":244.444,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38034,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":842.923,"y":230.802,"z":1688.772},"rot":{"x":0.0,"y":231.004,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":38031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":829.239,"y":231.147,"z":1762.144},"rot":{"x":0.0,"y":306.404,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":38029,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":885.398,"y":230.7,"z":1782.284},"rot":{"x":0.0,"y":279.517,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":38032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":774.004,"y":230.722,"z":1712.214},"rot":{"x":0.0,"y":354.662,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":38001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":770.607,"y":302.699,"z":1735.88},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103039,"blockId":0,"pos":{"x":615.0076,"y":0.0,"z":1177.7594},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":39030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":525.073,"y":182.613,"z":1056.441},"rot":{"x":0.0,"y":91.989,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":39028,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":606.945,"y":276.244,"z":1067.065},"rot":{"x":0.0,"y":89.122,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":39004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":524.279,"y":176.15,"z":1139.523},"rot":{"x":0.0,"y":320.656,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":39003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":519.248,"y":174.649,"z":1135.129},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":39005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":539.744,"y":181.687,"z":1159.557},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":39002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":547.681,"y":182.144,"z":1156.025},"rot":{"x":0.0,"y":228.098,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":39001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":547.642,"y":182.041,"z":1153.044},"rot":{"x":0.0,"y":127.907,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":39029,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":540.098,"y":175.731,"z":1173.161},"rot":{"x":0.0,"y":205.908,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":39017,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":533.789,"y":174.543,"z":1187.899},"rot":{"x":0.0,"y":289.58,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":39016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":536.319,"y":174.263,"z":1187.877},"rot":{"x":0.0,"y":289.58,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":39015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":534.044,"y":173.253,"z":1186.626},"rot":{"x":0.0,"y":289.58,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":39013,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":587.762,"y":165.502,"z":1204.408},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":39012,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":590.764,"y":164.538,"z":1202.178},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":39024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":624.09,"y":185.059,"z":1205.299},"rot":{"x":0.0,"y":280.931,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":39026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":666.245,"y":164.052,"z":1118.835},"rot":{"x":0.0,"y":319.932,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":39021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":655.482,"y":185.072,"z":1124.208},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":39020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":655.149,"y":184.66,"z":1123.915},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":39019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":655.231,"y":184.374,"z":1124.712},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":39008,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":654.128,"y":169.654,"z":1141.408},"rot":{"x":0.0,"y":80.458,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":39027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":542.632,"y":284.348,"z":1248.332},"rot":{"x":0.0,"y":205.21,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":39011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":644.173,"y":196.282,"z":1260.071},"rot":{"x":0.0,"y":256.206,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":39010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":652.41,"y":196.1,"z":1252.793},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":39009,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":668.845,"y":162.66,"z":1121.303},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":39033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":613.917,"y":200.688,"z":1273.876},"rot":{"x":0.0,"y":357.714,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":39036,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":764.235,"y":177.141,"z":1246.677},"rot":{"x":6.168,"y":335.217,"z":3.903}},{"monsterId":0,"gadgetId":70520001,"configId":39035,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":764.596,"y":177.397,"z":1250.351},"rot":{"x":0.0,"y":335.007,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":39034,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":763.308,"y":177.823,"z":1256.831},"rot":{"x":346.771,"y":326.701,"z":8.549}},{"monsterId":0,"gadgetId":70520005,"configId":39025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":762.382,"y":173.041,"z":1219.717},"rot":{"x":359.166,"y":355.386,"z":356.782}}]},{"sceneId":3,"groupId":133007804,"blockId":0,"pos":{"x":2487.5374,"y":0.0,"z":185.36366},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":777,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2497.772,"y":208.443,"z":21.092},"rot":{"x":0.0,"y":53.392,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":778,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2519.6,"y":196.499,"z":250.95},"rot":{"x":0.0,"y":257.209,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":774,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":2445.24,"y":227.052,"z":284.049},"rot":{"x":0.0,"y":123.488,"z":0.0}}]},{"sceneId":3,"groupId":133007806,"blockId":0,"pos":{"x":2680.3242,"y":0.0,"z":181.05411},"spawns":[{"monsterId":0,"gadgetId":70540019,"configId":1033,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2541.395,"y":208.322,"z":84.111},"rot":{"x":0.0,"y":308.898,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1031,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2540.777,"y":209.459,"z":91.048},"rot":{"x":0.0,"y":248.837,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1030,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2543.972,"y":208.891,"z":88.998},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1029,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2533.615,"y":208.044,"z":-38.139},"rot":{"x":0.0,"y":308.898,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1027,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2537.936,"y":208.044,"z":-39.061},"rot":{"x":0.0,"y":248.837,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1028,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2539.606,"y":208.044,"z":-34.566},"rot":{"x":0.0,"y":270.9,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1026,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2541.241,"y":208.044,"z":-36.497},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1025,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2807.267,"y":207.214,"z":-18.152},"rot":{"x":0.0,"y":308.898,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1022,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2806.622,"y":207.215,"z":-16.939},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1024,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2806.109,"y":207.2,"z":-10.461},"rot":{"x":0.0,"y":316.878,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":996,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2617.154,"y":210.079,"z":279.577},"rot":{"x":0.0,"y":199.769,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":995,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2615.807,"y":210.209,"z":278.771},"rot":{"x":0.0,"y":313.774,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":994,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2617.353,"y":210.453,"z":282.966},"rot":{"x":0.0,"y":98.662,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":998,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2536.279,"y":206.032,"z":262.965},"rot":{"x":0.0,"y":4.83,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":997,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2541.562,"y":207.315,"z":264.522},"rot":{"x":0.0,"y":13.66,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1035,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2488.642,"y":208.482,"z":277.336},"rot":{"x":0.0,"y":279.5,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1036,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2498.28,"y":206.89,"z":295.437},"rot":{"x":0.0,"y":316.878,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1037,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2486.794,"y":208.482,"z":273.715},"rot":{"x":0.0,"y":308.898,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1034,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2485.936,"y":208.482,"z":274.77},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1001,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2556.155,"y":211.248,"z":344.95},"rot":{"x":0.0,"y":105.755,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1000,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2557.387,"y":210.805,"z":343.807},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":999,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2556.158,"y":210.999,"z":343.659},"rot":{"x":0.0,"y":66.6,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1005,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2617.086,"y":218.996,"z":427.015},"rot":{"x":0.0,"y":308.898,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1004,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2623.077,"y":218.484,"z":430.588},"rot":{"x":0.0,"y":316.878,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1003,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2618.624,"y":218.736,"z":428.488},"rot":{"x":0.0,"y":223.09,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1002,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2619.887,"y":218.846,"z":428.205},"rot":{"x":0.0,"y":2.61,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1017,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2938.316,"y":211.708,"z":164.085},"rot":{"x":0.0,"y":308.898,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1016,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2944.307,"y":211.932,"z":167.658},"rot":{"x":0.0,"y":316.878,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1015,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2942.637,"y":211.415,"z":163.163},"rot":{"x":0.0,"y":248.837,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1020,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2842.663,"y":213.882,"z":88.102},"rot":{"x":0.0,"y":316.878,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1018,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2847.487,"y":214.815,"z":89.164},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1013,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2893.137,"y":207.369,"z":184.231},"rot":{"x":0.0,"y":308.898,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1012,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2899.129,"y":208.1,"z":187.804},"rot":{"x":0.0,"y":44.4,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1011,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2897.459,"y":207.59,"z":183.309},"rot":{"x":0.0,"y":248.837,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1010,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2900.764,"y":207.95,"z":185.873},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1021,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2848.345,"y":215.005,"z":88.108},"rot":{"x":0.0,"y":308.898,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1019,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2850.193,"y":215.347,"z":91.729},"rot":{"x":0.0,"y":248.837,"z":0.0}},{"monsterId":0,"gadgetId":70540019,"configId":1023,"level":0,"poseId":0,"gatherItemId":100024,"pos":{"x":2813.167,"y":207.205,"z":-20.283},"rot":{"x":0.0,"y":248.837,"z":0.0}}]},{"sceneId":3,"groupId":133007801,"blockId":0,"pos":{"x":2881.0093,"y":0.0,"z":99.18943},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":313,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2748.289,"y":208.002,"z":104.089},"rot":{"x":0.0,"y":205.789,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":317,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2872.516,"y":206.74,"z":135.692},"rot":{"x":0.0,"y":92.02,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":319,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2920.627,"y":206.74,"z":101.577},"rot":{"x":0.0,"y":108.121,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":314,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2905.016,"y":210.694,"z":52.571},"rot":{"x":0.0,"y":274.798,"z":0.0}},{"monsterId":0,"gadgetId":70590013,"configId":318,"level":0,"poseId":0,"gatherItemId":100056,"pos":{"x":2862.278,"y":206.74,"z":52.171},"rot":{"x":0.0,"y":212.716,"z":0.0}},{"monsterId":0,"gadgetId":70510004,"configId":316,"level":0,"poseId":0,"gatherItemId":100055,"pos":{"x":2848.071,"y":211.013,"z":120.549},"rot":{"x":0.0,"y":311.185,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":315,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":3010.268,"y":215.659,"z":127.677},"rot":{"x":0.0,"y":314.406,"z":0.0}}]},{"sceneId":3,"groupId":133007802,"blockId":0,"pos":{"x":2587.782,"y":0.0,"z":256.05978},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":678,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2387.664,"y":242.61,"z":94.507},"rot":{"x":354.848,"y":323.517,"z":8.244}},{"monsterId":0,"gadgetId":70520003,"configId":679,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2410.068,"y":237.266,"z":159.21},"rot":{"x":0.0,"y":34.362,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":275,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2554.473,"y":206.969,"z":102.937},"rot":{"x":0.0,"y":103.353,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":273,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2615.439,"y":208.083,"z":33.729},"rot":{"x":0.0,"y":346.073,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":281,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2730.934,"y":203.389,"z":39.119},"rot":{"x":0.0,"y":37.814,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":279,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2751.288,"y":218.666,"z":144.258},"rot":{"x":0.0,"y":215.465,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":282,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2753.941,"y":218.683,"z":173.855},"rot":{"x":0.0,"y":358.99,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":278,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2689.287,"y":238.876,"z":221.233},"rot":{"x":0.0,"y":123.05,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":327,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2669.527,"y":211.45,"z":245.417},"rot":{"x":0.0,"y":76.391,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":276,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2595.699,"y":211.928,"z":210.576},"rot":{"x":0.0,"y":88.75,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":328,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2599.513,"y":209.046,"z":246.172},"rot":{"x":354.848,"y":323.517,"z":8.244}},{"monsterId":0,"gadgetId":70520003,"configId":280,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2477.523,"y":208.45,"z":213.703},"rot":{"x":0.0,"y":21.808,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":680,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2435.382,"y":221.487,"z":188.234},"rot":{"x":9.187,"y":28.027,"z":4.611}},{"monsterId":0,"gadgetId":70520003,"configId":681,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2429.641,"y":226.731,"z":256.064},"rot":{"x":9.187,"y":28.027,"z":4.611}},{"monsterId":0,"gadgetId":70520003,"configId":682,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2450.878,"y":223.44,"z":354.335},"rot":{"x":9.187,"y":28.027,"z":4.611}},{"monsterId":0,"gadgetId":70520003,"configId":917,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2515.264,"y":186.373,"z":348.708},"rot":{"x":0.0,"y":206.724,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":883,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2562.649,"y":201.281,"z":352.997},"rot":{"x":0.0,"y":204.006,"z":339.167}},{"monsterId":0,"gadgetId":70520003,"configId":330,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2577.327,"y":202.367,"z":364.967},"rot":{"x":0.0,"y":153.397,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":329,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2620.694,"y":186.357,"z":382.435},"rot":{"x":0.0,"y":124.737,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":331,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2542.992,"y":180.23,"z":426.335},"rot":{"x":0.0,"y":206.724,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":274,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2740.613,"y":226.069,"z":543.456},"rot":{"x":0.0,"y":345.466,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":277,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2820.404,"y":227.268,"z":531.068},"rot":{"x":0.0,"y":15.796,"z":0.0}}]},{"sceneId":3,"groupId":133105034,"blockId":0,"pos":{"x":683.1145,"y":0.0,"z":-732.63},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":34002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":654.926,"y":200.4,"z":-764.4},"rot":{"x":0.0,"y":288.968,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":34001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":711.303,"y":238.051,"z":-700.86},"rot":{"x":0.0,"y":143.884,"z":0.0}}]},{"sceneId":3,"groupId":133105033,"blockId":0,"pos":{"x":681.1073,"y":0.0,"z":-883.04663},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":33008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":729.282,"y":201.21,"z":-1017.668},"rot":{"x":0.0,"y":343.011,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":33004,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":733.843,"y":222.231,"z":-864.221},"rot":{"x":0.0,"y":45.236,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":33005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":689.757,"y":205.912,"z":-900.076},"rot":{"x":0.0,"y":99.809,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":33012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":700.61,"y":205.038,"z":-866.702},"rot":{"x":0.0,"y":123.045,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":33001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":680.327,"y":210.191,"z":-940.748},"rot":{"x":0.0,"y":89.573,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":33003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":686.509,"y":202.737,"z":-827.364},"rot":{"x":0.0,"y":239.239,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":33010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":675.471,"y":201.816,"z":-811.307},"rot":{"x":0.0,"y":244.689,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":33009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":651.844,"y":204.184,"z":-811.213},"rot":{"x":0.0,"y":256.326,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":33007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":644.962,"y":201.109,"z":-925.997},"rot":{"x":0.0,"y":216.643,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":33006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":631.376,"y":200.431,"z":-851.34},"rot":{"x":0.0,"y":232.622,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":33011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":686.389,"y":202.431,"z":-1003.112},"rot":{"x":0.0,"y":341.379,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":33002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":662.917,"y":201.469,"z":-776.811},"rot":{"x":0.0,"y":81.866,"z":0.0}}]},{"sceneId":3,"groupId":133212567,"blockId":0,"pos":{"x":-3857.849,"y":0.0,"z":-2100.3901},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":567009,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-3861.05,"y":212.236,"z":-2092.278},"rot":{"x":0.0,"y":48.454,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":567007,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-3854.648,"y":213.398,"z":-2108.502},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133105031,"blockId":0,"pos":{"x":902.4556,"y":0.0,"z":-867.3226},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":31007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1019.047,"y":408.81,"z":-1010.18},"rot":{"x":0.0,"y":333.497,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":31006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":798.392,"y":274.42,"z":-798.313},"rot":{"x":0.0,"y":164.073,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":31002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":889.928,"y":415.462,"z":-793.475},"rot":{"x":0.0,"y":76.415,"z":0.0}}]},{"sceneId":3,"groupId":133212570,"blockId":0,"pos":{"x":-3937.717,"y":0.0,"z":-2338.926},"spawns":[{"monsterId":0,"gadgetId":70520030,"configId":570077,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3906.015,"y":264.507,"z":-2314.542},"rot":{"x":0.0,"y":319.94,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570075,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3909.765,"y":263.928,"z":-2316.198},"rot":{"x":0.0,"y":254.83,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570073,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3903.488,"y":264.408,"z":-2317.562},"rot":{"x":0.0,"y":78.93,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570070,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3974.789,"y":261.908,"z":-2357.29},"rot":{"x":0.0,"y":14.25,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570072,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3979.832,"y":261.604,"z":-2336.972},"rot":{"x":0.0,"y":39.1,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570071,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3978.281,"y":262.268,"z":-2349.045},"rot":{"x":0.0,"y":263.45,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570079,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3952.352,"y":262.374,"z":-2380.367},"rot":{"x":0.0,"y":47.7,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570078,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3953.461,"y":262.34,"z":-2380.093},"rot":{"x":0.0,"y":99.75,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570076,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3896.88,"y":267.625,"z":-2336.32},"rot":{"x":0.0,"y":291.69,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570074,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3904.516,"y":262.736,"z":-2335.601},"rot":{"x":0.0,"y":225.89,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":570080,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3955.506,"y":262.527,"z":-2304.196},"rot":{"x":0.0,"y":11.95,"z":0.0}}]},{"sceneId":3,"groupId":133105028,"blockId":0,"pos":{"x":929.35785,"y":0.0,"z":-639.018},"spawns":[{"monsterId":0,"gadgetId":70520024,"configId":28013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1012.172,"y":349.943,"z":-650.8},"rot":{"x":0.0,"y":258.836,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28012,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":896.627,"y":324.582,"z":-574.75},"rot":{"x":325.313,"y":126.679,"z":5.783}},{"monsterId":0,"gadgetId":70520024,"configId":28003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1003.373,"y":343.993,"z":-586.319},"rot":{"x":0.0,"y":255.511,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":987.12,"y":342.569,"z":-564.664},"rot":{"x":0.0,"y":136.141,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":874.525,"y":323.662,"z":-533.055},"rot":{"x":0.0,"y":251.09,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28010,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":960.187,"y":389.587,"z":-712.618},"rot":{"x":0.0,"y":131.383,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28011,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":930.501,"y":341.101,"z":-621.574},"rot":{"x":0.0,"y":107.329,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":910.563,"y":376.917,"z":-697.767},"rot":{"x":0.0,"y":117.221,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":926.373,"y":366.676,"z":-685.226},"rot":{"x":0.0,"y":0.714,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":28006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":892.601,"y":429.359,"z":-758.471},"rot":{"x":0.0,"y":163.44,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":28002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":903.3,"y":336.735,"z":-622.914},"rot":{"x":339.64,"y":157.335,"z":20.978}},{"monsterId":0,"gadgetId":70540005,"configId":28008,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":854.953,"y":332.68,"z":-660.058},"rot":{"x":32.206,"y":292.84,"z":359.709}}]},{"sceneId":3,"groupId":133212572,"blockId":0,"pos":{"x":-3932.3704,"y":0.0,"z":-2147.548},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":572006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3975.161,"y":248.121,"z":-2182.06},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":572008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3919.867,"y":231.418,"z":-2141.956},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":572007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3902.084,"y":218.929,"z":-2118.628},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133105025,"blockId":0,"pos":{"x":84.94175,"y":0.0,"z":-26.5905},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":25001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":163.466,"y":204.088,"z":-7.452},"rot":{"x":0.0,"y":180.54,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":25004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":109.248,"y":204.984,"z":-6.065},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":25002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":58.022,"y":204.369,"z":-41.706},"rot":{"x":0.0,"y":180.54,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":25003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":9.031,"y":204.9,"z":-51.139},"rot":{"x":0.0,"y":293.315,"z":0.0}}]},{"sceneId":3,"groupId":133210526,"blockId":0,"pos":{"x":-3979.6797,"y":0.0,"z":-873.0367},"spawns":[{"monsterId":0,"gadgetId":71700324,"configId":526004,"level":0,"poseId":0,"gatherItemId":101596,"pos":{"x":-3971.514,"y":168.519,"z":-879.544},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":71700326,"configId":526006,"level":0,"poseId":0,"gatherItemId":101598,"pos":{"x":-3999.073,"y":173.075,"z":-892.161},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":71700325,"configId":526001,"level":0,"poseId":0,"gatherItemId":101597,"pos":{"x":-3968.452,"y":165.496,"z":-847.405},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133107103,"blockId":0,"pos":{"x":-596.60547,"y":0.0,"z":566.95776},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":103001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-597.092,"y":350.657,"z":562.533},"rot":{"x":347.028,"y":1.666,"z":345.427}},{"monsterId":0,"gadgetId":70520003,"configId":103002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-596.568,"y":350.866,"z":566.578},"rot":{"x":358.536,"y":0.64,"z":312.747}},{"monsterId":0,"gadgetId":70520019,"configId":103005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-595.433,"y":347.459,"z":569.658},"rot":{"x":344.048,"y":245.481,"z":358.667}},{"monsterId":0,"gadgetId":70520019,"configId":103004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-597.329,"y":349.981,"z":569.062},"rot":{"x":7.102,"y":66.665,"z":30.625}}]},{"sceneId":3,"groupId":133103006,"blockId":0,"pos":{"x":678.82416,"y":0.0,"z":1383.9954},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":6032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":714.454,"y":319.02,"z":1534.033},"rot":{"x":0.0,"y":156.012,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":578.819,"y":310.149,"z":1307.651},"rot":{"x":0.0,"y":117.532,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":6022,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":642.778,"y":194.217,"z":1294.094},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":6023,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":642.778,"y":194.217,"z":1294.286},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":708.053,"y":165.153,"z":1295.132},"rot":{"x":0.0,"y":193.91,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":6041,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":726.054,"y":141.414,"z":1292.463},"rot":{"x":324.752,"y":355.064,"z":344.019}},{"monsterId":0,"gadgetId":70520009,"configId":6006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":685.421,"y":212.784,"z":1316.362},"rot":{"x":0.0,"y":95.193,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":689.061,"y":213.637,"z":1319.269},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":719.771,"y":223.36,"z":1312.549},"rot":{"x":0.0,"y":50.067,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":719.333,"y":222.948,"z":1312.616},"rot":{"x":0.0,"y":50.067,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":719.996,"y":222.662,"z":1313.064},"rot":{"x":0.0,"y":50.067,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":6016,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":698.419,"y":219.352,"z":1339.791},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":6015,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":696.355,"y":222.159,"z":1341.852},"rot":{"x":0.0,"y":316.219,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":6014,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":698.608,"y":221.879,"z":1340.698},"rot":{"x":0.0,"y":316.219,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":6013,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":696.013,"y":220.869,"z":1340.6},"rot":{"x":0.0,"y":316.219,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":641.997,"y":262.649,"z":1363.443},"rot":{"x":0.0,"y":314.714,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":698.087,"y":298.387,"z":1376.703},"rot":{"x":0.0,"y":0.074,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":561.066,"y":352.039,"z":1398.37},"rot":{"x":0.0,"y":303.945,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":746.434,"y":227.416,"z":1345.733},"rot":{"x":0.0,"y":133.423,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":740.765,"y":294.463,"z":1406.094},"rot":{"x":0.0,"y":286.953,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":767.823,"y":233.239,"z":1284.626},"rot":{"x":15.263,"y":1.89,"z":14.037}},{"monsterId":0,"gadgetId":70520008,"configId":6010,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":760.279,"y":226.239,"z":1303.109},"rot":{"x":0.0,"y":210.66,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":6008,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":750.698,"y":225.901,"z":1330.372},"rot":{"x":0.0,"y":210.66,"z":0.0}},{"monsterId":0,"gadgetId":70520008,"configId":6007,"level":0,"poseId":0,"gatherItemId":100015,"pos":{"x":755.786,"y":225.771,"z":1333.604},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":757.895,"y":290.797,"z":1401.717},"rot":{"x":0.0,"y":107.427,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":624.16,"y":293.448,"z":1423.529},"rot":{"x":0.0,"y":217.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":729.168,"y":334.81,"z":1469.027},"rot":{"x":0.0,"y":337.577,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":678.287,"y":295.694,"z":1429.605},"rot":{"x":0.0,"y":315.007,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":738.741,"y":320.702,"z":1530.354},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":735.968,"y":323.964,"z":1532.619},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":646.02,"y":297.249,"z":1480.539},"rot":{"x":0.0,"y":23.697,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":556.559,"y":248.642,"z":1531.215},"rot":{"x":0.0,"y":22.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":557.895,"y":248.458,"z":1528.559},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":596.491,"y":247.524,"z":1506.486},"rot":{"x":0.0,"y":274.762,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":533.635,"y":292.834,"z":1475.823},"rot":{"x":0.0,"y":213.851,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":524.004,"y":369.542,"z":1417.85},"rot":{"x":0.0,"y":72.988,"z":0.0}}]},{"sceneId":3,"groupId":133105055,"blockId":0,"pos":{"x":816.558,"y":0.0,"z":-106.2},"spawns":[{"monsterId":0,"gadgetId":70540026,"configId":55014,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":816.558,"y":242.923,"z":-106.2},"rot":{"x":0.0,"y":53.9,"z":0.0}}]},{"sceneId":3,"groupId":133107102,"blockId":0,"pos":{"x":-549.64825,"y":0.0,"z":577.447},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":102005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-557.907,"y":342.107,"z":577.79},"rot":{"x":349.38,"y":79.469,"z":338.044}},{"monsterId":0,"gadgetId":70520003,"configId":102001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-555.063,"y":343.256,"z":578.884},"rot":{"x":340.226,"y":357.098,"z":16.536}},{"monsterId":0,"gadgetId":70520003,"configId":102002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-543.616,"y":343.515,"z":577.937},"rot":{"x":322.724,"y":357.893,"z":6.242}},{"monsterId":0,"gadgetId":70520019,"configId":102004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-542.007,"y":341.726,"z":575.177},"rot":{"x":345.534,"y":72.022,"z":334.56}}]},{"sceneId":3,"groupId":166001554,"blockId":0,"pos":{"x":506.81897,"y":0.0,"z":737.99097},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":554003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":503.347,"y":370.876,"z":738.097},"rot":{"x":0.0,"y":41.115,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":554002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":510.291,"y":369.763,"z":737.885},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133210502,"blockId":0,"pos":{"x":-3704.506,"y":0.0,"z":-842.0153},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":502003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3703.759,"y":113.483,"z":-844.689},"rot":{"x":352.92,"y":220.207,"z":358.78}},{"monsterId":0,"gadgetId":70590036,"configId":502002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3704.129,"y":112.416,"z":-842.087},"rot":{"x":7.091,"y":78.727,"z":357.621}},{"monsterId":0,"gadgetId":70590036,"configId":502001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3705.631,"y":112.427,"z":-839.27},"rot":{"x":357.215,"y":120.58,"z":7.0}}]},{"sceneId":3,"groupId":133210503,"blockId":0,"pos":{"x":-3819.7556,"y":0.0,"z":-887.476},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":503003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3820.146,"y":107.921,"z":-891.024},"rot":{"x":10.566,"y":221.247,"z":7.99}},{"monsterId":0,"gadgetId":70590036,"configId":503002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3820.982,"y":108.163,"z":-887.116},"rot":{"x":352.583,"y":78.034,"z":7.871}},{"monsterId":0,"gadgetId":70590036,"configId":503001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3818.139,"y":107.935,"z":-884.288},"rot":{"x":5.627,"y":121.424,"z":4.468}}]},{"sceneId":3,"groupId":133106024,"blockId":0,"pos":{"x":-623.7832,"y":0.0,"z":1645.6317},"spawns":[{"monsterId":0,"gadgetId":70540029,"configId":24033,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-725.398,"y":276.34,"z":1547.399},"rot":{"x":12.618,"y":1.376,"z":3.737}},{"monsterId":0,"gadgetId":70540029,"configId":24034,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-726.988,"y":276.501,"z":1545.066},"rot":{"x":9.946,"y":0.987,"z":347.086}},{"monsterId":0,"gadgetId":70540004,"configId":24012,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-723.331,"y":276.928,"z":1547.027},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-717.005,"y":159.236,"z":1576.504},"rot":{"x":0.895,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-717.338,"y":158.824,"z":1576.211},"rot":{"x":0.895,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-717.256,"y":158.538,"z":1577.008},"rot":{"x":0.895,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-708.408,"y":157.821,"z":1569.125},"rot":{"x":10.211,"y":307.589,"z":351.209}},{"monsterId":0,"gadgetId":70540029,"configId":24018,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-708.743,"y":169.73,"z":1593.023},"rot":{"x":343.48,"y":5.961,"z":334.933}},{"monsterId":0,"gadgetId":70520002,"configId":24008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-607.369,"y":159.852,"z":1751.963},"rot":{"x":354.803,"y":359.36,"z":14.037}},{"monsterId":0,"gadgetId":70520002,"configId":24009,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-606.207,"y":160.489,"z":1753.483},"rot":{"x":347.583,"y":234.686,"z":3.385}},{"monsterId":0,"gadgetId":70540001,"configId":24066,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-536.527,"y":186.684,"z":1737.389},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24065,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-536.86,"y":186.272,"z":1737.096},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24064,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-536.778,"y":185.986,"z":1737.893},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24068,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-534.761,"y":183.534,"z":1728.352},"rot":{"x":346.004,"y":0.549,"z":355.533}},{"monsterId":0,"gadgetId":70520004,"configId":24069,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-530.899,"y":183.641,"z":1742.495},"rot":{"x":355.846,"y":0.07,"z":358.061}},{"monsterId":0,"gadgetId":70520005,"configId":24067,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-523.002,"y":182.69,"z":1734.509},"rot":{"x":11.152,"y":357.723,"z":347.425}},{"monsterId":0,"gadgetId":70520018,"configId":24062,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":-516.283,"y":179.579,"z":1730.92},"rot":{"x":0.0,"y":0.0,"z":299.898}},{"monsterId":0,"gadgetId":70520018,"configId":24061,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":-520.797,"y":180.918,"z":1742.843},"rot":{"x":352.216,"y":10.155,"z":307.099}},{"monsterId":0,"gadgetId":70520018,"configId":24060,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":-515.917,"y":179.803,"z":1732.42},"rot":{"x":309.377,"y":290.2,"z":318.604}},{"monsterId":0,"gadgetId":70520005,"configId":24044,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-582.761,"y":142.425,"z":1690.451},"rot":{"x":7.182,"y":11.189,"z":9.479}},{"monsterId":0,"gadgetId":70520009,"configId":24070,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-556.894,"y":170.96,"z":1703.227},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24050,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-540.936,"y":168.42,"z":1671.521},"rot":{"x":343.618,"y":39.692,"z":3.328}},{"monsterId":0,"gadgetId":70520004,"configId":24049,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-542.588,"y":168.082,"z":1670.56},"rot":{"x":313.143,"y":1.172,"z":357.296}},{"monsterId":0,"gadgetId":70520003,"configId":24006,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-577.192,"y":148.673,"z":1650.478},"rot":{"x":343.125,"y":78.681,"z":12.727}},{"monsterId":0,"gadgetId":70540001,"configId":24059,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-569.912,"y":179.598,"z":1637.385},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24058,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-570.245,"y":179.186,"z":1637.092},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-570.163,"y":178.9,"z":1637.889},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":24052,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-562.519,"y":176.591,"z":1634.424},"rot":{"x":21.57,"y":173.132,"z":-0.001}},{"monsterId":0,"gadgetId":70540026,"configId":24051,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-562.381,"y":174.895,"z":1626.588},"rot":{"x":0.0,"y":153.686,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":24002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-557.791,"y":147.954,"z":1608.254},"rot":{"x":0.0,"y":334.73,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":24048,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-544.437,"y":173.316,"z":1616.818},"rot":{"x":331.762,"y":358.445,"z":6.178}},{"monsterId":0,"gadgetId":70520004,"configId":24047,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-545.506,"y":172.456,"z":1618.258},"rot":{"x":1.39,"y":0.943,"z":19.139}},{"monsterId":0,"gadgetId":70520005,"configId":24054,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-573.641,"y":175.674,"z":1621.298},"rot":{"x":0.0,"y":0.0,"z":17.779}},{"monsterId":0,"gadgetId":70520005,"configId":24053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-576.58,"y":175.007,"z":1621.66},"rot":{"x":0.0,"y":0.0,"z":354.126}},{"monsterId":0,"gadgetId":70520002,"configId":24007,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-578.917,"y":149.46,"z":1644.464},"rot":{"x":29.167,"y":351.947,"z":348.34}},{"monsterId":0,"gadgetId":70520003,"configId":24005,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-580.961,"y":149.312,"z":1642.224},"rot":{"x":27.137,"y":69.062,"z":30.221}},{"monsterId":0,"gadgetId":70520001,"configId":24004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-577.116,"y":149.572,"z":1645.935},"rot":{"x":335.79,"y":58.293,"z":22.824}},{"monsterId":0,"gadgetId":70520001,"configId":24003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-578.739,"y":149.841,"z":1642.41},"rot":{"x":34.267,"y":5.151,"z":16.603}},{"monsterId":0,"gadgetId":70520009,"configId":24055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-589.774,"y":170.531,"z":1593.896},"rot":{"x":358.77,"y":359.852,"z":13.751}},{"monsterId":0,"gadgetId":70520004,"configId":24078,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-522.966,"y":186.304,"z":1588.343},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24077,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-546.379,"y":183.504,"z":1581.788},"rot":{"x":357.14,"y":359.873,"z":9.399}},{"monsterId":0,"gadgetId":70540029,"configId":24073,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-540.696,"y":211.209,"z":1579.909},"rot":{"x":359.83,"y":359.989,"z":7.275}},{"monsterId":0,"gadgetId":70540001,"configId":24043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-628.506,"y":154.989,"z":1607.937},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-628.839,"y":154.577,"z":1607.644},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":24011,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-616.078,"y":154.416,"z":1603.835},"rot":{"x":356.763,"y":228.053,"z":332.23}},{"monsterId":0,"gadgetId":70520003,"configId":24010,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-614.687,"y":154.62,"z":1603.608},"rot":{"x":24.695,"y":310.742,"z":343.817}},{"monsterId":0,"gadgetId":70540001,"configId":24041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-628.757,"y":154.291,"z":1608.441},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":24046,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-627.572,"y":186.634,"z":1554.153},"rot":{"x":338.48,"y":2.745,"z":345.627}},{"monsterId":0,"gadgetId":70520009,"configId":24074,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-580.71,"y":185.251,"z":1557.896},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":24075,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-553.558,"y":210.333,"z":1555.801},"rot":{"x":3.65,"y":0.44,"z":13.742}},{"monsterId":0,"gadgetId":70520005,"configId":24076,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-522.051,"y":208.311,"z":1558.497},"rot":{"x":4.672,"y":0.628,"z":15.299}},{"monsterId":0,"gadgetId":70520003,"configId":24072,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-640.059,"y":159.935,"z":1577.545},"rot":{"x":13.716,"y":236.295,"z":337.824}},{"monsterId":0,"gadgetId":70520003,"configId":24071,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-639.585,"y":160.217,"z":1576.13},"rot":{"x":19.104,"y":315.282,"z":2.408}},{"monsterId":0,"gadgetId":70520005,"configId":24001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-635.475,"y":157.632,"z":1586.472},"rot":{"x":16.911,"y":300.611,"z":347.187}},{"monsterId":0,"gadgetId":70540029,"configId":24045,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-657.812,"y":176.564,"z":1571.307},"rot":{"x":358.919,"y":0.293,"z":329.664}},{"monsterId":0,"gadgetId":70520009,"configId":24027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-663.179,"y":137.068,"z":1645.39},"rot":{"x":344.306,"y":359.087,"z":1.109}},{"monsterId":0,"gadgetId":70520009,"configId":24026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-663.907,"y":136.736,"z":1638.683},"rot":{"x":9.748,"y":0.301,"z":0.933}},{"monsterId":0,"gadgetId":70520009,"configId":24025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-666.906,"y":136.21,"z":1639.759},"rot":{"x":7.635,"y":2.936,"z":7.456}},{"monsterId":0,"gadgetId":70540001,"configId":24016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-660.687,"y":157.256,"z":1669.814},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-661.02,"y":156.844,"z":1669.521},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":24014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-660.938,"y":156.558,"z":1670.318},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":24024,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-702.488,"y":134.004,"z":1624.21},"rot":{"x":13.826,"y":2.714,"z":22.111}},{"monsterId":0,"gadgetId":70520003,"configId":24022,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-695.416,"y":136.051,"z":1627.815},"rot":{"x":17.989,"y":257.412,"z":326.461}},{"monsterId":0,"gadgetId":70520001,"configId":24021,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-702.59,"y":133.479,"z":1627.063},"rot":{"x":357.088,"y":0.312,"z":347.784}},{"monsterId":0,"gadgetId":70520003,"configId":24023,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-700.938,"y":133.313,"z":1630.673},"rot":{"x":2.372,"y":110.901,"z":356.006}},{"monsterId":0,"gadgetId":70520003,"configId":24020,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-693.998,"y":135.381,"z":1630.772},"rot":{"x":28.689,"y":18.024,"z":63.614}},{"monsterId":0,"gadgetId":70520001,"configId":24019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-704.409,"y":132.323,"z":1630.968},"rot":{"x":8.483,"y":1.297,"z":17.355}},{"monsterId":0,"gadgetId":70540029,"configId":24017,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-692.1,"y":155.47,"z":1653.454},"rot":{"x":3.643,"y":0.761,"z":23.6}},{"monsterId":0,"gadgetId":70520005,"configId":24079,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-755.097,"y":104.671,"z":1707.964},"rot":{"x":3.57,"y":359.889,"z":356.424}},{"monsterId":0,"gadgetId":70520005,"configId":24080,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-750.076,"y":105.902,"z":1696.328},"rot":{"x":13.957,"y":359.235,"z":353.758}},{"monsterId":0,"gadgetId":70540026,"configId":24032,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-767.665,"y":117.803,"z":1775.511},"rot":{"x":0.0,"y":224.995,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":24031,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-767.416,"y":117.24,"z":1772.11},"rot":{"x":0.0,"y":138.954,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":24030,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-748.801,"y":136.463,"z":1771.944},"rot":{"x":341.686,"y":11.877,"z":20.341}},{"monsterId":0,"gadgetId":70540029,"configId":24029,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-746.887,"y":134.036,"z":1770.66},"rot":{"x":340.213,"y":359.97,"z":336.885}},{"monsterId":0,"gadgetId":70540029,"configId":24028,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-746.573,"y":133.489,"z":1774.572},"rot":{"x":353.315,"y":3.81,"z":7.45}}]},{"sceneId":3,"groupId":133106023,"blockId":0,"pos":{"x":-887.32306,"y":0.0,"z":1694.2274},"spawns":[{"monsterId":0,"gadgetId":70540026,"configId":23030,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-817.956,"y":265.905,"z":1542.893},"rot":{"x":0.0,"y":140.69,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":23027,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-835.355,"y":262.95,"z":1548.695},"rot":{"x":0.0,"y":123.096,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-800.819,"y":264.836,"z":1550.331},"rot":{"x":0.0,"y":0.0,"z":343.418}},{"monsterId":0,"gadgetId":70520005,"configId":23003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-868.651,"y":198.853,"z":1583.146},"rot":{"x":0.0,"y":353.102,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":23078,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-850.558,"y":229.979,"z":1576.027},"rot":{"x":0.0,"y":89.641,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23098,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-876.272,"y":277.964,"z":1541.912},"rot":{"x":5.452,"y":292.181,"z":336.518}},{"monsterId":0,"gadgetId":70520009,"configId":23047,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-832.289,"y":155.879,"z":1627.056},"rot":{"x":5.467,"y":359.508,"z":349.722}},{"monsterId":0,"gadgetId":70520005,"configId":23020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-790.651,"y":128.024,"z":1616.75},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-782.736,"y":127.924,"z":1613.212},"rot":{"x":0.0,"y":254.095,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-835.161,"y":155.656,"z":1633.915},"rot":{"x":6.873,"y":359.431,"z":350.539}},{"monsterId":0,"gadgetId":70520002,"configId":23004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-841.282,"y":130.136,"z":1635.205},"rot":{"x":331.305,"y":253.872,"z":340.214}},{"monsterId":0,"gadgetId":70520002,"configId":23006,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-838.678,"y":129.918,"z":1634.377},"rot":{"x":53.799,"y":32.675,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":23051,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-820.168,"y":152.884,"z":1641.666},"rot":{"x":351.919,"y":288.019,"z":23.372}},{"monsterId":0,"gadgetId":70520003,"configId":23050,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-816.971,"y":152.632,"z":1639.572},"rot":{"x":48.766,"y":352.197,"z":10.074}},{"monsterId":0,"gadgetId":70520003,"configId":23049,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-817.028,"y":152.256,"z":1643.98},"rot":{"x":346.727,"y":349.443,"z":30.448}},{"monsterId":0,"gadgetId":70540026,"configId":23019,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-797.067,"y":181.843,"z":1642.933},"rot":{"x":0.0,"y":175.858,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":23018,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-801.571,"y":178.075,"z":1630.165},"rot":{"x":0.0,"y":262.941,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":23017,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-783.166,"y":165.646,"z":1632.195},"rot":{"x":0.0,"y":116.207,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23095,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-918.8,"y":273.86,"z":1564.237},"rot":{"x":359.628,"y":283.298,"z":335.787}},{"monsterId":0,"gadgetId":70520005,"configId":23001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-918.101,"y":220.343,"z":1621.137},"rot":{"x":0.0,"y":129.966,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-861.347,"y":160.128,"z":1654.302},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-861.68,"y":159.716,"z":1654.01},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-861.598,"y":159.43,"z":1654.807},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":23005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-843.012,"y":127.654,"z":1665.053},"rot":{"x":0.0,"y":279.715,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-808.44,"y":127.123,"z":1658.431},"rot":{"x":5.279,"y":0.451,"z":355.942}},{"monsterId":0,"gadgetId":70520009,"configId":23024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-807.104,"y":127.191,"z":1660.605},"rot":{"x":352.118,"y":358.485,"z":4.48}},{"monsterId":0,"gadgetId":70540026,"configId":23060,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-924.669,"y":202.772,"z":1680.882},"rot":{"x":0.0,"y":139.771,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":23033,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-917.188,"y":179.414,"z":1685.371},"rot":{"x":14.06,"y":353.451,"z":318.233}},{"monsterId":0,"gadgetId":70520003,"configId":23032,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-913.586,"y":179.715,"z":1678.842},"rot":{"x":19.922,"y":283.763,"z":342.295}},{"monsterId":0,"gadgetId":70520002,"configId":23007,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-837.223,"y":127.352,"z":1670.683},"rot":{"x":359.872,"y":84.927,"z":358.508}},{"monsterId":0,"gadgetId":70520002,"configId":23008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-834.633,"y":126.545,"z":1669.347},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23099,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-936.113,"y":265.601,"z":1586.912},"rot":{"x":23.784,"y":347.918,"z":351.051}},{"monsterId":0,"gadgetId":70520009,"configId":23059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-947.261,"y":210.691,"z":1651.677},"rot":{"x":359.546,"y":0.914,"z":355.657}},{"monsterId":0,"gadgetId":70520009,"configId":23058,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-944.258,"y":211.398,"z":1649.667},"rot":{"x":23.524,"y":358.953,"z":354.975}},{"monsterId":0,"gadgetId":70540026,"configId":23057,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-908.735,"y":171.18,"z":1694.47},"rot":{"x":348.055,"y":130.986,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-886.105,"y":160.501,"z":1706.643},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-886.438,"y":160.089,"z":1706.35},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-886.356,"y":159.803,"z":1707.147},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23096,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-973.44,"y":261.209,"z":1613.866},"rot":{"x":351.279,"y":261.077,"z":338.166}},{"monsterId":0,"gadgetId":70540029,"configId":23026,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-982.045,"y":249.79,"z":1687.192},"rot":{"x":354.485,"y":0.371,"z":352.316}},{"monsterId":0,"gadgetId":70510012,"configId":23067,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-973.233,"y":231.851,"z":1715.356},"rot":{"x":0.0,"y":92.774,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":23065,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-968.339,"y":229.926,"z":1723.524},"rot":{"x":0.0,"y":296.975,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":23069,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-971.182,"y":230.92,"z":1724.592},"rot":{"x":0.0,"y":308.321,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23063,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-957.549,"y":226.859,"z":1720.651},"rot":{"x":1.178,"y":354.278,"z":11.28}},{"monsterId":0,"gadgetId":70540026,"configId":23034,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-902.234,"y":165.383,"z":1708.016},"rot":{"x":0.0,"y":146.007,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":23037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-877.102,"y":138.474,"z":1722.615},"rot":{"x":1.741,"y":0.0,"z":359.987}},{"monsterId":0,"gadgetId":70520009,"configId":23036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-876.469,"y":138.446,"z":1723.525},"rot":{"x":0.566,"y":289.405,"z":358.354}},{"monsterId":0,"gadgetId":70520009,"configId":23035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-876.387,"y":138.591,"z":1710.844},"rot":{"x":1.222,"y":359.976,"z":357.731}},{"monsterId":0,"gadgetId":70540001,"configId":23015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-844.708,"y":121.95,"z":1718.583},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-845.041,"y":121.538,"z":1718.29},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-844.959,"y":121.252,"z":1719.087},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23097,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1002.955,"y":257.768,"z":1691.366},"rot":{"x":26.676,"y":54.1,"z":13.285}},{"monsterId":0,"gadgetId":70540026,"configId":23076,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-1009.858,"y":260.899,"z":1733.196},"rot":{"x":0.0,"y":190.292,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":23075,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-1010.211,"y":252.636,"z":1735.713},"rot":{"x":0.0,"y":148.06,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":23074,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-1010.254,"y":246.429,"z":1738.51},"rot":{"x":0.0,"y":179.903,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23073,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-993.471,"y":237.287,"z":1733.2},"rot":{"x":0.0,"y":72.087,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23072,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-993.852,"y":236.875,"z":1733.427},"rot":{"x":0.0,"y":72.087,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23071,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-993.068,"y":236.589,"z":1733.594},"rot":{"x":0.0,"y":72.087,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":23016,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-911.745,"y":175.277,"z":1744.812},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23092,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-879.694,"y":188.832,"z":1747.625},"rot":{"x":0.0,"y":284.583,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23091,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-879.494,"y":188.42,"z":1747.229},"rot":{"x":0.0,"y":284.583,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":23090,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-880.245,"y":188.134,"z":1747.509},"rot":{"x":0.0,"y":284.583,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":23052,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-881.09,"y":131.003,"z":1744.813},"rot":{"x":23.293,"y":136.0,"z":-0.001}},{"monsterId":0,"gadgetId":70540026,"configId":23041,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-878.873,"y":131.854,"z":1741.043},"rot":{"x":344.796,"y":125.047,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":23040,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-878.97,"y":128.366,"z":1746.514},"rot":{"x":13.406,"y":358.205,"z":344.811}},{"monsterId":0,"gadgetId":70520002,"configId":23039,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-879.141,"y":128.626,"z":1741.198},"rot":{"x":354.129,"y":294.959,"z":4.142}},{"monsterId":0,"gadgetId":70520002,"configId":23042,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-871.324,"y":126.823,"z":1743.882},"rot":{"x":340.564,"y":240.35,"z":4.046}},{"monsterId":0,"gadgetId":70540029,"configId":23061,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-947.598,"y":247.646,"z":1767.751},"rot":{"x":1.821,"y":258.082,"z":355.738}},{"monsterId":0,"gadgetId":70520005,"configId":23093,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-890.258,"y":189.235,"z":1757.396},"rot":{"x":357.94,"y":0.063,"z":356.479}},{"monsterId":0,"gadgetId":70540029,"configId":23009,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-846.285,"y":216.767,"z":1763.964},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":23011,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-847.017,"y":216.865,"z":1762.441},"rot":{"x":352.31,"y":359.928,"z":1.077}},{"monsterId":0,"gadgetId":70520005,"configId":23002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1019.523,"y":257.461,"z":1607.093},"rot":{"x":0.0,"y":307.474,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23088,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1015.207,"y":285.013,"z":1667.8},"rot":{"x":19.882,"y":359.094,"z":354.835}},{"monsterId":0,"gadgetId":70520009,"configId":23094,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-1016.941,"y":268.877,"z":1722.043},"rot":{"x":0.0,"y":25.695,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23087,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1018.433,"y":272.648,"z":1710.755},"rot":{"x":18.544,"y":358.847,"z":352.943}},{"monsterId":0,"gadgetId":70540029,"configId":23062,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-947.972,"y":246.789,"z":1770.527},"rot":{"x":340.988,"y":210.218,"z":342.027}},{"monsterId":0,"gadgetId":70520002,"configId":23085,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-895.015,"y":117.306,"z":1777.934},"rot":{"x":11.369,"y":359.67,"z":356.681}},{"monsterId":0,"gadgetId":70520002,"configId":23084,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-897.824,"y":118.119,"z":1771.89},"rot":{"x":18.678,"y":1.393,"z":8.458}},{"monsterId":0,"gadgetId":70520003,"configId":23080,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-895.973,"y":117.403,"z":1780.377},"rot":{"x":352.087,"y":65.573,"z":351.683}},{"monsterId":0,"gadgetId":70520003,"configId":23079,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-900.939,"y":117.288,"z":1779.462},"rot":{"x":329.915,"y":14.255,"z":336.699}},{"monsterId":0,"gadgetId":70520003,"configId":23081,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-897.957,"y":117.245,"z":1779.155},"rot":{"x":355.925,"y":297.308,"z":5.917}},{"monsterId":0,"gadgetId":70520003,"configId":23082,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-894.314,"y":118.524,"z":1772.549},"rot":{"x":1.388,"y":244.306,"z":329.553}},{"monsterId":0,"gadgetId":70520002,"configId":23083,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-892.739,"y":118.405,"z":1772.802},"rot":{"x":10.287,"y":0.348,"z":4.677}},{"monsterId":0,"gadgetId":70520005,"configId":23086,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1012.207,"y":255.658,"z":1788.116},"rot":{"x":14.964,"y":358.788,"z":350.791}},{"monsterId":0,"gadgetId":70540029,"configId":23010,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-846.359,"y":209.674,"z":1776.411},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":23022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-818.634,"y":171.854,"z":1782.837},"rot":{"x":357.862,"y":0.188,"z":349.956}},{"monsterId":0,"gadgetId":70520005,"configId":23023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-818.542,"y":171.892,"z":1784.277},"rot":{"x":354.688,"y":222.973,"z":8.798}},{"monsterId":0,"gadgetId":70520009,"configId":23102,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-804.547,"y":114.532,"z":1716.143},"rot":{"x":354.803,"y":0.64,"z":345.963}},{"monsterId":0,"gadgetId":70520001,"configId":23101,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-775.708,"y":110.579,"z":1708.413},"rot":{"x":10.501,"y":357.004,"z":4.891}},{"monsterId":0,"gadgetId":70520001,"configId":23100,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-777.444,"y":110.839,"z":1710.593},"rot":{"x":357.683,"y":274.835,"z":335.379}},{"monsterId":0,"gadgetId":70520005,"configId":23104,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-799.055,"y":113.897,"z":1729.994},"rot":{"x":24.605,"y":357.299,"z":347.66}},{"monsterId":0,"gadgetId":70520009,"configId":23103,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-801.284,"y":108.626,"z":1743.814},"rot":{"x":359.108,"y":0.035,"z":355.533}}]},{"sceneId":3,"groupId":133106022,"blockId":0,"pos":{"x":-470.61493,"y":0.0,"z":1656.0961},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":22022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-503.042,"y":189.96,"z":1764.935},"rot":{"x":2.766,"y":359.952,"z":357.995}},{"monsterId":0,"gadgetId":70520005,"configId":22021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-501.914,"y":189.969,"z":1764.315},"rot":{"x":1.782,"y":359.954,"z":357.021}},{"monsterId":0,"gadgetId":70540001,"configId":22020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-483.414,"y":186.554,"z":1753.294},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-483.747,"y":186.142,"z":1753.001},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-483.665,"y":185.856,"z":1753.798},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":22023,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-487.298,"y":211.27,"z":1723.046},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":22060,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-454.367,"y":209.599,"z":1696.296},"rot":{"x":353.991,"y":46.08,"z":8.727}},{"monsterId":0,"gadgetId":70520009,"configId":22061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-442.92,"y":220.205,"z":1698.3},"rot":{"x":24.284,"y":4.05,"z":18.666}},{"monsterId":0,"gadgetId":70540029,"configId":22047,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-428.487,"y":304.675,"z":1756.678},"rot":{"x":357.36,"y":159.709,"z":338.611}},{"monsterId":0,"gadgetId":70540029,"configId":22048,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-429.373,"y":304.207,"z":1755.384},"rot":{"x":356.956,"y":159.812,"z":337.668}},{"monsterId":0,"gadgetId":70520009,"configId":22049,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-507.788,"y":184.829,"z":1656.249},"rot":{"x":2.176,"y":0.183,"z":0.869}},{"monsterId":0,"gadgetId":70520005,"configId":22050,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-502.549,"y":185.776,"z":1657.185},"rot":{"x":0.668,"y":0.049,"z":15.904}},{"monsterId":0,"gadgetId":70540029,"configId":22062,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-491.455,"y":219.365,"z":1664.108},"rot":{"x":33.142,"y":0.373,"z":1.252}},{"monsterId":0,"gadgetId":70520004,"configId":22058,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-506.519,"y":185.808,"z":1623.132},"rot":{"x":356.813,"y":359.983,"z":0.621}},{"monsterId":0,"gadgetId":70520004,"configId":22059,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-507.127,"y":185.76,"z":1622.392},"rot":{"x":356.813,"y":359.983,"z":0.621}},{"monsterId":0,"gadgetId":70540001,"configId":22046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-440.57,"y":284.162,"z":1618.703},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-440.903,"y":283.75,"z":1618.41},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-440.821,"y":283.464,"z":1619.207},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":22005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-480.761,"y":203.934,"z":1597.138},"rot":{"x":2.308,"y":359.662,"z":343.345}},{"monsterId":0,"gadgetId":70520001,"configId":22006,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-480.818,"y":203.359,"z":1602.879},"rot":{"x":4.358,"y":83.672,"z":355.088}},{"monsterId":0,"gadgetId":70520001,"configId":22007,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-473.55,"y":204.005,"z":1598.699},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":22008,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-476.386,"y":203.422,"z":1602.707},"rot":{"x":334.99,"y":359.575,"z":0.968}},{"monsterId":0,"gadgetId":70520009,"configId":22042,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-455.245,"y":271.275,"z":1595.454},"rot":{"x":0.92,"y":350.35,"z":33.289}},{"monsterId":0,"gadgetId":70540001,"configId":22055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-443.113,"y":290.883,"z":1594.455},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22054,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-443.446,"y":290.471,"z":1594.162},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22053,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-443.364,"y":290.185,"z":1594.959},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22051,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-475.929,"y":223.216,"z":1582.833},"rot":{"x":358.846,"y":359.774,"z":22.165}},{"monsterId":0,"gadgetId":70540026,"configId":22040,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-469.86,"y":254.595,"z":1580.556},"rot":{"x":359.824,"y":27.235,"z":7.703}},{"monsterId":0,"gadgetId":70540026,"configId":22041,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-469.401,"y":259.465,"z":1584.516},"rot":{"x":340.561,"y":22.672,"z":2.672}}]},{"sceneId":3,"groupId":133106020,"blockId":0,"pos":{"x":-156.14009,"y":0.0,"z":1322.0577},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":20008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-77.754,"y":230.056,"z":1292.641},"rot":{"x":0.0,"y":136.141,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":20018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4.573,"y":204.609,"z":1299.891},"rot":{"x":0.0,"y":348.633,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":20001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-169.651,"y":256.176,"z":1284.847},"rot":{"x":0.0,"y":0.693,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":20010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-138.832,"y":266.511,"z":1316.94},"rot":{"x":0.0,"y":69.126,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-70.43,"y":263.623,"z":1378.05},"rot":{"x":0.0,"y":295.261,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":20005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-103.913,"y":263.543,"z":1374.8},"rot":{"x":0.0,"y":85.647,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":20031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-202.072,"y":276.513,"z":1331.951},"rot":{"x":0.0,"y":357.317,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":20030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-225.573,"y":277.942,"z":1287.583},"rot":{"x":0.0,"y":239.527,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":20004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-221.971,"y":278.146,"z":1342.16},"rot":{"x":0.0,"y":163.2,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":20002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-247.342,"y":284.192,"z":1343.982},"rot":{"x":0.0,"y":193.848,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":20011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-255.43,"y":286.146,"z":1289.789},"rot":{"x":0.0,"y":32.664,"z":0.0}}]},{"sceneId":3,"groupId":133106019,"blockId":0,"pos":{"x":-411.4295,"y":0.0,"z":1218.791},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":19004,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-409.652,"y":184.63,"z":1216.182},"rot":{"x":0.0,"y":279.759,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":19002,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-413.207,"y":185.202,"z":1221.4},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133106018,"blockId":0,"pos":{"x":-643.9368,"y":0.0,"z":1447.9814},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":18002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-549.29,"y":225.617,"z":1288.565},"rot":{"x":0.0,"y":81.895,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-630.846,"y":219.129,"z":1311.631},"rot":{"x":0.0,"y":178.168,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-695.887,"y":216.881,"z":1365.604},"rot":{"x":0.0,"y":11.424,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18052,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-548.534,"y":264.324,"z":1360.795},"rot":{"x":0.0,"y":239.527,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18053,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-618.086,"y":250.543,"z":1374.252},"rot":{"x":0.0,"y":39.51,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-670.682,"y":219.729,"z":1403.141},"rot":{"x":0.0,"y":328.151,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18057,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-590.091,"y":255.642,"z":1392.399},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-633.566,"y":250.978,"z":1413.414},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-578.747,"y":267.129,"z":1420.584},"rot":{"x":0.0,"y":314.934,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18038,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-743.657,"y":246.71,"z":1416.029},"rot":{"x":355.149,"y":0.077,"z":358.176}},{"monsterId":0,"gadgetId":70540026,"configId":18042,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-743.461,"y":252.833,"z":1428.027},"rot":{"x":349.0,"y":230.932,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":18044,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-714.222,"y":257.995,"z":1446.242},"rot":{"x":0.0,"y":95.657,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18036,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-643.584,"y":234.726,"z":1437.016},"rot":{"x":5.912,"y":1.433,"z":27.234}},{"monsterId":0,"gadgetId":70520005,"configId":18054,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-624.224,"y":243.246,"z":1442.801},"rot":{"x":0.0,"y":239.903,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18056,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-591.5,"y":270.751,"z":1430.573},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-757.257,"y":200.104,"z":1294.517},"rot":{"x":0.0,"y":353.737,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":18009,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-766.005,"y":213.394,"z":1333.248},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":18008,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-767.946,"y":212.384,"z":1334.973},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":18010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-766.832,"y":213.674,"z":1335.64},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":18039,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-760.365,"y":250.971,"z":1443.555},"rot":{"x":342.673,"y":359.322,"z":358.381}},{"monsterId":0,"gadgetId":70520002,"configId":18037,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-764.005,"y":250.017,"z":1443.221},"rot":{"x":5.061,"y":248.6,"z":23.536}},{"monsterId":0,"gadgetId":70520005,"configId":18059,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-746.245,"y":262.971,"z":1456.626},"rot":{"x":9.851,"y":20.917,"z":16.524}},{"monsterId":0,"gadgetId":70520005,"configId":18045,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-692.045,"y":259.334,"z":1456.299},"rot":{"x":7.175,"y":0.285,"z":4.541}},{"monsterId":0,"gadgetId":70540029,"configId":18033,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-666.699,"y":262.974,"z":1457.757},"rot":{"x":12.087,"y":1.747,"z":347.643}},{"monsterId":0,"gadgetId":70520005,"configId":18015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-712.841,"y":186.445,"z":1507.711},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-570.976,"y":270.995,"z":1464.813},"rot":{"x":332.462,"y":109.953,"z":353.983}},{"monsterId":0,"gadgetId":70520003,"configId":18034,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-625.435,"y":198.286,"z":1485.301},"rot":{"x":34.852,"y":354.021,"z":341.108}},{"monsterId":0,"gadgetId":70520003,"configId":18035,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-623.3,"y":197.254,"z":1491.985},"rot":{"x":0.0,"y":0.0,"z":4.467}},{"monsterId":0,"gadgetId":70540001,"configId":18012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-714.272,"y":184.642,"z":1522.117},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-714.354,"y":184.928,"z":1521.32},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-714.021,"y":185.34,"z":1521.613},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":18032,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-755.423,"y":276.551,"z":1533.281},"rot":{"x":24.591,"y":3.534,"z":353.088}},{"monsterId":0,"gadgetId":70520005,"configId":18062,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-621.873,"y":180.611,"z":1534.647},"rot":{"x":358.368,"y":359.984,"z":1.109}},{"monsterId":0,"gadgetId":70540001,"configId":18048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-572.501,"y":204.63,"z":1511.499},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-572.419,"y":204.344,"z":1512.296},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-572.168,"y":205.042,"z":1511.792},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":18027,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-569.106,"y":229.802,"z":1508.229},"rot":{"x":4.751,"y":1.613,"z":38.912}},{"monsterId":0,"gadgetId":70520002,"configId":18061,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-543.358,"y":206.947,"z":1514.714},"rot":{"x":21.624,"y":273.379,"z":354.755}},{"monsterId":0,"gadgetId":70520002,"configId":18060,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-541.813,"y":206.222,"z":1516.753},"rot":{"x":18.082,"y":331.339,"z":11.73}},{"monsterId":0,"gadgetId":70510007,"configId":18021,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-525.299,"y":271.408,"z":1519.338},"rot":{"x":28.127,"y":229.363,"z":329.428}},{"monsterId":0,"gadgetId":70510007,"configId":18019,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-528.879,"y":267.894,"z":1522.647},"rot":{"x":5.848,"y":1.946,"z":36.789}},{"monsterId":0,"gadgetId":70510007,"configId":18017,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-524.28,"y":272.051,"z":1520.597},"rot":{"x":8.141,"y":3.006,"z":40.484}},{"monsterId":0,"gadgetId":70510005,"configId":18025,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-561.247,"y":239.557,"z":1503.862},"rot":{"x":321.99,"y":147.872,"z":347.746}},{"monsterId":0,"gadgetId":70510006,"configId":18031,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-578.716,"y":249.852,"z":1475.804},"rot":{"x":19.532,"y":9.008,"z":32.797}},{"monsterId":0,"gadgetId":70510006,"configId":18029,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-571.099,"y":254.484,"z":1471.925},"rot":{"x":12.276,"y":4.799,"z":42.573}}]},{"sceneId":3,"groupId":133106017,"blockId":0,"pos":{"x":-373.45715,"y":0.0,"z":1298.5773},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":17001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-508.98,"y":233.443,"z":1288.125},"rot":{"x":0.0,"y":314.934,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":17010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-473.959,"y":243.696,"z":1301.345},"rot":{"x":0.0,"y":21.701,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":17006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-394.665,"y":284.933,"z":1297.356},"rot":{"x":0.0,"y":332.702,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":17055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-286.433,"y":286.219,"z":1287.481},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":17012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-289.257,"y":286.238,"z":1305.233},"rot":{"x":0.0,"y":147.948,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":17016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-287.449,"y":286.533,"z":1311.924},"rot":{"x":0.0,"y":39.51,"z":0.0}}]},{"sceneId":3,"groupId":133106016,"blockId":0,"pos":{"x":-842.7603,"y":0.0,"z":1089.2987},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":16004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-945.82,"y":221.127,"z":1040.2},"rot":{"x":0.0,"y":204.258,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":16006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-881.397,"y":194.009,"z":1122.517},"rot":{"x":0.0,"y":212.181,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-845.693,"y":203.159,"z":1030.437},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-846.026,"y":202.747,"z":1030.144},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-845.944,"y":202.461,"z":1030.941},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-840.742,"y":175.578,"z":1068.723},"rot":{"x":0.0,"y":262.907,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-840.41,"y":175.166,"z":1068.429},"rot":{"x":0.0,"y":262.907,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":16015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-841.211,"y":174.88,"z":1068.412},"rot":{"x":0.0,"y":262.907,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-816.867,"y":172.198,"z":1057.46},"rot":{"x":0.0,"y":319.512,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-780.481,"y":197.601,"z":1197.367},"rot":{"x":0.0,"y":144.295,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":16011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-785.771,"y":155.46,"z":1267.656},"rot":{"x":0.0,"y":122.352,"z":0.0}}]},{"sceneId":3,"groupId":133105022,"blockId":0,"pos":{"x":358.55667,"y":0.0,"z":-61.672928},"spawns":[{"monsterId":0,"gadgetId":70540004,"configId":22010,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":427.94,"y":206.5,"z":-1.249},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":22009,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":427.94,"y":206.5,"z":-1.441},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":407.548,"y":201.872,"z":-110.393},"rot":{"x":0.0,"y":12.681,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":393.624,"y":204.191,"z":-81.49},"rot":{"x":0.0,"y":128.474,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":394.175,"y":203.493,"z":-81.607},"rot":{"x":0.0,"y":128.474,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":22016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":393.602,"y":203.779,"z":-81.047},"rot":{"x":0.0,"y":128.474,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":22004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":386.747,"y":205.051,"z":-62.686},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":22003,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":387.574,"y":204.771,"z":-65.078},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":22002,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":385.633,"y":203.761,"z":-63.353},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":262.735,"y":201.001,"z":-75.45},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":22007,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":266.698,"y":208.796,"z":-73.372},"rot":{"x":0.0,"y":275.219,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":22006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":266.889,"y":208.796,"z":-73.39},"rot":{"x":0.0,"y":275.219,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":22012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":260.132,"y":200.585,"z":-31.192},"rot":{"x":0.0,"y":180.54,"z":0.0}}]},{"sceneId":3,"groupId":133105021,"blockId":0,"pos":{"x":679.24695,"y":0.0,"z":-346.09424},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":21024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":750.198,"y":278.851,"z":-386.013},"rot":{"x":0.0,"y":42.588,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":21050,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":764.547,"y":257.05,"z":-355.399},"rot":{"x":0.0,"y":342.465,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":21008,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":760.751,"y":258.517,"z":-348.344},"rot":{"x":6.242,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":21051,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":748.771,"y":251.117,"z":-337.837},"rot":{"x":0.0,"y":167.641,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":21007,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":761.578,"y":258.499,"z":-350.752},"rot":{"x":6.242,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":21006,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":759.637,"y":257.307,"z":-349.147},"rot":{"x":6.242,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":764.83,"y":250.604,"z":-318.165},"rot":{"x":0.0,"y":239.239,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":21030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":597.415,"y":209.899,"z":-483.121},"rot":{"x":0.0,"y":183.254,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":703.534,"y":266.603,"z":-460.217},"rot":{"x":0.0,"y":351.19,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":703.249,"y":266.191,"z":-460.558},"rot":{"x":0.0,"y":351.19,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":703.208,"y":265.905,"z":-459.758},"rot":{"x":0.0,"y":351.19,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":21052,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":747.368,"y":250.145,"z":-334.408},"rot":{"x":0.0,"y":310.875,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":21057,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":729.263,"y":250.346,"z":-324.102},"rot":{"x":0.0,"y":12.996,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":21016,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":717.578,"y":254.803,"z":-337.315},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":21015,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":717.578,"y":254.803,"z":-337.507},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":21004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":718.943,"y":250.49,"z":-330.812},"rot":{"x":324.672,"y":188.684,"z":0.858}},{"monsterId":0,"gadgetId":70520001,"configId":21003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":717.865,"y":250.567,"z":-326.858},"rot":{"x":342.722,"y":312.62,"z":324.599}},{"monsterId":0,"gadgetId":70520004,"configId":21054,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":716.769,"y":247.551,"z":-307.721},"rot":{"x":0.0,"y":230.518,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":701.693,"y":247.734,"z":-394.721},"rot":{"x":0.0,"y":183.636,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":21032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":696.582,"y":279.8,"z":-334.704},"rot":{"x":0.0,"y":180.776,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":21002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":692.972,"y":279.835,"z":-327.738},"rot":{"x":342.722,"y":312.62,"z":324.599}},{"monsterId":0,"gadgetId":70520001,"configId":21001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":691.91,"y":279.769,"z":-325.71},"rot":{"x":0.0,"y":0.0,"z":347.602}},{"monsterId":0,"gadgetId":70520009,"configId":21028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":679.221,"y":278.179,"z":-370.44},"rot":{"x":0.0,"y":68.481,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":21019,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":672.325,"y":290.139,"z":-330.375},"rot":{"x":0.0,"y":265.724,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":21018,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":672.517,"y":290.139,"z":-330.361},"rot":{"x":0.0,"y":265.724,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21025,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":671.109,"y":285.421,"z":-296.479},"rot":{"x":0.0,"y":268.249,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":21053,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":657.829,"y":288.874,"z":-336.59},"rot":{"x":0.0,"y":191.754,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":662.142,"y":290.207,"z":-261.765},"rot":{"x":0.0,"y":6.431,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":21049,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":631.36,"y":296.07,"z":-326.328},"rot":{"x":0.0,"y":277.269,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":645.257,"y":316.115,"z":-279.757},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":644.924,"y":315.703,"z":-280.05},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":645.006,"y":315.417,"z":-279.253},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":21056,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":642.533,"y":316.804,"z":-264.647},"rot":{"x":0.0,"y":236.872,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":21020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":609.936,"y":310.82,"z":-300.533},"rot":{"x":0.0,"y":39.51,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":610.091,"y":310.817,"z":-292.332},"rot":{"x":0.0,"y":80.581,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":612.366,"y":310.753,"z":-291.859},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":21022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":569.089,"y":251.92,"z":-290.882},"rot":{"x":0.0,"y":261.272,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":580.125,"y":215.108,"z":-424.539},"rot":{"x":0.0,"y":170.261,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":580.404,"y":214.696,"z":-424.194},"rot":{"x":0.0,"y":170.261,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":21042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":580.458,"y":214.41,"z":-424.993},"rot":{"x":0.0,"y":170.261,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":21055,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":616.191,"y":254.664,"z":-393.579},"rot":{"x":0.0,"y":29.049,"z":0.0}}]},{"sceneId":3,"groupId":133105019,"blockId":0,"pos":{"x":900.72015,"y":0.0,"z":-134.69382},"spawns":[{"monsterId":0,"gadgetId":70540021,"configId":19007,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":785.074,"y":241.778,"z":-245.185},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19006,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":785.901,"y":241.498,"z":-247.577},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19005,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":783.96,"y":240.488,"z":-245.852},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19013,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":783.738,"y":239.922,"z":-219.028},"rot":{"x":340.773,"y":0.0,"z":343.586}},{"monsterId":0,"gadgetId":70520001,"configId":19012,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":780.025,"y":239.761,"z":-215.574},"rot":{"x":0.0,"y":274.903,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":19050,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":848.28,"y":282.51,"z":-225.208},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19009,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":861.744,"y":277.904,"z":-218.662},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":19049,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":848.28,"y":282.51,"z":-225.4},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19010,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":863.685,"y":278.914,"z":-220.387},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19055,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":856.677,"y":277.686,"z":-222.237},"rot":{"x":0.0,"y":217.156,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19011,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":862.858,"y":279.194,"z":-217.995},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19072,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":923.641,"y":253.763,"z":-220.265},"rot":{"x":0.0,"y":344.092,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19097,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":930.195,"y":255.171,"z":-216.497},"rot":{"x":0.0,"y":320.44,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19064,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":964.327,"y":274.173,"z":-248.531},"rot":{"x":0.0,"y":282.593,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19079,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":880.107,"y":273.592,"z":-202.184},"rot":{"x":0.0,"y":43.151,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19078,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":879.663,"y":273.18,"z":-202.17},"rot":{"x":0.0,"y":43.151,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19077,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":880.268,"y":272.894,"z":-201.645},"rot":{"x":0.0,"y":43.151,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19058,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":903.945,"y":272.172,"z":-196.978},"rot":{"x":0.0,"y":89.011,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":19047,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":956.74,"y":264.551,"z":-196.034},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":19046,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":956.74,"y":264.551,"z":-196.226},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19095,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":975.076,"y":256.083,"z":-174.105},"rot":{"x":0.0,"y":77.109,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19018,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":974.913,"y":245.916,"z":-247.194},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19054,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":981.03,"y":268.542,"z":-251.709},"rot":{"x":0.0,"y":357.78,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19016,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":986.09,"y":250.582,"z":-246.52},"rot":{"x":0.0,"y":0.0,"z":18.844}},{"monsterId":0,"gadgetId":70520001,"configId":19017,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":983.191,"y":249.058,"z":-227.882},"rot":{"x":330.394,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":976.384,"y":260.688,"z":-194.617},"rot":{"x":0.0,"y":216.291,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19069,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":789.051,"y":252.881,"z":-170.752},"rot":{"x":0.0,"y":180.54,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19088,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":862.52,"y":272.183,"z":-169.993},"rot":{"x":0.0,"y":30.071,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19041,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":874.958,"y":277.023,"z":-159.415},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19040,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":875.785,"y":276.743,"z":-161.807},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19039,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":873.844,"y":275.733,"z":-160.082},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19102,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":890.806,"y":270.518,"z":-155.614},"rot":{"x":0.0,"y":172.996,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19092,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":944.222,"y":251.303,"z":-163.081},"rot":{"x":0.0,"y":235.452,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":798.467,"y":264.405,"z":-135.432},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":798.134,"y":263.993,"z":-135.725},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":798.216,"y":263.707,"z":-134.928},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19051,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":831.497,"y":265.527,"z":-148.427},"rot":{"x":0.0,"y":314.934,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19075,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":885.724,"y":272.921,"z":-136.292},"rot":{"x":0.0,"y":257.073,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19025,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":870.708,"y":244.69,"z":-145.899},"rot":{"x":0.0,"y":304.745,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19024,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":872.442,"y":244.871,"z":-143.973},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19021,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":882.006,"y":245.169,"z":-134.992},"rot":{"x":19.05,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19020,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":893.427,"y":244.718,"z":-136.981},"rot":{"x":14.927,"y":0.0,"z":343.586}},{"monsterId":0,"gadgetId":70520001,"configId":19019,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":894.246,"y":244.744,"z":-137.681},"rot":{"x":342.779,"y":8.684,"z":316.297}},{"monsterId":0,"gadgetId":70520013,"configId":19090,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":912.778,"y":264.512,"z":-141.317},"rot":{"x":0.0,"y":137.588,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19101,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":954.347,"y":248.438,"z":-135.096},"rot":{"x":0.0,"y":225.902,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19022,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":880.379,"y":245.26,"z":-131.653},"rot":{"x":338.034,"y":0.0,"z":336.427}},{"monsterId":0,"gadgetId":70520001,"configId":19023,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":891.756,"y":245.014,"z":-125.794},"rot":{"x":352.498,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19057,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":926.235,"y":248.559,"z":-113.274},"rot":{"x":0.0,"y":193.848,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19098,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":960.181,"y":247.007,"z":-114.71},"rot":{"x":0.0,"y":84.495,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19065,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":855.148,"y":250.502,"z":-98.718},"rot":{"x":0.0,"y":237.055,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19074,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":900.851,"y":268.134,"z":-107.063},"rot":{"x":0.0,"y":184.036,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19100,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":768.5,"y":271.743,"z":-121.595},"rot":{"x":0.0,"y":82.894,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":777.885,"y":264.439,"z":-95.92},"rot":{"x":0.0,"y":344.092,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19071,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":772.11,"y":258.963,"z":-77.099},"rot":{"x":0.0,"y":217.852,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19073,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":863.126,"y":237.154,"z":-81.609},"rot":{"x":0.0,"y":217.852,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":19089,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":930.686,"y":239.696,"z":-84.713},"rot":{"x":0.0,"y":158.844,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":947.698,"y":234.229,"z":-79.013},"rot":{"x":0.0,"y":249.885,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19093,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":785.948,"y":209.063,"z":-53.619},"rot":{"x":0.0,"y":297.858,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19070,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":782.315,"y":237.048,"z":-71.354},"rot":{"x":0.0,"y":217.852,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19066,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":899.932,"y":223.147,"z":-61.034},"rot":{"x":0.0,"y":0.657,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":19063,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":853.497,"y":207.225,"z":-35.587},"rot":{"x":0.0,"y":160.166,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":887.782,"y":214.175,"z":-46.612},"rot":{"x":0.0,"y":0.0,"z":344.851}},{"monsterId":0,"gadgetId":70520004,"configId":19104,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":904.628,"y":216.381,"z":-43.316},"rot":{"x":8.386,"y":33.681,"z":24.236}},{"monsterId":0,"gadgetId":70520005,"configId":19053,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":797.995,"y":200.821,"z":-22.79},"rot":{"x":0.0,"y":243.33,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19083,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":871.765,"y":207.065,"z":-14.931},"rot":{"x":0.0,"y":227.22,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19082,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":872.207,"y":206.653,"z":-14.977},"rot":{"x":0.0,"y":227.22,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19081,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":871.566,"y":206.367,"z":-15.458},"rot":{"x":0.0,"y":227.22,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":899.149,"y":213.227,"z":-25.516},"rot":{"x":11.436,"y":1.142,"z":11.37}},{"monsterId":0,"gadgetId":70540001,"configId":19036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":898.896,"y":212.825,"z":-25.891},"rot":{"x":11.436,"y":1.142,"z":11.37}},{"monsterId":0,"gadgetId":70540001,"configId":19035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":899.047,"y":212.408,"z":-25.165},"rot":{"x":11.436,"y":1.142,"z":11.37}},{"monsterId":0,"gadgetId":70520004,"configId":19103,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1021.734,"y":221.385,"z":-72.804},"rot":{"x":0.0,"y":46.772,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19087,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":984.185,"y":225.498,"z":-54.821},"rot":{"x":0.0,"y":337.322,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19086,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":983.991,"y":225.086,"z":-55.22},"rot":{"x":0.0,"y":337.322,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":19085,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":983.76,"y":224.8,"z":-54.453},"rot":{"x":0.0,"y":337.322,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19028,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":977.671,"y":216.809,"z":-12.377},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19029,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":976.844,"y":217.089,"z":-9.985},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":19027,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":975.73,"y":215.799,"z":-10.652},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1020.136,"y":249.309,"z":-233.161},"rot":{"x":0.0,"y":293.187,"z":9.911}},{"monsterId":0,"gadgetId":70520001,"configId":19002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1015.351,"y":250.074,"z":-234.815},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19067,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1018.609,"y":253.903,"z":-180.81},"rot":{"x":0.0,"y":109.249,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":19014,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":989.53,"y":250.757,"z":-247.399},"rot":{"x":0.0,"y":0.0,"z":330.148}},{"monsterId":0,"gadgetId":70520001,"configId":19015,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":988.372,"y":251.12,"z":-248.674},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19099,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1003.599,"y":260.56,"z":-206.451},"rot":{"x":342.295,"y":199.255,"z":17.16}},{"monsterId":0,"gadgetId":70520009,"configId":19068,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":970.139,"y":249.765,"z":-140.257},"rot":{"x":0.0,"y":60.717,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19060,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":957.301,"y":224.764,"z":-47.015},"rot":{"x":0.0,"y":354.561,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":19062,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1007.156,"y":215.038,"z":-39.949},"rot":{"x":0.0,"y":353.83,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19091,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":954.929,"y":223.848,"z":-30.634},"rot":{"x":0.0,"y":229.858,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":19096,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":965.343,"y":213.436,"z":-7.728},"rot":{"x":0.0,"y":293.618,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":19044,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":927.712,"y":219.913,"z":-7.243},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":19043,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":927.712,"y":219.913,"z":-7.435},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133105018,"blockId":0,"pos":{"x":661.8355,"y":0.0,"z":-148.00903},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":18027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":763.719,"y":245.337,"z":-196.193},"rot":{"x":0.0,"y":321.165,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":748.795,"y":227.907,"z":-207.899},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":748.462,"y":227.495,"z":-208.192},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":748.544,"y":227.209,"z":-207.395},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18030,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":753.501,"y":228.323,"z":-61.444},"rot":{"x":0.0,"y":217.852,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":742.101,"y":201.305,"z":-31.586},"rot":{"x":0.0,"y":57.962,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":743.063,"y":256.307,"z":-153.951},"rot":{"x":0.0,"y":136.636,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18031,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":719.931,"y":251.558,"z":-76.542},"rot":{"x":0.0,"y":300.281,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":18005,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":700.358,"y":272.918,"z":-113.67},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":18004,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":701.185,"y":272.638,"z":-116.062},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":18003,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":699.244,"y":271.628,"z":-114.337},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":692.865,"y":269.16,"z":-96.992},"rot":{"x":0.0,"y":67.726,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":18056,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":692.771,"y":243.056,"z":-81.636},"rot":{"x":0.0,"y":246.185,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":698.716,"y":201.363,"z":-28.258},"rot":{"x":0.0,"y":183.86,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18051,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":662.759,"y":203.121,"z":-5.863},"rot":{"x":0.0,"y":82.467,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":662.424,"y":202.709,"z":-5.571},"rot":{"x":0.0,"y":82.467,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18049,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":663.225,"y":202.423,"z":-5.548},"rot":{"x":0.0,"y":82.467,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":636.971,"y":203.739,"z":-75.6},"rot":{"x":0.0,"y":314.934,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":634.342,"y":201.178,"z":-25.961},"rot":{"x":0.0,"y":162.454,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":623.2,"y":203.793,"z":-106.09},"rot":{"x":0.0,"y":351.242,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":639.919,"y":272.726,"z":-157.547},"rot":{"x":0.0,"y":293.315,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":661.142,"y":216.904,"z":-138.744},"rot":{"x":0.0,"y":180.54,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":571.292,"y":257.104,"z":-123.85},"rot":{"x":0.0,"y":216.182,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":552.268,"y":209.493,"z":-106.142},"rot":{"x":0.0,"y":210.986,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":579.089,"y":258.397,"z":-108.691},"rot":{"x":0.0,"y":112.132,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":578.943,"y":257.985,"z":-108.272},"rot":{"x":0.0,"y":112.132,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":579.65,"y":257.699,"z":-108.648},"rot":{"x":0.0,"y":112.132,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18022,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":586.554,"y":205.235,"z":-84.642},"rot":{"x":0.0,"y":40.638,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":18026,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":711.495,"y":218.316,"z":-253.12},"rot":{"x":0.0,"y":200.394,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":694.853,"y":223.926,"z":-220.933},"rot":{"x":0.0,"y":180.54,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":18011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":713.941,"y":217.737,"z":-217.811},"rot":{"x":340.773,"y":0.0,"z":343.586}},{"monsterId":0,"gadgetId":70520001,"configId":18010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":709.192,"y":217.17,"z":-218.107},"rot":{"x":330.394,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":632.103,"y":309.915,"z":-237.296},"rot":{"x":0.0,"y":266.054,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":632.419,"y":309.503,"z":-237.608},"rot":{"x":0.0,"y":266.054,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":631.618,"y":309.217,"z":-237.581},"rot":{"x":0.0,"y":266.054,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":18054,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":637.791,"y":308.809,"z":-239.301},"rot":{"x":0.0,"y":82.871,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18052,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":636.588,"y":275.352,"z":-202.477},"rot":{"x":0.0,"y":33.826,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18053,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":614.791,"y":319.214,"z":-249.879},"rot":{"x":23.606,"y":233.638,"z":335.029}},{"monsterId":0,"gadgetId":70540004,"configId":18013,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":613.36,"y":322.484,"z":-250.638},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":18014,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":613.36,"y":322.484,"z":-250.446},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18055,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":592.33,"y":272.459,"z":-198.827},"rot":{"x":0.0,"y":86.941,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18057,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":657.759,"y":263.854,"z":-179.492},"rot":{"x":0.0,"y":228.345,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":660.315,"y":264.683,"z":-188.418},"rot":{"x":0.0,"y":352.518,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":660.023,"y":264.271,"z":-188.752},"rot":{"x":0.0,"y":352.518,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":18045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":660.0,"y":263.985,"z":-187.951},"rot":{"x":0.0,"y":352.518,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":18019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":587.462,"y":268.815,"z":-194.452},"rot":{"x":0.0,"y":278.855,"z":0.0}}]},{"sceneId":3,"groupId":133105012,"blockId":0,"pos":{"x":895.9162,"y":0.0,"z":-363.7942},"spawns":[{"monsterId":0,"gadgetId":70540005,"configId":12047,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":881.552,"y":319.46,"z":-504.223},"rot":{"x":11.842,"y":315.26,"z":3.148}},{"monsterId":0,"gadgetId":70520024,"configId":12037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":880.224,"y":319.384,"z":-505.802},"rot":{"x":0.0,"y":101.593,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":886.862,"y":312.791,"z":-476.069},"rot":{"x":0.0,"y":31.562,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12051,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":977.22,"y":310.433,"z":-486.077},"rot":{"x":359.858,"y":85.609,"z":30.116}},{"monsterId":0,"gadgetId":70520024,"configId":12054,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":801.909,"y":307.13,"z":-464.885},"rot":{"x":0.0,"y":92.538,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12050,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":851.55,"y":310.959,"z":-468.403},"rot":{"x":333.332,"y":231.056,"z":340.434}},{"monsterId":0,"gadgetId":70520024,"configId":12016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":851.867,"y":309.346,"z":-465.283},"rot":{"x":0.0,"y":217.852,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":915.458,"y":302.6,"z":-458.728},"rot":{"x":0.0,"y":259.391,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":798.965,"y":293.965,"z":-440.137},"rot":{"x":0.0,"y":52.887,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12055,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":835.669,"y":300.108,"z":-438.614},"rot":{"x":0.0,"y":332.036,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12048,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":841.071,"y":301.784,"z":-440.2},"rot":{"x":349.161,"y":138.741,"z":344.136}},{"monsterId":0,"gadgetId":70540005,"configId":12057,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":937.31,"y":295.01,"z":-416.72},"rot":{"x":0.0,"y":318.437,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":802.851,"y":285.9,"z":-409.826},"rot":{"x":0.0,"y":14.642,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12052,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":844.152,"y":294.21,"z":-399.994},"rot":{"x":0.0,"y":86.87,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":909.876,"y":292.935,"z":-385.598},"rot":{"x":0.0,"y":115.486,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":814.784,"y":264.724,"z":-354.448},"rot":{"x":0.0,"y":357.126,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":887.155,"y":289.113,"z":-367.607},"rot":{"x":0.0,"y":115.486,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":929.418,"y":283.658,"z":-365.306},"rot":{"x":0.0,"y":228.773,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12033,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":947.094,"y":281.48,"z":-363.943},"rot":{"x":0.0,"y":201.775,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12041,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":773.524,"y":254.163,"z":-343.073},"rot":{"x":0.0,"y":27.291,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":12034,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":814.979,"y":259.916,"z":-337.702},"rot":{"x":0.0,"y":118.461,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":12006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":825.385,"y":268.241,"z":-347.045},"rot":{"x":0.0,"y":271.481,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":12005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":825.577,"y":268.241,"z":-347.05},"rot":{"x":0.0,"y":271.481,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":883.525,"y":282.792,"z":-338.039},"rot":{"x":0.0,"y":294.264,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12003,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":867.299,"y":258.453,"z":-330.356},"rot":{"x":0.0,"y":271.9,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12001,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":867.365,"y":258.523,"z":-329.728},"rot":{"x":0.0,"y":303.637,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12002,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":867.854,"y":258.492,"z":-330.178},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":793.222,"y":252.018,"z":-299.215},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":792.889,"y":251.606,"z":-299.508},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":792.971,"y":251.32,"z":-298.711},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":833.344,"y":255.835,"z":-307.196},"rot":{"x":0.0,"y":163.197,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12039,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":909.556,"y":274.02,"z":-302.661},"rot":{"x":0.0,"y":30.832,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":924.559,"y":272.054,"z":-304.087},"rot":{"x":0.0,"y":76.415,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12032,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":947.004,"y":263.02,"z":-294.031},"rot":{"x":0.0,"y":167.195,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12042,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":824.185,"y":250.92,"z":-279.712},"rot":{"x":0.0,"y":177.676,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":780.196,"y":233.957,"z":-262.931},"rot":{"x":0.0,"y":263.945,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":884.932,"y":278.257,"z":-270.898},"rot":{"x":0.0,"y":296.216,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":884.369,"y":277.559,"z":-270.901},"rot":{"x":0.0,"y":296.216,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":12030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":885.048,"y":277.845,"z":-271.326},"rot":{"x":0.0,"y":296.216,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":869.839,"y":258.768,"z":-261.152},"rot":{"x":0.0,"y":59.393,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12040,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":917.667,"y":259.998,"z":-264.355},"rot":{"x":0.0,"y":135.476,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12053,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":955.499,"y":284.512,"z":-385.145},"rot":{"x":0.0,"y":299.647,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":959.754,"y":273.864,"z":-334.04},"rot":{"x":0.0,"y":117.806,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":12019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":965.549,"y":257.427,"z":-281.711},"rot":{"x":0.0,"y":218.02,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":12017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":982.24,"y":274.558,"z":-341.368},"rot":{"x":0.0,"y":132.946,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":12036,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":976.837,"y":270.361,"z":-318.622},"rot":{"x":0.0,"y":111.885,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":12038,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":970.513,"y":256.538,"z":-294.674},"rot":{"x":354.11,"y":117.185,"z":2.839}},{"monsterId":0,"gadgetId":70520024,"configId":12007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":981.015,"y":295.497,"z":-449.601},"rot":{"x":0.0,"y":239.527,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":975.938,"y":294.74,"z":-438.408},"rot":{"x":0.0,"y":135.491,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12049,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":987.789,"y":297.454,"z":-441.961},"rot":{"x":0.0,"y":209.336,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":991.273,"y":306.837,"z":-476.613},"rot":{"x":0.0,"y":32.665,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":999.671,"y":271.579,"z":-350.154},"rot":{"x":0.0,"y":66.916,"z":0.0}},{"monsterId":0,"gadgetId":70520024,"configId":12058,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":1014.888,"y":270.46,"z":-384.326},"rot":{"x":0.0,"y":315.078,"z":0.0}},{"monsterId":0,"gadgetId":70540005,"configId":12056,"level":0,"poseId":0,"gatherItemId":100020,"pos":{"x":1012.779,"y":271.296,"z":-377.93},"rot":{"x":0.0,"y":200.947,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":12046,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1016.818,"y":242.7,"z":-297.279},"rot":{"x":0.0,"y":104.659,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":12044,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":1020.471,"y":242.7,"z":-298.92},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133213521,"blockId":0,"pos":{"x":-3448.077,"y":0.0,"z":-3086.4524},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":521003,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3452.696,"y":207.203,"z":-3087.234},"rot":{"x":0.0,"y":151.354,"z":24.374}},{"monsterId":0,"gadgetId":70520019,"configId":521001,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3448.994,"y":207.075,"z":-3085.043},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":521002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3442.54,"y":202.545,"z":-3087.081},"rot":{"x":329.693,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133213523,"blockId":0,"pos":{"x":-3312.915,"y":0.0,"z":-3420.4353},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":523004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3316.512,"y":214.793,"z":-3414.828},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":523002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3312.093,"y":215.913,"z":-3425.677},"rot":{"x":6.933,"y":139.959,"z":355.449}},{"monsterId":0,"gadgetId":70520019,"configId":523001,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3311.977,"y":215.818,"z":-3424.209},"rot":{"x":0.0,"y":325.57,"z":0.0}},{"monsterId":0,"gadgetId":70520019,"configId":523003,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3311.078,"y":215.174,"z":-3417.027},"rot":{"x":0.0,"y":263.956,"z":0.0}}]},{"sceneId":3,"groupId":133213525,"blockId":0,"pos":{"x":-3372.4497,"y":0.0,"z":-3658.5906},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":525004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3370.19,"y":200.605,"z":-3656.983},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520019,"configId":525001,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3371.16,"y":200.846,"z":-3653.48},"rot":{"x":0.0,"y":74.079,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":525002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3373.972,"y":200.972,"z":-3660.687},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520019,"configId":525003,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3374.478,"y":200.25,"z":-3663.212},"rot":{"x":0.0,"y":161.08,"z":0.0}}]},{"sceneId":3,"groupId":133213527,"blockId":0,"pos":{"x":-3496.5598,"y":0.0,"z":-3372.0688},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":527001,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3490.395,"y":204.027,"z":-3373.968},"rot":{"x":0.0,"y":150.78,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":527005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3496.911,"y":203.345,"z":-3373.894},"rot":{"x":356.466,"y":316.255,"z":16.514}},{"monsterId":0,"gadgetId":70590036,"configId":527002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3496.452,"y":204.667,"z":-3372.148},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":527004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3502.845,"y":202.366,"z":-3373.863},"rot":{"x":0.0,"y":160.58,"z":9.251}},{"monsterId":0,"gadgetId":70520019,"configId":527003,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3496.196,"y":204.716,"z":-3366.47},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133213504,"blockId":0,"pos":{"x":-3446.7324,"y":0.0,"z":-3408.0034},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":504003,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3444.772,"y":199.649,"z":-3415.985},"rot":{"x":0.0,"y":88.175,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":504001,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3448.439,"y":199.737,"z":-3409.688},"rot":{"x":0.0,"y":228.448,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":504002,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3443.952,"y":200.008,"z":-3404.859},"rot":{"x":0.0,"y":178.395,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":504004,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3449.766,"y":200.176,"z":-3401.482},"rot":{"x":0.0,"y":178.395,"z":0.0}}]},{"sceneId":3,"groupId":133220672,"blockId":0,"pos":{"x":-2303.066,"y":0.0,"z":-4293.187},"spawns":[{"monsterId":0,"gadgetId":71700221,"configId":672001,"level":0,"poseId":0,"gatherItemId":100778,"pos":{"x":-2303.066,"y":201.014,"z":-4293.187},"rot":{"x":0.0,"y":140.1,"z":0.0}}]},{"sceneId":3,"groupId":133213505,"blockId":0,"pos":{"x":-3440.4536,"y":0.0,"z":-3421.9033},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":505001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3447.684,"y":200.513,"z":-3425.813},"rot":{"x":0.0,"y":353.219,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":505002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3433.223,"y":200.095,"z":-3417.994},"rot":{"x":0.0,"y":37.069,"z":0.0}}]},{"sceneId":3,"groupId":133213508,"blockId":0,"pos":{"x":-3871.5918,"y":0.0,"z":-3007.771},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":508003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3875.909,"y":241.592,"z":-3007.89},"rot":{"x":0.0,"y":343.134,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":508002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3872.596,"y":240.626,"z":-3006.351},"rot":{"x":0.0,"y":98.419,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":508005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3870.488,"y":240.147,"z":-3010.791},"rot":{"x":0.0,"y":270.491,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":508004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3868.094,"y":239.618,"z":-3009.701},"rot":{"x":0.0,"y":34.135,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":508001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3870.872,"y":240.333,"z":-3004.121},"rot":{"x":351.567,"y":220.972,"z":11.754}}]},{"sceneId":3,"groupId":133106010,"blockId":0,"pos":{"x":-828.0161,"y":0.0,"z":1416.26},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":10010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-774.373,"y":214.308,"z":1353.451},"rot":{"x":0.0,"y":167.637,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":10035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-788.303,"y":238.422,"z":1384.547},"rot":{"x":25.41,"y":359.305,"z":356.918}},{"monsterId":0,"gadgetId":70520005,"configId":10037,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-777.578,"y":236.499,"z":1401.862},"rot":{"x":356.424,"y":0.028,"z":359.105}},{"monsterId":0,"gadgetId":70540026,"configId":10036,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-781.102,"y":241.911,"z":1418.969},"rot":{"x":0.0,"y":236.664,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":10003,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-810.049,"y":194.198,"z":1292.943},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":10002,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-810.049,"y":194.198,"z":1292.75},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":10011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-810.289,"y":242.385,"z":1380.05},"rot":{"x":358.538,"y":262.927,"z":0.159}},{"monsterId":0,"gadgetId":70540001,"configId":10022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-828.332,"y":157.106,"z":1290.507},"rot":{"x":0.0,"y":16.78,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":10021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-828.736,"y":156.694,"z":1290.322},"rot":{"x":0.0,"y":16.78,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":10020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-828.427,"y":156.408,"z":1291.062},"rot":{"x":0.0,"y":16.78,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":10018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-826.066,"y":194.043,"z":1389.816},"rot":{"x":0.0,"y":326.496,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":10013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-840.648,"y":156.342,"z":1337.282},"rot":{"x":0.0,"y":194.668,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":10015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-838.367,"y":243.185,"z":1442.606},"rot":{"x":6.878,"y":152.252,"z":353.594}},{"monsterId":0,"gadgetId":70520005,"configId":10040,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-785.522,"y":254.588,"z":1486.735},"rot":{"x":14.801,"y":0.904,"z":9.824}},{"monsterId":0,"gadgetId":70540001,"configId":10034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-880.385,"y":256.147,"z":1487.653},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":10033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-880.718,"y":255.735,"z":1487.36},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":10032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-880.636,"y":255.449,"z":1488.157},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":10028,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-806.789,"y":234.95,"z":1503.798},"rot":{"x":21.081,"y":287.804,"z":359.724}},{"monsterId":0,"gadgetId":70540029,"configId":10027,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-807.314,"y":235.206,"z":1501.501},"rot":{"x":13.209,"y":37.306,"z":18.648}},{"monsterId":0,"gadgetId":70520009,"configId":10006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-899.78,"y":156.497,"z":1396.562},"rot":{"x":0.0,"y":249.442,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":10038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-772.637,"y":185.365,"z":1527.688},"rot":{"x":0.0,"y":21.182,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":10004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-926.755,"y":155.341,"z":1374.21},"rot":{"x":0.0,"y":88.945,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":10014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-914.625,"y":281.199,"z":1519.064},"rot":{"x":14.859,"y":28.056,"z":7.674}},{"monsterId":0,"gadgetId":70510012,"configId":10030,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-786.774,"y":271.443,"z":1534.856},"rot":{"x":0.0,"y":95.161,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":10039,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-816.149,"y":275.219,"z":1532.746},"rot":{"x":346.088,"y":238.859,"z":342.081}}]},{"sceneId":3,"groupId":133106009,"blockId":0,"pos":{"x":-650.929,"y":0.0,"z":1154.5199},"spawns":[{"monsterId":0,"gadgetId":70540004,"configId":9003,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-526.324,"y":196.875,"z":1144.64},"rot":{"x":11.614,"y":10.214,"z":358.092}},{"monsterId":0,"gadgetId":70540004,"configId":9002,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-526.357,"y":196.957,"z":1144.47},"rot":{"x":11.614,"y":10.214,"z":358.092}},{"monsterId":0,"gadgetId":70520009,"configId":9022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-532.922,"y":183.646,"z":1137.412},"rot":{"x":0.0,"y":273.259,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-537.146,"y":224.366,"z":1257.21},"rot":{"x":0.0,"y":335.635,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-607.994,"y":166.914,"z":1147.582},"rot":{"x":0.0,"y":82.2,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-593.848,"y":206.398,"z":1217.102},"rot":{"x":0.0,"y":36.963,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-610.216,"y":211.962,"z":1254.815},"rot":{"x":0.0,"y":102.984,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-539.042,"y":182.009,"z":1098.161},"rot":{"x":0.0,"y":244.376,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-650.298,"y":185.981,"z":1049.293},"rot":{"x":0.0,"y":335.711,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-650.734,"y":185.284,"z":1049.649},"rot":{"x":0.0,"y":335.711,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-650.481,"y":185.569,"z":1048.889},"rot":{"x":0.0,"y":335.711,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-634.12,"y":186.122,"z":1060.297},"rot":{"x":0.0,"y":320.157,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-650.472,"y":206.104,"z":1223.033},"rot":{"x":0.0,"y":44.482,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-577.593,"y":170.557,"z":1052.113},"rot":{"x":0.0,"y":170.453,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-564.775,"y":183.046,"z":1215.306},"rot":{"x":0.0,"y":4.2,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9041,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-565.128,"y":182.634,"z":1215.038},"rot":{"x":0.0,"y":4.2,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-564.988,"y":182.348,"z":1215.827},"rot":{"x":0.0,"y":4.2,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-723.86,"y":164.905,"z":1040.952},"rot":{"x":0.0,"y":184.152,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-583.984,"y":171.466,"z":1046.558},"rot":{"x":0.0,"y":270.773,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-717.676,"y":165.671,"z":1059.176},"rot":{"x":0.0,"y":7.863,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-718.045,"y":165.259,"z":1058.932},"rot":{"x":0.0,"y":7.863,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-717.855,"y":164.973,"z":1059.71},"rot":{"x":0.0,"y":7.863,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-560.368,"y":223.438,"z":1275.523},"rot":{"x":0.0,"y":328.885,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-645.115,"y":211.731,"z":1248.581},"rot":{"x":0.0,"y":321.011,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-645.189,"y":211.319,"z":1248.143},"rot":{"x":0.0,"y":321.011,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-645.627,"y":211.033,"z":1248.815},"rot":{"x":0.0,"y":321.011,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-671.098,"y":210.685,"z":1267.48},"rot":{"x":0.0,"y":167.272,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-702.41,"y":216.834,"z":1197.618},"rot":{"x":0.0,"y":64.49,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-725.852,"y":208.036,"z":1275.426},"rot":{"x":0.0,"y":136.636,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-715.544,"y":180.322,"z":1104.096},"rot":{"x":0.0,"y":39.425,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-732.448,"y":205.724,"z":1141.686},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-732.366,"y":205.438,"z":1142.483},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-732.115,"y":206.136,"z":1141.979},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-748.494,"y":205.665,"z":1145.904},"rot":{"x":0.0,"y":159.597,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-742.131,"y":205.061,"z":1153.641},"rot":{"x":0.0,"y":331.586,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-742.285,"y":204.649,"z":1153.225},"rot":{"x":0.0,"y":331.586,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":9032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-742.592,"y":204.363,"z":1153.965},"rot":{"x":0.0,"y":331.586,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":9006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-719.925,"y":191.935,"z":1148.388},"rot":{"x":0.0,"y":340.144,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":9004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-738.81,"y":198.883,"z":1183.156},"rot":{"x":0.0,"y":193.848,"z":0.0}}]},{"sceneId":3,"groupId":133106007,"blockId":0,"pos":{"x":-379.20322,"y":0.0,"z":1124.4556},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":7016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-373.465,"y":219.753,"z":1080.712},"rot":{"x":0.0,"y":233.928,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-400.208,"y":187.121,"z":1197.534},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-400.541,"y":186.709,"z":1197.241},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-400.459,"y":186.423,"z":1198.038},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-428.182,"y":182.009,"z":1117.417},"rot":{"x":0.0,"y":75.814,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-420.425,"y":185.156,"z":1208.666},"rot":{"x":0.0,"y":187.453,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-330.84,"y":271.457,"z":1259.375},"rot":{"x":0.0,"y":35.362,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":7008,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-504.581,"y":180.95,"z":1175.598},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-488.423,"y":186.2,"z":1078.142},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-488.756,"y":185.788,"z":1077.849},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-488.674,"y":185.502,"z":1078.646},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":7056,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-487.342,"y":222.141,"z":1040.954},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":7055,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-486.515,"y":221.861,"z":1038.562},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":7054,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-488.456,"y":220.851,"z":1040.287},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-483.314,"y":219.615,"z":1037.934},"rot":{"x":0.0,"y":15.818,"z":0.0}},{"monsterId":0,"gadgetId":70540014,"configId":7010,"level":0,"poseId":0,"gatherItemId":100026,"pos":{"x":-470.756,"y":180.95,"z":1165.876},"rot":{"x":0.0,"y":299.978,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7044,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-285.33,"y":246.426,"z":1024.396},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7043,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-285.663,"y":246.014,"z":1024.103},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7042,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-285.581,"y":245.728,"z":1024.9},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":7063,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-315.72,"y":271.122,"z":1026.219},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":7062,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-317.661,"y":270.113,"z":1027.944},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":7064,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-316.547,"y":271.402,"z":1028.611},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7023,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-288.011,"y":210.5,"z":1074.525},"rot":{"x":0.0,"y":169.181,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-330.544,"y":215.609,"z":1116.736},"rot":{"x":0.0,"y":62.384,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7040,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-285.54,"y":212.012,"z":1125.47},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7039,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-285.873,"y":211.6,"z":1125.177},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7038,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-285.791,"y":211.314,"z":1125.974},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-307.02,"y":217.468,"z":1145.74},"rot":{"x":0.0,"y":149.469,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7048,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-335.145,"y":274.685,"z":1026.41},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-335.396,"y":273.987,"z":1026.914},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-335.478,"y":274.273,"z":1026.117},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-334.375,"y":272.77,"z":1029.378},"rot":{"x":0.0,"y":112.395,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-332.617,"y":255.942,"z":1056.45},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-332.617,"y":255.942,"z":1056.258},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":7021,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-367.667,"y":223.099,"z":1168.405},"rot":{"x":0.0,"y":255.088,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7003,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-314.76,"y":240.151,"z":1175.63},"rot":{"x":0.0,"y":120.602,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":7002,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-314.925,"y":240.151,"z":1175.728},"rot":{"x":0.0,"y":120.602,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-286.979,"y":228.793,"z":1177.063},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-284.756,"y":229.654,"z":1179.324},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7052,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-360.89,"y":232.191,"z":1116.319},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7051,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-361.223,"y":231.779,"z":1116.026},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7050,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-361.141,"y":231.493,"z":1116.823},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-302.158,"y":233.462,"z":1216.474},"rot":{"x":0.0,"y":135.707,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":7015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-442.565,"y":182.655,"z":1227.054},"rot":{"x":0.0,"y":52.408,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-470.078,"y":183.238,"z":1215.111},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-470.411,"y":182.826,"z":1214.818},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":7030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-470.329,"y":182.54,"z":1215.615},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540021,"configId":7058,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-473.261,"y":238.547,"z":1275.051},"rot":{"x":351.767,"y":265.233,"z":356.767}},{"monsterId":0,"gadgetId":70540021,"configId":7060,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-471.983,"y":239.623,"z":1275.799},"rot":{"x":3.904,"y":359.729,"z":352.061}},{"monsterId":0,"gadgetId":70540021,"configId":7059,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-471.191,"y":239.395,"z":1273.39},"rot":{"x":357.029,"y":314.216,"z":351.67}}]},{"sceneId":3,"groupId":133212489,"blockId":0,"pos":{"x":-4124.7817,"y":0.0,"z":-2310.804},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":489006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4118.64,"y":212.136,"z":-2280.813},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":489005,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-4126.954,"y":210.121,"z":-2322.019},"rot":{"x":0.0,"y":72.351,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":489003,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-4128.752,"y":209.757,"z":-2329.58},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133106006,"blockId":0,"pos":{"x":-141.3124,"y":0.0,"z":1165.1687},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":6003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-16.115,"y":244.886,"z":1175.975},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":6002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-15.678,"y":244.941,"z":1180.705},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-34.826,"y":233.304,"z":1233.175},"rot":{"x":0.0,"y":109.249,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-9.536,"y":264.424,"z":1156.739},"rot":{"x":0.0,"y":319.189,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":6001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-9.733,"y":244.98,"z":1170.27},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4.163,"y":223.427,"z":1229.365},"rot":{"x":9.66,"y":359.323,"z":351.995}},{"monsterId":0,"gadgetId":70520009,"configId":6014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-103.508,"y":223.995,"z":1176.621},"rot":{"x":0.0,"y":7.064,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-227.012,"y":207.306,"z":1142.357},"rot":{"x":0.0,"y":257.63,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":6007,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-253.764,"y":255.337,"z":1238.64},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":6006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-253.764,"y":255.337,"z":1238.448},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-147.577,"y":214.69,"z":1215.892},"rot":{"x":0.0,"y":324.81,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-133.262,"y":228.519,"z":1272.045},"rot":{"x":0.0,"y":283.927,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":6011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-229.635,"y":196.415,"z":1070.59},"rot":{"x":0.0,"y":278.426,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-186.829,"y":217.395,"z":1084.017},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-187.162,"y":216.983,"z":1083.724},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-187.08,"y":216.697,"z":1084.521},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-198.764,"y":201.915,"z":1114.528},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-199.097,"y":201.503,"z":1114.235},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":6022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-199.015,"y":201.217,"z":1115.032},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":6010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-229.728,"y":228.612,"z":1206.496},"rot":{"x":0.0,"y":17.867,"z":0.0}}]},{"sceneId":3,"groupId":133212494,"blockId":0,"pos":{"x":-3869.487,"y":0.0,"z":-2526.592},"spawns":[{"monsterId":0,"gadgetId":70290131,"configId":494002,"level":0,"poseId":0,"gatherItemId":100962,"pos":{"x":-3869.487,"y":207.203,"z":-2526.592},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133213519,"blockId":0,"pos":{"x":-3905.417,"y":0.0,"z":-3169.4973},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":519002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3902.549,"y":270.855,"z":-3174.064},"rot":{"x":0.0,"y":309.294,"z":333.586}},{"monsterId":0,"gadgetId":70520019,"configId":519003,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3909.166,"y":274.575,"z":-3163.238},"rot":{"x":0.0,"y":254.873,"z":0.0}},{"monsterId":0,"gadgetId":70520019,"configId":519001,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3904.536,"y":272.082,"z":-3171.191},"rot":{"x":339.432,"y":274.27,"z":4.026}}]},{"sceneId":3,"groupId":133108015,"blockId":0,"pos":{"x":-125.08241,"y":0.0,"z":-119.34175},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":15011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-12.293,"y":263.821,"z":-18.4},"rot":{"x":0.0,"y":183.039,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":15021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-43.761,"y":261.586,"z":-65.648},"rot":{"x":0.0,"y":32.166,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":15016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-54.278,"y":200.731,"z":-111.712},"rot":{"x":0.0,"y":235.345,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":15035,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-56.7,"y":219.28,"z":-72.904},"rot":{"x":343.672,"y":359.793,"z":1.444}},{"monsterId":0,"gadgetId":70540004,"configId":15034,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-56.699,"y":219.227,"z":-73.088},"rot":{"x":343.672,"y":359.793,"z":1.444}},{"monsterId":0,"gadgetId":70520005,"configId":15009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-81.445,"y":264.126,"z":-0.73},"rot":{"x":0.0,"y":223.635,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":15013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-185.115,"y":238.254,"z":-74.574},"rot":{"x":0.0,"y":17.461,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":15014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-111.695,"y":253.092,"z":-94.043},"rot":{"x":0.0,"y":255.259,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":15020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-185.597,"y":216.187,"z":-149.783},"rot":{"x":0.0,"y":236.232,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":15004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-190.092,"y":220.703,"z":-140.931},"rot":{"x":342.278,"y":319.285,"z":334.786}},{"monsterId":0,"gadgetId":70520001,"configId":15003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-186.16,"y":219.133,"z":-138.442},"rot":{"x":338.879,"y":201.361,"z":33.689}},{"monsterId":0,"gadgetId":70520001,"configId":15002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-188.976,"y":221.978,"z":-132.258},"rot":{"x":325.3,"y":326.473,"z":337.498}},{"monsterId":0,"gadgetId":70520001,"configId":15001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-191.932,"y":220.866,"z":-137.833},"rot":{"x":355.456,"y":314.713,"z":341.601}},{"monsterId":0,"gadgetId":70520009,"configId":15010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-141.289,"y":251.85,"z":-138.624},"rot":{"x":0.0,"y":75.671,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":15012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-97.828,"y":200.421,"z":-155.795},"rot":{"x":0.0,"y":296.785,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":15026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-93.36,"y":200.383,"z":-183.405},"rot":{"x":0.0,"y":337.857,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":15031,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-97.057,"y":241.804,"z":-180.674},"rot":{"x":22.356,"y":356.553,"z":342.683}},{"monsterId":0,"gadgetId":70540004,"configId":15032,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-97.067,"y":241.731,"z":-180.497},"rot":{"x":22.356,"y":356.553,"z":342.683}},{"monsterId":0,"gadgetId":70540004,"configId":15029,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-122.355,"y":234.735,"z":-211.774},"rot":{"x":355.176,"y":359.74,"z":6.164}},{"monsterId":0,"gadgetId":70540004,"configId":15028,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-122.354,"y":234.719,"z":-211.965},"rot":{"x":355.176,"y":359.74,"z":6.164}},{"monsterId":0,"gadgetId":70540004,"configId":15041,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-110.545,"y":223.415,"z":-218.653},"rot":{"x":349.652,"y":259.699,"z":346.352}},{"monsterId":0,"gadgetId":70540004,"configId":15040,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-110.36,"y":223.381,"z":-218.619},"rot":{"x":349.652,"y":259.699,"z":346.352}},{"monsterId":0,"gadgetId":70540004,"configId":15038,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-106.398,"y":224.333,"z":-219.683},"rot":{"x":355.281,"y":0.652,"z":345.232}},{"monsterId":0,"gadgetId":70540004,"configId":15037,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-106.401,"y":224.317,"z":-219.875},"rot":{"x":355.281,"y":0.652,"z":345.232}},{"monsterId":0,"gadgetId":70520005,"configId":15017,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-238.883,"y":239.071,"z":-116.946},"rot":{"x":0.0,"y":130.452,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":15019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-239.305,"y":251.886,"z":-55.081},"rot":{"x":0.0,"y":59.566,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":15008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-114.255,"y":253.529,"z":-41.648},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":15018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-121.343,"y":251.556,"z":-40.767},"rot":{"x":0.0,"y":332.434,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":15007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-114.588,"y":253.117,"z":-41.941},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":15006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-114.506,"y":252.831,"z":-41.144},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":15015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-184.918,"y":258.302,"z":-12.157},"rot":{"x":0.0,"y":285.547,"z":0.0}}]},{"sceneId":3,"groupId":155009023,"blockId":0,"pos":{"x":-800.39526,"y":0.0,"z":-201.132},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":23005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-800.992,"y":186.126,"z":-198.286},"rot":{"x":1.957,"y":46.096,"z":26.225}},{"monsterId":0,"gadgetId":70590036,"configId":23002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-801.026,"y":186.268,"z":-199.0},"rot":{"x":325.974,"y":106.301,"z":331.136}},{"monsterId":0,"gadgetId":70590036,"configId":23004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-799.574,"y":188.439,"z":-203.321},"rot":{"x":4.049,"y":51.687,"z":39.843}},{"monsterId":0,"gadgetId":70590036,"configId":23003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-799.989,"y":188.532,"z":-203.921},"rot":{"x":332.869,"y":114.941,"z":351.807}}]},{"sceneId":3,"groupId":155009022,"blockId":0,"pos":{"x":-775.86005,"y":0.0,"z":-164.82433},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":22001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-775.493,"y":199.549,"z":-158.0},"rot":{"x":0.0,"y":65.618,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-782.575,"y":200.787,"z":-170.004},"rot":{"x":0.0,"y":123.375,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":22002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-769.512,"y":202.729,"z":-166.469},"rot":{"x":0.0,"y":51.227,"z":0.0}}]},{"sceneId":3,"groupId":133213491,"blockId":0,"pos":{"x":-3940.555,"y":0.0,"z":-3307.639},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":491003,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3941.139,"y":202.635,"z":-3305.112},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":491002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3943.215,"y":201.679,"z":-3308.35},"rot":{"x":0.0,"y":282.141,"z":0.0}},{"monsterId":0,"gadgetId":70520019,"configId":491001,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-3937.288,"y":202.482,"z":-3309.454},"rot":{"x":0.0,"y":224.402,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":491004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3940.577,"y":202.107,"z":-3307.64},"rot":{"x":0.0,"y":312.739,"z":18.081}}]},{"sceneId":3,"groupId":155009017,"blockId":0,"pos":{"x":-845.677,"y":0.0,"z":-199.98767},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":17003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-840.221,"y":155.357,"z":-182.665},"rot":{"x":0.0,"y":65.618,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-844.12,"y":156.48,"z":-217.108},"rot":{"x":0.0,"y":84.595,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":17004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-852.69,"y":155.801,"z":-200.19},"rot":{"x":0.0,"y":51.227,"z":0.0}}]},{"sceneId":3,"groupId":133213492,"blockId":0,"pos":{"x":-4099.7837,"y":0.0,"z":-3148.1313},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":492011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4090.733,"y":207.343,"z":-3148.701},"rot":{"x":12.998,"y":359.35,"z":354.302}},{"monsterId":0,"gadgetId":70590036,"configId":492009,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4085.732,"y":201.756,"z":-3127.073},"rot":{"x":12.998,"y":359.35,"z":354.302}},{"monsterId":0,"gadgetId":70520005,"configId":492012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4100.31,"y":211.495,"z":-3160.38},"rot":{"x":12.998,"y":359.35,"z":354.302}},{"monsterId":0,"gadgetId":70540004,"configId":492005,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4101.406,"y":211.813,"z":-3160.52},"rot":{"x":12.998,"y":359.35,"z":354.302}},{"monsterId":0,"gadgetId":70590036,"configId":492010,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4100.553,"y":201.756,"z":-3158.604},"rot":{"x":23.038,"y":223.528,"z":340.385}},{"monsterId":0,"gadgetId":70540004,"configId":492006,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4101.406,"y":211.813,"z":-3160.328},"rot":{"x":12.998,"y":359.35,"z":354.302}},{"monsterId":0,"gadgetId":70590036,"configId":492007,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4103.464,"y":201.259,"z":-3155.402},"rot":{"x":347.23,"y":1.898,"z":24.324}},{"monsterId":0,"gadgetId":70510007,"configId":492014,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-4111.034,"y":199.918,"z":-3138.1},"rot":{"x":5.963,"y":359.401,"z":4.891}},{"monsterId":0,"gadgetId":70590036,"configId":492008,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4103.412,"y":200.852,"z":-3124.074},"rot":{"x":12.998,"y":359.35,"z":354.302}}]},{"sceneId":3,"groupId":133103915,"blockId":0,"pos":{"x":982.81445,"y":0.0,"z":1112.013},"spawns":[{"monsterId":0,"gadgetId":70540008,"configId":915004,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":982.292,"y":273.383,"z":1112.004},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":915003,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":983.337,"y":274.059,"z":1112.022},"rot":{"x":80.732,"y":197.769,"z":283.477}}]},{"sceneId":3,"groupId":155009016,"blockId":0,"pos":{"x":-807.57104,"y":0.0,"z":-119.60425},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":16006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-826.588,"y":166.029,"z":-131.718},"rot":{"x":4.341,"y":307.7,"z":344.556}},{"monsterId":0,"gadgetId":70520005,"configId":16005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-809.794,"y":162.373,"z":-128.722},"rot":{"x":7.314,"y":59.631,"z":1.32}},{"monsterId":0,"gadgetId":70520005,"configId":16007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-795.653,"y":158.375,"z":-115.578},"rot":{"x":0.0,"y":39.127,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":16003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-798.249,"y":155.934,"z":-102.399},"rot":{"x":18.914,"y":96.163,"z":16.838}}]},{"sceneId":3,"groupId":133103914,"blockId":0,"pos":{"x":993.77814,"y":0.0,"z":1253.8336},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":914004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":958.682,"y":277.153,"z":1119.364},"rot":{"x":0.0,"y":341.807,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":914003,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":971.32,"y":270.031,"z":1095.439},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":914005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":943.18,"y":291.476,"z":1167.324},"rot":{"x":0.0,"y":305.163,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":914006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":962.236,"y":307.053,"z":1240.413},"rot":{"x":0.0,"y":49.516,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":914010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":974.092,"y":306.467,"z":1261.49},"rot":{"x":0.0,"y":49.516,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":914008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":972.779,"y":306.183,"z":1264.126},"rot":{"x":0.0,"y":49.516,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":914007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":997.297,"y":307.628,"z":1253.304},"rot":{"x":0.0,"y":49.516,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":914018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1028.598,"y":302.172,"z":1294.373},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":914017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1028.265,"y":301.76,"z":1294.08},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":914016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":1028.347,"y":301.474,"z":1294.877},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":914019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1014.068,"y":302.003,"z":1314.762},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":914009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":1015.515,"y":302.146,"z":1312.614},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":914014,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1008.735,"y":301.755,"z":1320.743},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":914013,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1009.78,"y":302.431,"z":1320.76},"rot":{"x":80.732,"y":197.769,"z":283.477}}]},{"sceneId":3,"groupId":155009018,"blockId":0,"pos":{"x":-763.184,"y":0.0,"z":-215.45235},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":18001,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-765.381,"y":180.721,"z":-197.878},"rot":{"x":0.0,"y":65.618,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18002,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-774.692,"y":184.219,"z":-221.457},"rot":{"x":0.0,"y":51.227,"z":0.0}},{"monsterId":0,"gadgetId":70520004,"configId":18003,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-749.479,"y":183.598,"z":-227.022},"rot":{"x":0.0,"y":123.375,"z":0.0}}]},{"sceneId":3,"groupId":133213503,"blockId":0,"pos":{"x":-3169.2998,"y":0.0,"z":-3460.1995},"spawns":[{"monsterId":0,"gadgetId":70520028,"configId":503002,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3171.44,"y":201.904,"z":-3459.345},"rot":{"x":331.601,"y":156.222,"z":3.308}},{"monsterId":0,"gadgetId":70520028,"configId":503001,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3167.16,"y":203.168,"z":-3461.054},"rot":{"x":285.575,"y":253.401,"z":347.876}}]},{"sceneId":3,"groupId":133220627,"blockId":0,"pos":{"x":-2676.6003,"y":0.0,"z":-4544.295},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":627003,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-2676.785,"y":244.216,"z":-4543.067},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":627002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2681.104,"y":243.557,"z":-4540.336},"rot":{"x":0.0,"y":321.85,"z":340.574}},{"monsterId":0,"gadgetId":70520019,"configId":627001,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-2671.912,"y":244.348,"z":-4549.482},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133109004,"blockId":0,"pos":{"x":-1025.012,"y":0.0,"z":1897.136},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":4007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1024.989,"y":256.485,"z":1896.406},"rot":{"x":26.557,"y":109.407,"z":17.481}},{"monsterId":0,"gadgetId":70520005,"configId":4004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-1025.035,"y":256.27,"z":1897.866},"rot":{"x":0.0,"y":244.876,"z":0.0}}]},{"sceneId":3,"groupId":133109003,"blockId":0,"pos":{"x":-1025.491,"y":0.0,"z":1647.766},"spawns":[{"monsterId":0,"gadgetId":70540029,"configId":3002,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-1025.491,"y":292.43,"z":1647.766},"rot":{"x":22.275,"y":359.805,"z":359.008}}]},{"sceneId":3,"groupId":133220629,"blockId":0,"pos":{"x":-2907.42,"y":0.0,"z":-4211.152},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":629002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2903.145,"y":203.633,"z":-4212.919},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520019,"configId":629001,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-2911.776,"y":203.701,"z":-4210.312},"rot":{"x":0.0,"y":320.277,"z":22.89}},{"monsterId":0,"gadgetId":70590036,"configId":629004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2908.863,"y":204.359,"z":-4211.564},"rot":{"x":0.0,"y":262.431,"z":0.0}},{"monsterId":0,"gadgetId":70520019,"configId":629003,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":-2905.895,"y":203.758,"z":-4209.813},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133008645,"blockId":0,"pos":{"x":1391.854,"y":0.0,"z":-670.4057},"spawns":[{"monsterId":0,"gadgetId":70590030,"configId":645001,"level":0,"poseId":0,"gatherItemId":100618,"pos":{"x":1324.8,"y":275.342,"z":-794.611},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590030,"configId":645003,"level":0,"poseId":0,"gatherItemId":100618,"pos":{"x":1339.516,"y":270.104,"z":-525.966},"rot":{"x":14.059,"y":143.014,"z":11.12}},{"monsterId":0,"gadgetId":70590030,"configId":645002,"level":0,"poseId":0,"gatherItemId":100618,"pos":{"x":1511.246,"y":266.345,"z":-690.64},"rot":{"x":0.0,"y":131.346,"z":23.188}}]},{"sceneId":3,"groupId":166001421,"blockId":0,"pos":{"x":857.90314,"y":0.0,"z":546.4478},"spawns":[{"monsterId":0,"gadgetId":70520038,"configId":421004,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":850.924,"y":803.959,"z":579.747},"rot":{"x":15.92,"y":356.741,"z":0.075}},{"monsterId":0,"gadgetId":70520002,"configId":421008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":845.855,"y":811.31,"z":546.885},"rot":{"x":0.0,"y":92.491,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":421003,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":859.231,"y":808.155,"z":559.577},"rot":{"x":32.687,"y":38.729,"z":344.003}},{"monsterId":0,"gadgetId":70520002,"configId":421005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":847.224,"y":811.246,"z":542.319},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":421002,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":874.3,"y":808.413,"z":537.632},"rot":{"x":358.42,"y":0.998,"z":21.302}},{"monsterId":0,"gadgetId":70520038,"configId":421001,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":869.885,"y":804.163,"z":512.527},"rot":{"x":0.0,"y":236.011,"z":0.0}}]},{"sceneId":3,"groupId":166001426,"blockId":0,"pos":{"x":702.72797,"y":0.0,"z":369.819},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":426002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":693.717,"y":707.424,"z":364.033},"rot":{"x":358.251,"y":0.189,"z":347.66}},{"monsterId":0,"gadgetId":70520003,"configId":426001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":693.871,"y":707.703,"z":360.507},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":426004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":712.342,"y":709.439,"z":379.642},"rot":{"x":0.0,"y":234.98,"z":333.52}},{"monsterId":0,"gadgetId":70520001,"configId":426003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":710.982,"y":709.274,"z":375.094},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133101803,"blockId":0,"pos":{"x":1355.2863,"y":0.0,"z":1152.0206},"spawns":[{"monsterId":0,"gadgetId":70540026,"configId":803050,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1214.192,"y":253.332,"z":1108.695},"rot":{"x":0.0,"y":201.803,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803049,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1217.504,"y":250.061,"z":1098.68},"rot":{"x":0.0,"y":156.76,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803030,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1277.244,"y":219.007,"z":1064.47},"rot":{"x":315.375,"y":255.767,"z":-0.002}},{"monsterId":0,"gadgetId":70510012,"configId":803028,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1279.024,"y":219.315,"z":1066.639},"rot":{"x":339.428,"y":353.568,"z":333.201}},{"monsterId":0,"gadgetId":70520003,"configId":803055,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1313.332,"y":231.163,"z":1143.243},"rot":{"x":348.03,"y":3.55,"z":316.795}},{"monsterId":0,"gadgetId":70540026,"configId":803051,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1240.063,"y":234.227,"z":1027.845},"rot":{"x":0.0,"y":200.98,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":803006,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1398.684,"y":208.958,"z":1106.868},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803057,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1532.38,"y":224.767,"z":1231.577},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":803097,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1420.169,"y":230.031,"z":1371.578},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":803095,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1416.437,"y":230.191,"z":1371.417},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803078,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1599.12,"y":201.091,"z":1081.214},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133101801,"blockId":0,"pos":{"x":1165.8408,"y":0.0,"z":1296.7203},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":801148,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1137.663,"y":321.676,"z":1443.518},"rot":{"x":0.0,"y":278.554,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":801110,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1145.632,"y":321.935,"z":1441.552},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":801023,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1218.538,"y":272.371,"z":1443.666},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801008,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1211.523,"y":273.844,"z":1449.16},"rot":{"x":352.834,"y":254.067,"z":25.586}},{"monsterId":0,"gadgetId":70510005,"configId":801055,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1095.883,"y":252.907,"z":1158.565},"rot":{"x":354.654,"y":359.833,"z":3.577}},{"monsterId":0,"gadgetId":70510005,"configId":801053,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1094.012,"y":252.997,"z":1155.058},"rot":{"x":0.885,"y":359.931,"z":351.119}},{"monsterId":0,"gadgetId":70540008,"configId":801070,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1089.039,"y":286.72,"z":1380.706},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":801069,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1090.084,"y":287.396,"z":1380.724},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":801068,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1089.321,"y":286.847,"z":1380.728},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":801066,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1125.012,"y":271.891,"z":1311.785},"rot":{"x":343.642,"y":328.163,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":801065,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1126.058,"y":272.567,"z":1311.802},"rot":{"x":80.732,"y":195.232,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":801064,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1125.294,"y":272.018,"z":1311.806},"rot":{"x":0.0,"y":357.463,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":801074,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1151.05,"y":266.064,"z":1311.206},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":801073,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1152.095,"y":266.74,"z":1311.224},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":801072,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1151.332,"y":266.192,"z":1311.227},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801014,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1149.449,"y":267.616,"z":1334.906},"rot":{"x":348.931,"y":216.963,"z":25.973}},{"monsterId":0,"gadgetId":70540026,"configId":801025,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1183.918,"y":259.949,"z":1248.076},"rot":{"x":0.0,"y":4.597,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801006,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1199.509,"y":254.74,"z":1234.02},"rot":{"x":3.685,"y":62.472,"z":5.12}},{"monsterId":0,"gadgetId":70510006,"configId":801004,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1198.068,"y":254.814,"z":1233.314},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801061,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1203.931,"y":283.007,"z":1277.416},"rot":{"x":0.0,"y":279.245,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801060,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1192.698,"y":286.856,"z":1284.583},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801062,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1218.976,"y":286.686,"z":1291.911},"rot":{"x":0.0,"y":112.384,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":801082,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1222.023,"y":265.667,"z":1371.384},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":801081,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1223.068,"y":266.343,"z":1371.402},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":801080,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1222.305,"y":265.794,"z":1371.406},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801010,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1217.061,"y":265.587,"z":1375.526},"rot":{"x":1.483,"y":244.376,"z":7.192}},{"monsterId":0,"gadgetId":70520003,"configId":801038,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1202.431,"y":248.538,"z":1048.366},"rot":{"x":0.0,"y":0.0,"z":30.107}},{"monsterId":0,"gadgetId":70520003,"configId":801037,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1204.609,"y":247.232,"z":1041.867},"rot":{"x":7.556,"y":0.971,"z":12.867}},{"monsterId":0,"gadgetId":70510012,"configId":801040,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1168.798,"y":229.38,"z":1017.99},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133212389,"blockId":0,"pos":{"x":-3594.4553,"y":0.0,"z":-1987.0875},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":389005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3626.954,"y":219.58,"z":-1994.277},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":389004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3587.662,"y":215.474,"z":-1993.523},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":389006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3568.75,"y":215.186,"z":-1973.463},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133212391,"blockId":0,"pos":{"x":-3737.1833,"y":0.0,"z":-2156.3352},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":391006,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-3736.343,"y":242.817,"z":-2156.661},"rot":{"x":0.0,"y":31.779,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":391005,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":-3737.552,"y":242.809,"z":-2155.625},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520007,"configId":391007,"level":0,"poseId":0,"gatherItemId":100014,"pos":{"x":-3737.655,"y":242.844,"z":-2156.72},"rot":{"x":0.0,"y":284.166,"z":0.0}}]},{"sceneId":3,"groupId":166001348,"blockId":0,"pos":{"x":970.435,"y":0.0,"z":666.6285},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":348003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":955.927,"y":861.611,"z":665.225},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":348002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":984.943,"y":856.578,"z":668.032},"rot":{"x":0.0,"y":10.604,"z":0.0}}]},{"sceneId":3,"groupId":133210320,"blockId":0,"pos":{"x":-3698.714,"y":0.0,"z":-900.32745},"spawns":[{"monsterId":0,"gadgetId":70520031,"configId":320044,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3716.112,"y":112.783,"z":-780.038},"rot":{"x":352.162,"y":294.367,"z":3.09}},{"monsterId":0,"gadgetId":70510005,"configId":320096,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3730.458,"y":128.397,"z":-771.417},"rot":{"x":2.392,"y":195.834,"z":19.754}},{"monsterId":0,"gadgetId":70520009,"configId":320030,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3815.311,"y":115.702,"z":-861.237},"rot":{"x":343.879,"y":113.587,"z":357.748}},{"monsterId":0,"gadgetId":70520031,"configId":320066,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3774.227,"y":107.928,"z":-867.041},"rot":{"x":350.272,"y":294.355,"z":0.985}},{"monsterId":0,"gadgetId":70510005,"configId":320071,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3713.421,"y":112.592,"z":-855.075},"rot":{"x":1.454,"y":228.634,"z":7.033}},{"monsterId":0,"gadgetId":70510005,"configId":320069,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3718.875,"y":113.046,"z":-853.427},"rot":{"x":357.276,"y":307.523,"z":3.542}},{"monsterId":0,"gadgetId":70520009,"configId":320032,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3800.688,"y":107.836,"z":-891.876},"rot":{"x":353.456,"y":341.966,"z":355.963}},{"monsterId":0,"gadgetId":70520031,"configId":320064,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3759.078,"y":108.62,"z":-873.815},"rot":{"x":343.328,"y":47.708,"z":13.536}},{"monsterId":0,"gadgetId":70520031,"configId":320062,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3757.263,"y":109.277,"z":-875.375},"rot":{"x":349.69,"y":358.727,"z":14.037}},{"monsterId":0,"gadgetId":70520009,"configId":320021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3711.112,"y":121.815,"z":-850.274},"rot":{"x":8.197,"y":269.712,"z":5.869}},{"monsterId":0,"gadgetId":70520031,"configId":320056,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3694.742,"y":112.572,"z":-774.421},"rot":{"x":348.086,"y":73.356,"z":357.138}},{"monsterId":0,"gadgetId":70520031,"configId":320048,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3693.128,"y":112.372,"z":-780.165},"rot":{"x":358.212,"y":359.991,"z":15.703}},{"monsterId":0,"gadgetId":70520031,"configId":320040,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3698.911,"y":111.001,"z":-778.563},"rot":{"x":359.98,"y":359.672,"z":356.423}},{"monsterId":0,"gadgetId":70520031,"configId":320046,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3694.787,"y":112.602,"z":-770.782},"rot":{"x":0.0,"y":0.0,"z":4.467}},{"monsterId":0,"gadgetId":70520009,"configId":320015,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3721.75,"y":117.221,"z":-899.388},"rot":{"x":355.172,"y":23.697,"z":1.32}},{"monsterId":0,"gadgetId":70520009,"configId":320029,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3797.494,"y":125.386,"z":-917.933},"rot":{"x":359.742,"y":210.158,"z":349.517}},{"monsterId":0,"gadgetId":70520031,"configId":320087,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3836.605,"y":121.116,"z":-942.693},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520031,"configId":320089,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3829.49,"y":121.118,"z":-945.582},"rot":{"x":13.343,"y":321.291,"z":357.982}},{"monsterId":0,"gadgetId":70520009,"configId":320067,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3823.391,"y":124.588,"z":-937.865},"rot":{"x":354.199,"y":143.498,"z":351.972}},{"monsterId":0,"gadgetId":70520009,"configId":320017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3681.608,"y":171.644,"z":-948.859},"rot":{"x":347.184,"y":87.85,"z":5.191}},{"monsterId":0,"gadgetId":70520009,"configId":320074,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3690.195,"y":134.806,"z":-890.073},"rot":{"x":13.768,"y":283.545,"z":3.992}},{"monsterId":0,"gadgetId":70520026,"configId":320080,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3695.961,"y":204.022,"z":-965.971},"rot":{"x":6.752,"y":280.527,"z":343.784}},{"monsterId":0,"gadgetId":70520026,"configId":320079,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3693.437,"y":203.807,"z":-965.712},"rot":{"x":353.234,"y":236.455,"z":343.79}},{"monsterId":0,"gadgetId":70520026,"configId":320078,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3695.463,"y":203.18,"z":-967.518},"rot":{"x":343.351,"y":187.305,"z":354.433}},{"monsterId":0,"gadgetId":70520009,"configId":320099,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3687.844,"y":121.12,"z":-954.41},"rot":{"x":9.325,"y":9.578,"z":6.091}},{"monsterId":0,"gadgetId":70520009,"configId":320098,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3680.378,"y":121.562,"z":-956.228},"rot":{"x":350.59,"y":218.841,"z":355.791}},{"monsterId":0,"gadgetId":70520009,"configId":320075,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3659.271,"y":143.649,"z":-875.266},"rot":{"x":358.364,"y":350.281,"z":13.511}},{"monsterId":0,"gadgetId":70520009,"configId":320076,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3664.494,"y":145.011,"z":-848.866},"rot":{"x":3.544,"y":142.251,"z":352.809}},{"monsterId":0,"gadgetId":70520009,"configId":320097,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3644.821,"y":127.197,"z":-909.913},"rot":{"x":358.706,"y":342.126,"z":5.3}},{"monsterId":0,"gadgetId":70520009,"configId":320014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3647.078,"y":113.304,"z":-833.684},"rot":{"x":5.401,"y":346.167,"z":3.258}},{"monsterId":0,"gadgetId":70520005,"configId":320003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3619.181,"y":208.89,"z":-959.959},"rot":{"x":354.149,"y":326.783,"z":4.512}},{"monsterId":0,"gadgetId":70520005,"configId":320013,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3624.246,"y":209.971,"z":-940.281},"rot":{"x":1.801,"y":9.512,"z":13.692}},{"monsterId":0,"gadgetId":70520005,"configId":320004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3613.221,"y":210.291,"z":-931.522},"rot":{"x":357.785,"y":211.458,"z":352.858}},{"monsterId":0,"gadgetId":70520005,"configId":320002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3607.434,"y":208.458,"z":-965.042},"rot":{"x":5.787,"y":154.705,"z":357.617}},{"monsterId":0,"gadgetId":70540001,"configId":320008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3602.259,"y":203.931,"z":-897.342},"rot":{"x":16.484,"y":281.697,"z":355.323}},{"monsterId":0,"gadgetId":70540001,"configId":320007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3601.952,"y":203.646,"z":-897.779},"rot":{"x":16.484,"y":281.697,"z":355.323}},{"monsterId":0,"gadgetId":70540001,"configId":320006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3602.607,"y":203.14,"z":-897.584},"rot":{"x":16.484,"y":281.697,"z":355.323}},{"monsterId":0,"gadgetId":70520005,"configId":320001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3611.344,"y":119.62,"z":-872.991},"rot":{"x":336.229,"y":105.699,"z":11.511}},{"monsterId":0,"gadgetId":70520009,"configId":320022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3736.208,"y":124.714,"z":-789.863},"rot":{"x":11.255,"y":134.713,"z":1.186}},{"monsterId":0,"gadgetId":70520031,"configId":320060,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3616.514,"y":112.187,"z":-788.852},"rot":{"x":351.044,"y":282.499,"z":3.454}},{"monsterId":0,"gadgetId":70520031,"configId":320054,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3622.369,"y":112.423,"z":-779.973},"rot":{"x":351.163,"y":359.76,"z":3.105}},{"monsterId":0,"gadgetId":70520031,"configId":320058,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3620.703,"y":112.363,"z":-782.627},"rot":{"x":359.809,"y":338.733,"z":356.178}},{"monsterId":0,"gadgetId":70520004,"configId":320094,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":-3589.897,"y":165.045,"z":-844.189},"rot":{"x":353.715,"y":358.974,"z":18.532}},{"monsterId":0,"gadgetId":70520009,"configId":320085,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3820.935,"y":112.731,"z":-838.927},"rot":{"x":14.722,"y":328.977,"z":7.369}},{"monsterId":0,"gadgetId":70520009,"configId":320016,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3779.442,"y":119.25,"z":-823.722},"rot":{"x":355.469,"y":77.132,"z":349.065}},{"monsterId":0,"gadgetId":70520009,"configId":320033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3791.237,"y":112.603,"z":-775.182},"rot":{"x":347.413,"y":90.694,"z":351.591}},{"monsterId":0,"gadgetId":70520009,"configId":320019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3737.817,"y":122.591,"z":-811.706},"rot":{"x":356.264,"y":23.962,"z":2.413}},{"monsterId":0,"gadgetId":70520029,"configId":320037,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3652.668,"y":199.478,"z":-1021.028},"rot":{"x":352.875,"y":0.869,"z":359.892}},{"monsterId":0,"gadgetId":70520029,"configId":320038,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3649.52,"y":199.751,"z":-1016.586},"rot":{"x":5.254,"y":105.44,"z":357.75}},{"monsterId":0,"gadgetId":70520031,"configId":320052,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3654.464,"y":111.656,"z":-768.098},"rot":{"x":356.04,"y":306.114,"z":6.984}},{"monsterId":0,"gadgetId":70520009,"configId":320018,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3827.298,"y":136.477,"z":-990.557},"rot":{"x":357.044,"y":67.39,"z":2.156}},{"monsterId":0,"gadgetId":70520009,"configId":320020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3773.554,"y":142.331,"z":-975.15},"rot":{"x":5.581,"y":246.184,"z":354.37}},{"monsterId":0,"gadgetId":70520026,"configId":320083,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3752.417,"y":203.098,"z":-1010.16},"rot":{"x":342.323,"y":108.743,"z":2.198}},{"monsterId":0,"gadgetId":70520026,"configId":320084,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3750.839,"y":204.092,"z":-1011.894},"rot":{"x":346.277,"y":156.468,"z":348.538}},{"monsterId":0,"gadgetId":70520026,"configId":320082,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3749.763,"y":202.92,"z":-1010.989},"rot":{"x":350.117,"y":58.79,"z":14.89}},{"monsterId":0,"gadgetId":70520009,"configId":320031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3700.107,"y":128.234,"z":-994.522},"rot":{"x":2.052,"y":258.002,"z":355.804}},{"monsterId":0,"gadgetId":70540001,"configId":320012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3689.846,"y":205.767,"z":-979.855},"rot":{"x":11.679,"y":347.523,"z":2.654}},{"monsterId":0,"gadgetId":70540001,"configId":320011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3690.072,"y":205.408,"z":-980.287},"rot":{"x":11.679,"y":347.523,"z":2.654}},{"monsterId":0,"gadgetId":70540001,"configId":320010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3690.135,"y":204.97,"z":-979.56},"rot":{"x":11.679,"y":347.523,"z":2.654}},{"monsterId":0,"gadgetId":70520009,"configId":320028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3667.291,"y":200.637,"z":-996.71},"rot":{"x":0.0,"y":50.846,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":320036,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3643.678,"y":198.055,"z":-985.371},"rot":{"x":358.57,"y":287.834,"z":358.6}},{"monsterId":0,"gadgetId":70520029,"configId":320035,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3639.2,"y":197.896,"z":-985.981},"rot":{"x":1.021,"y":266.284,"z":359.223}},{"monsterId":0,"gadgetId":70520029,"configId":320034,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3649.909,"y":199.052,"z":-982.602},"rot":{"x":6.7,"y":1.656,"z":344.566}},{"monsterId":0,"gadgetId":70520009,"configId":320027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3612.192,"y":201.951,"z":-990.597},"rot":{"x":1.83,"y":4.191,"z":0.231}}]},{"sceneId":3,"groupId":133210321,"blockId":0,"pos":{"x":-3954.834,"y":0.0,"z":-899.4586},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":321060,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3894.016,"y":117.13,"z":-867.114},"rot":{"x":1.131,"y":337.966,"z":1.462}},{"monsterId":0,"gadgetId":70520009,"configId":321036,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3879.678,"y":118.338,"z":-878.687},"rot":{"x":4.517,"y":351.665,"z":2.617}},{"monsterId":0,"gadgetId":70520009,"configId":321001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3890.222,"y":117.676,"z":-882.191},"rot":{"x":354.916,"y":265.477,"z":352.396}},{"monsterId":0,"gadgetId":70520009,"configId":321038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3855.125,"y":112.904,"z":-889.406},"rot":{"x":354.827,"y":273.676,"z":356.246}},{"monsterId":0,"gadgetId":70520009,"configId":321062,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3850.405,"y":120.733,"z":-905.697},"rot":{"x":348.615,"y":348.088,"z":11.723}},{"monsterId":0,"gadgetId":70520009,"configId":321005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3863.153,"y":121.351,"z":-919.421},"rot":{"x":357.045,"y":122.693,"z":1.291}},{"monsterId":0,"gadgetId":70520009,"configId":321037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3858.344,"y":123.17,"z":-935.657},"rot":{"x":356.209,"y":66.243,"z":3.741}},{"monsterId":0,"gadgetId":70520026,"configId":321078,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4031.041,"y":211.913,"z":-869.648},"rot":{"x":358.292,"y":330.68,"z":348.494}},{"monsterId":0,"gadgetId":70520026,"configId":321080,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4029.743,"y":213.029,"z":-870.298},"rot":{"x":11.609,"y":65.435,"z":359.28}},{"monsterId":0,"gadgetId":70520005,"configId":321035,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4012.03,"y":197.052,"z":-855.239},"rot":{"x":6.0,"y":17.672,"z":3.805}},{"monsterId":0,"gadgetId":70520026,"configId":321071,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4008.753,"y":199.082,"z":-853.313},"rot":{"x":359.473,"y":314.11,"z":0.917}},{"monsterId":0,"gadgetId":70520031,"configId":321058,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3886.405,"y":101.304,"z":-838.781},"rot":{"x":10.367,"y":289.633,"z":5.326}},{"monsterId":0,"gadgetId":70520031,"configId":321052,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3887.431,"y":101.312,"z":-841.03},"rot":{"x":1.818,"y":206.236,"z":352.653}},{"monsterId":0,"gadgetId":70520031,"configId":321054,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3888.668,"y":101.247,"z":-810.958},"rot":{"x":359.585,"y":226.411,"z":2.566}},{"monsterId":0,"gadgetId":70520031,"configId":321088,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3876.796,"y":151.138,"z":-768.254},"rot":{"x":359.941,"y":266.925,"z":6.615}},{"monsterId":0,"gadgetId":70520031,"configId":321056,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3865.93,"y":101.569,"z":-837.422},"rot":{"x":356.706,"y":115.162,"z":357.93}},{"monsterId":0,"gadgetId":70520031,"configId":321050,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3865.65,"y":101.569,"z":-834.882},"rot":{"x":0.0,"y":1.12,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":321006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3842.481,"y":111.729,"z":-850.731},"rot":{"x":2.702,"y":33.944,"z":4.085}},{"monsterId":0,"gadgetId":70520009,"configId":321022,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3851.845,"y":103.258,"z":-814.672},"rot":{"x":358.352,"y":30.725,"z":1.381}},{"monsterId":0,"gadgetId":70520009,"configId":321034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3994.153,"y":195.337,"z":-876.917},"rot":{"x":351.251,"y":202.618,"z":6.327}},{"monsterId":0,"gadgetId":70520009,"configId":321059,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3919.857,"y":120.925,"z":-872.666},"rot":{"x":356.445,"y":176.75,"z":0.446}},{"monsterId":0,"gadgetId":70520009,"configId":321061,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3882.715,"y":120.492,"z":-909.197},"rot":{"x":10.883,"y":283.81,"z":345.758}},{"monsterId":0,"gadgetId":70520009,"configId":321090,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3971.008,"y":176.886,"z":-967.316},"rot":{"x":355.647,"y":210.681,"z":357.684}},{"monsterId":0,"gadgetId":70520029,"configId":321067,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3960.667,"y":112.746,"z":-954.333},"rot":{"x":3.813,"y":20.05,"z":5.18}},{"monsterId":0,"gadgetId":70520029,"configId":321066,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3960.638,"y":113.747,"z":-960.854},"rot":{"x":4.631,"y":145.315,"z":9.727}},{"monsterId":0,"gadgetId":70520031,"configId":321048,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3904.433,"y":119.053,"z":-955.523},"rot":{"x":351.796,"y":86.055,"z":4.452}},{"monsterId":0,"gadgetId":70520009,"configId":321025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3902.824,"y":121.233,"z":-968.181},"rot":{"x":355.231,"y":317.846,"z":10.727}},{"monsterId":0,"gadgetId":70540001,"configId":321009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4031.782,"y":205.026,"z":-941.639},"rot":{"x":353.362,"y":206.967,"z":13.368}},{"monsterId":0,"gadgetId":70520009,"configId":321003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4017.56,"y":208.021,"z":-938.679},"rot":{"x":13.613,"y":83.723,"z":1.585}},{"monsterId":0,"gadgetId":70520029,"configId":321068,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3956.035,"y":112.931,"z":-949.118},"rot":{"x":3.941,"y":265.997,"z":5.083}},{"monsterId":0,"gadgetId":70520025,"configId":321065,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3954.681,"y":113.642,"z":-943.224},"rot":{"x":8.591,"y":133.163,"z":353.491}},{"monsterId":0,"gadgetId":70520031,"configId":321046,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3912.068,"y":116.366,"z":-950.512},"rot":{"x":346.885,"y":96.245,"z":358.578}},{"monsterId":0,"gadgetId":70520031,"configId":321086,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3901.12,"y":119.033,"z":-951.573},"rot":{"x":0.921,"y":49.133,"z":8.352}},{"monsterId":0,"gadgetId":70520031,"configId":321044,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3893.625,"y":119.659,"z":-951.278},"rot":{"x":351.893,"y":172.444,"z":358.212}},{"monsterId":0,"gadgetId":70520031,"configId":321042,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3886.623,"y":115.93,"z":-949.371},"rot":{"x":354.106,"y":130.938,"z":14.613}},{"monsterId":0,"gadgetId":70520005,"configId":321033,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4006.035,"y":205.018,"z":-930.093},"rot":{"x":350.331,"y":303.845,"z":350.914}},{"monsterId":0,"gadgetId":70520009,"configId":321089,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3966.655,"y":168.1,"z":-918.215},"rot":{"x":339.082,"y":274.441,"z":353.76}},{"monsterId":0,"gadgetId":70540001,"configId":321010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4032.093,"y":205.534,"z":-941.745},"rot":{"x":353.362,"y":206.967,"z":13.368}},{"monsterId":0,"gadgetId":70540001,"configId":321008,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4032.285,"y":204.86,"z":-942.305},"rot":{"x":353.362,"y":206.967,"z":13.368}},{"monsterId":0,"gadgetId":70520009,"configId":321039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4040.843,"y":211.154,"z":-901.498},"rot":{"x":0.0,"y":246.481,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":321079,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4031.585,"y":213.226,"z":-872.045},"rot":{"x":7.523,"y":18.922,"z":351.105}},{"monsterId":0,"gadgetId":70520005,"configId":321004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4017.352,"y":195.033,"z":-886.407},"rot":{"x":354.632,"y":331.218,"z":356.334}},{"monsterId":0,"gadgetId":70520005,"configId":321024,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4066.204,"y":201.165,"z":-940.423},"rot":{"x":358.735,"y":313.052,"z":0.043}},{"monsterId":0,"gadgetId":70520009,"configId":321020,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4066.592,"y":213.269,"z":-837.014},"rot":{"x":357.388,"y":283.387,"z":355.866}},{"monsterId":0,"gadgetId":70520026,"configId":321070,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4010.686,"y":198.094,"z":-851.566},"rot":{"x":0.346,"y":265.117,"z":1.0}},{"monsterId":0,"gadgetId":70520026,"configId":321072,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4009.576,"y":199.401,"z":-850.925},"rot":{"x":358.974,"y":0.112,"z":0.258}},{"monsterId":0,"gadgetId":70520009,"configId":321023,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3978.945,"y":165.307,"z":-844.647},"rot":{"x":358.826,"y":197.551,"z":5.677}},{"monsterId":0,"gadgetId":70520009,"configId":321011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3945.667,"y":158.377,"z":-850.359},"rot":{"x":13.897,"y":38.355,"z":351.237}},{"monsterId":0,"gadgetId":70520009,"configId":321027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3920.575,"y":119.315,"z":-849.001},"rot":{"x":357.26,"y":200.303,"z":0.916}},{"monsterId":0,"gadgetId":70590036,"configId":321028,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-4062.777,"y":200.174,"z":-823.242},"rot":{"x":356.852,"y":287.345,"z":358.081}},{"monsterId":0,"gadgetId":70520026,"configId":321076,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4003.495,"y":197.802,"z":-815.822},"rot":{"x":6.215,"y":60.93,"z":354.644}},{"monsterId":0,"gadgetId":70520026,"configId":321075,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4005.219,"y":197.708,"z":-817.693},"rot":{"x":0.484,"y":15.186,"z":351.816}},{"monsterId":0,"gadgetId":70520026,"configId":321074,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-4004.783,"y":196.701,"z":-815.132},"rot":{"x":354.153,"y":326.515,"z":354.244}},{"monsterId":0,"gadgetId":70520009,"configId":321002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4032.1,"y":196.472,"z":-798.484},"rot":{"x":7.781,"y":66.56,"z":349.038}},{"monsterId":0,"gadgetId":70520009,"configId":321026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4049.656,"y":213.187,"z":-783.02},"rot":{"x":354.314,"y":206.248,"z":4.119}},{"monsterId":0,"gadgetId":70540001,"configId":321019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4016.17,"y":196.458,"z":-784.014},"rot":{"x":356.117,"y":222.075,"z":5.967}},{"monsterId":0,"gadgetId":70540001,"configId":321018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4015.781,"y":195.995,"z":-784.013},"rot":{"x":356.117,"y":222.075,"z":5.967}},{"monsterId":0,"gadgetId":70540001,"configId":321017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4016.408,"y":195.774,"z":-784.542},"rot":{"x":356.117,"y":222.075,"z":5.967}},{"monsterId":0,"gadgetId":70520009,"configId":321021,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4003.902,"y":205.744,"z":-978.141},"rot":{"x":357.908,"y":81.782,"z":2.365}},{"monsterId":0,"gadgetId":70520025,"configId":321064,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3962.639,"y":112.732,"z":-986.119},"rot":{"x":3.251,"y":58.187,"z":351.731}},{"monsterId":0,"gadgetId":70520025,"configId":321063,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3960.203,"y":113.409,"z":-976.102},"rot":{"x":1.964,"y":187.559,"z":18.54}},{"monsterId":0,"gadgetId":70540001,"configId":321094,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3970.661,"y":180.276,"z":-1010.297},"rot":{"x":0.0,"y":282.818,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321093,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3970.449,"y":179.863,"z":-1010.687},"rot":{"x":0.0,"y":282.818,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321092,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3971.208,"y":179.578,"z":-1010.43},"rot":{"x":0.0,"y":282.818,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3967.822,"y":128.701,"z":-1013.884},"rot":{"x":1.827,"y":304.493,"z":349.175}},{"monsterId":0,"gadgetId":70540001,"configId":321031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3967.193,"y":129.003,"z":-1014.371},"rot":{"x":1.827,"y":304.493,"z":349.175}},{"monsterId":0,"gadgetId":70540001,"configId":321032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3967.217,"y":129.363,"z":-1013.885},"rot":{"x":1.827,"y":304.493,"z":349.175}},{"monsterId":0,"gadgetId":70520009,"configId":321040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3895.014,"y":137.557,"z":-986.834},"rot":{"x":8.19,"y":347.836,"z":357.642}},{"monsterId":0,"gadgetId":70520031,"configId":321084,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3842.535,"y":121.205,"z":-990.672},"rot":{"x":5.52,"y":80.56,"z":11.796}},{"monsterId":0,"gadgetId":70520031,"configId":321082,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3840.562,"y":121.132,"z":-984.695},"rot":{"x":0.0,"y":43.479,"z":0.0}}]},{"sceneId":3,"groupId":133210322,"blockId":0,"pos":{"x":-3521.8894,"y":0.0,"z":-859.25104},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":322019,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3583.014,"y":203.179,"z":-922.499},"rot":{"x":1.929,"y":114.325,"z":5.269}},{"monsterId":0,"gadgetId":70510005,"configId":322018,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3583.635,"y":169.147,"z":-826.652},"rot":{"x":354.998,"y":355.629,"z":7.894}},{"monsterId":0,"gadgetId":70510005,"configId":322016,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3582.391,"y":169.697,"z":-822.642},"rot":{"x":8.228,"y":208.059,"z":358.084}},{"monsterId":0,"gadgetId":70520009,"configId":322001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3569.124,"y":206.838,"z":-906.581},"rot":{"x":351.274,"y":349.714,"z":349.614}},{"monsterId":0,"gadgetId":70520009,"configId":322008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3561.401,"y":202.971,"z":-847.646},"rot":{"x":2.432,"y":339.856,"z":4.24}},{"monsterId":0,"gadgetId":70520005,"configId":322003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3551.852,"y":201.125,"z":-798.627},"rot":{"x":359.909,"y":120.84,"z":6.534}},{"monsterId":0,"gadgetId":70520029,"configId":322012,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3492.757,"y":198.704,"z":-870.173},"rot":{"x":345.816,"y":345.135,"z":4.614}},{"monsterId":0,"gadgetId":70520029,"configId":322014,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3477.713,"y":199.553,"z":-868.067},"rot":{"x":3.849,"y":145.338,"z":353.031}},{"monsterId":0,"gadgetId":70520005,"configId":322002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3489.817,"y":219.738,"z":-854.602},"rot":{"x":12.229,"y":287.06,"z":15.809}},{"monsterId":0,"gadgetId":70520029,"configId":322013,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3495.645,"y":198.264,"z":-877.264},"rot":{"x":358.287,"y":214.308,"z":357.749}},{"monsterId":0,"gadgetId":70520025,"configId":322011,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3468.732,"y":198.249,"z":-883.616},"rot":{"x":349.878,"y":352.575,"z":357.758}},{"monsterId":0,"gadgetId":70520025,"configId":322010,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3453.579,"y":198.44,"z":-876.554},"rot":{"x":350.389,"y":93.785,"z":10.74}},{"monsterId":0,"gadgetId":70520009,"configId":322009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3474.905,"y":207.054,"z":-815.341},"rot":{"x":351.144,"y":92.817,"z":346.585}}]},{"sceneId":3,"groupId":133210323,"blockId":0,"pos":{"x":-3551.9548,"y":0.0,"z":-606.0266},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":323001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3555.343,"y":206.641,"z":-637.592},"rot":{"x":2.74,"y":317.401,"z":355.064}},{"monsterId":0,"gadgetId":70520025,"configId":323013,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3513.969,"y":199.156,"z":-661.432},"rot":{"x":7.679,"y":151.219,"z":2.878}},{"monsterId":0,"gadgetId":70520025,"configId":323012,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3523.042,"y":199.618,"z":-667.938},"rot":{"x":3.79,"y":78.213,"z":351.962}},{"monsterId":0,"gadgetId":70520005,"configId":323018,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3574.683,"y":205.797,"z":-607.82},"rot":{"x":0.0,"y":44.362,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":323019,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3570.349,"y":205.69,"z":-609.701},"rot":{"x":358.109,"y":336.505,"z":357.896}},{"monsterId":0,"gadgetId":70520005,"configId":323020,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3570.958,"y":205.861,"z":-605.172},"rot":{"x":0.0,"y":235.433,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":323007,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3554.864,"y":209.697,"z":-582.731},"rot":{"x":12.024,"y":216.229,"z":4.71}},{"monsterId":0,"gadgetId":70520005,"configId":323008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3540.374,"y":205.245,"z":-582.656},"rot":{"x":12.164,"y":50.66,"z":3.679}},{"monsterId":0,"gadgetId":70510007,"configId":323005,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3570.091,"y":213.335,"z":-570.859},"rot":{"x":6.934,"y":94.32,"z":348.762}},{"monsterId":0,"gadgetId":70520009,"configId":323002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3562.293,"y":215.631,"z":-560.995},"rot":{"x":346.025,"y":58.866,"z":352.613}},{"monsterId":0,"gadgetId":70520029,"configId":323011,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3535.567,"y":198.938,"z":-524.359},"rot":{"x":5.261,"y":74.372,"z":2.232}},{"monsterId":0,"gadgetId":70520029,"configId":323010,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3546.414,"y":199.347,"z":-520.456},"rot":{"x":355.065,"y":257.657,"z":358.34}},{"monsterId":0,"gadgetId":70520009,"configId":323003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3557.465,"y":201.335,"z":-746.635},"rot":{"x":1.968,"y":292.805,"z":7.127}}]},{"sceneId":3,"groupId":133210324,"blockId":0,"pos":{"x":-3925.3037,"y":0.0,"z":-419.94336},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":324002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3888.364,"y":209.861,"z":-483.853},"rot":{"x":1.186,"y":230.874,"z":357.301}},{"monsterId":0,"gadgetId":70520025,"configId":324005,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3883.45,"y":199.488,"z":-394.817},"rot":{"x":21.375,"y":178.353,"z":1.068}},{"monsterId":0,"gadgetId":70520025,"configId":324006,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3872.659,"y":199.664,"z":-365.871},"rot":{"x":3.084,"y":325.062,"z":353.513}},{"monsterId":0,"gadgetId":70520005,"configId":324001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3961.019,"y":226.106,"z":-422.395},"rot":{"x":344.095,"y":191.023,"z":355.126}},{"monsterId":0,"gadgetId":70510007,"configId":324008,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3969.272,"y":200.099,"z":-410.027},"rot":{"x":1.527,"y":265.863,"z":356.306}},{"monsterId":0,"gadgetId":70520005,"configId":324003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3977.059,"y":231.679,"z":-442.697},"rot":{"x":343.353,"y":178.554,"z":356.989}}]},{"sceneId":3,"groupId":133210325,"blockId":0,"pos":{"x":-3780.7317,"y":0.0,"z":-464.34924},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":325013,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3597.71,"y":199.511,"z":-475.302},"rot":{"x":0.701,"y":285.125,"z":357.409}},{"monsterId":0,"gadgetId":70520005,"configId":325001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3798.937,"y":244.071,"z":-488.264},"rot":{"x":8.36,"y":122.681,"z":356.893}},{"monsterId":0,"gadgetId":70520005,"configId":325003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3832.456,"y":247.565,"z":-461.501},"rot":{"x":359.302,"y":296.357,"z":357.242}},{"monsterId":0,"gadgetId":70520009,"configId":325002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3815.391,"y":223.154,"z":-460.886},"rot":{"x":8.15,"y":104.743,"z":7.74}},{"monsterId":0,"gadgetId":70520025,"configId":325011,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3786.739,"y":199.075,"z":-469.329},"rot":{"x":0.0,"y":314.725,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":325010,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3787.735,"y":199.075,"z":-464.749},"rot":{"x":0.0,"y":227.336,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":325008,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3816.467,"y":199.017,"z":-448.726},"rot":{"x":357.173,"y":339.568,"z":0.099}},{"monsterId":0,"gadgetId":70520025,"configId":325009,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3810.42,"y":199.075,"z":-446.037},"rot":{"x":0.0,"y":229.603,"z":0.0}}]},{"sceneId":3,"groupId":133103817,"blockId":0,"pos":{"x":849.8401,"y":0.0,"z":1694.8555},"spawns":[{"monsterId":0,"gadgetId":70540029,"configId":817006,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":780.359,"y":332.291,"z":1643.19},"rot":{"x":0.0,"y":95.543,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817007,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":785.276,"y":332.21,"z":1639.141},"rot":{"x":0.0,"y":341.807,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817005,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":942.35,"y":377.299,"z":1570.47},"rot":{"x":0.0,"y":233.239,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817004,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":873.799,"y":359.386,"z":1667.437},"rot":{"x":0.0,"y":132.905,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817001,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":874.14,"y":358.55,"z":1669.688},"rot":{"x":0.0,"y":132.905,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817002,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":876.3,"y":357.376,"z":1668.164},"rot":{"x":0.0,"y":132.905,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817003,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":957.416,"y":347.58,"z":1737.69},"rot":{"x":0.0,"y":157.847,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817011,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":846.053,"y":352.886,"z":1762.56},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817010,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":845.179,"y":353.021,"z":1765.081},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817012,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":850.595,"y":352.035,"z":1765.762},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817009,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":849.872,"y":350.88,"z":1757.514},"rot":{"x":0.0,"y":104.638,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":817008,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":716.742,"y":268.531,"z":1691.569},"rot":{"x":0.0,"y":305.163,"z":0.0}}]},{"sceneId":3,"groupId":133212374,"blockId":0,"pos":{"x":-3871.464,"y":0.0,"z":-2511.2842},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":374009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3812.316,"y":252.938,"z":-2460.421},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3937.143,"y":262.178,"z":-2498.235},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3865.744,"y":251.491,"z":-2493.436},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3981.205,"y":276.006,"z":-2461.025},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3959.035,"y":269.742,"z":-2477.543},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3898.349,"y":249.859,"z":-2517.577},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3829.427,"y":235.194,"z":-2515.226},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3806.418,"y":226.955,"z":-2529.201},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3879.031,"y":237.461,"z":-2539.812},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3825.883,"y":225.256,"z":-2556.032},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":374005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3791.554,"y":215.891,"z":-2575.619},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103816,"blockId":0,"pos":{"x":281.9432,"y":0.0,"z":1345.7037},"spawns":[{"monsterId":0,"gadgetId":70510012,"configId":816214,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":231.856,"y":224.099,"z":1106.116},"rot":{"x":29.223,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":816121,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":205.316,"y":185.859,"z":1284.797},"rot":{"x":0.0,"y":142.944,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":816235,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":468.852,"y":257.542,"z":1038.31},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":816234,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":471.494,"y":219.962,"z":1078.631},"rot":{"x":0.0,"y":255.016,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":816073,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":305.069,"y":209.636,"z":1323.377},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":816072,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":305.8,"y":210.679,"z":1318.873},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":816104,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":245.878,"y":185.62,"z":1389.921},"rot":{"x":335.881,"y":1.901,"z":351.119}},{"monsterId":0,"gadgetId":70510007,"configId":816106,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":230.819,"y":198.189,"z":1409.107},"rot":{"x":0.0,"y":233.572,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":816112,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":63.469,"y":206.598,"z":1385.758},"rot":{"x":342.609,"y":2.674,"z":342.645}},{"monsterId":0,"gadgetId":70540008,"configId":816004,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":282.227,"y":207.78,"z":1508.469},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":816003,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":283.272,"y":208.456,"z":1508.487},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":816241,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":284.326,"y":197.118,"z":1496.44},"rot":{"x":343.642,"y":54.754,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":816240,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":284.451,"y":197.794,"z":1495.402},"rot":{"x":80.732,"y":281.823,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":816239,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":284.376,"y":197.246,"z":1496.162},"rot":{"x":0.0,"y":84.054,"z":0.0}}]},{"sceneId":3,"groupId":133103814,"blockId":0,"pos":{"x":138.14551,"y":0.0,"z":1031.5625},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":814002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":136.84,"y":242.309,"z":1032.408},"rot":{"x":345.656,"y":287.041,"z":20.738}},{"monsterId":0,"gadgetId":70520003,"configId":814001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":139.451,"y":242.112,"z":1030.717},"rot":{"x":352.667,"y":64.325,"z":345.131}}]},{"sceneId":3,"groupId":133103813,"blockId":0,"pos":{"x":411.159,"y":0.0,"z":1180.156},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":813028,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":479.41,"y":233.484,"z":1123.47},"rot":{"x":351.299,"y":0.141,"z":358.144}},{"monsterId":0,"gadgetId":70510005,"configId":813002,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":447.772,"y":217.482,"z":1058.439},"rot":{"x":323.128,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":813030,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":497.094,"y":247.743,"z":1211.728},"rot":{"x":356.953,"y":0.07,"z":357.364}},{"monsterId":0,"gadgetId":70510012,"configId":813014,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":328.308,"y":259.608,"z":1276.864},"rot":{"x":12.34,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":813012,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":303.211,"y":258.783,"z":1230.279},"rot":{"x":354.034,"y":358.216,"z":33.277}}]},{"sceneId":3,"groupId":133103812,"blockId":0,"pos":{"x":863.5509,"y":0.0,"z":1453.2574},"spawns":[{"monsterId":0,"gadgetId":70540008,"configId":812008,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":657.561,"y":185.61,"z":1101.565},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812007,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":658.606,"y":186.286,"z":1101.582},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812006,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":657.842,"y":185.737,"z":1101.586},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812012,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":719.643,"y":158.582,"z":1292.735},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812010,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":719.925,"y":158.709,"z":1292.756},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812011,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":720.688,"y":159.258,"z":1292.752},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812028,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":797.034,"y":214.105,"z":1204.504},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812027,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":798.079,"y":214.781,"z":1204.521},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812026,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":797.315,"y":214.232,"z":1204.525},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812024,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":875.678,"y":223.385,"z":1215.522},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812018,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":877.11,"y":225.992,"z":1226.786},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812019,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":877.874,"y":226.541,"z":1226.782},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812020,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":876.829,"y":225.865,"z":1226.764},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812023,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":876.723,"y":224.061,"z":1215.54},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812048,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":729.388,"y":233.063,"z":1632.229},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812046,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":729.67,"y":233.19,"z":1632.25},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812047,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":730.433,"y":233.739,"z":1632.246},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812044,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":799.549,"y":238.885,"z":1646.467},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812042,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":799.83,"y":239.013,"z":1646.488},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812043,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":800.594,"y":239.561,"z":1646.484},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812040,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":906.164,"y":236.944,"z":1654.902},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812039,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":907.209,"y":237.62,"z":1654.92},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812038,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":906.446,"y":237.071,"z":1654.924},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812056,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":941.255,"y":230.821,"z":1684.318},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812055,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":942.3,"y":231.497,"z":1684.336},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812054,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":941.537,"y":230.948,"z":1684.339},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812052,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":786.858,"y":232.353,"z":1723.921},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812051,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":787.903,"y":233.029,"z":1723.938},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812036,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1052.051,"y":269.667,"z":1488.099},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812035,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1053.096,"y":270.343,"z":1488.117},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812034,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1052.332,"y":269.795,"z":1488.12},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812060,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1074.102,"y":231.083,"z":1655.161},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812059,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1075.147,"y":231.759,"z":1655.179},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812058,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1074.383,"y":231.21,"z":1655.183},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":812032,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":982.968,"y":268.976,"z":1376.983},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":812031,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":984.014,"y":269.652,"z":1377.0},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":812030,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":983.25,"y":269.103,"z":1377.004},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133001409,"blockId":0,"pos":{"x":1640.9354,"y":0.0,"z":-2623.9978},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":409011,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1633.495,"y":198.45,"z":-2618.235},"rot":{"x":0.0,"y":292.291,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":409009,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1629.178,"y":198.739,"z":-2617.765},"rot":{"x":20.813,"y":43.365,"z":339.384}},{"monsterId":0,"gadgetId":70520002,"configId":409008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1633.11,"y":198.181,"z":-2621.76},"rot":{"x":0.0,"y":305.225,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":409007,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1629.962,"y":198.506,"z":-2613.589},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":409010,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1634.356,"y":198.222,"z":-2611.906},"rot":{"x":0.0,"y":278.684,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":409015,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1655.546,"y":194.697,"z":-2639.065},"rot":{"x":330.387,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":409013,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1655.001,"y":195.836,"z":-2634.823},"rot":{"x":0.0,"y":0.0,"z":19.894}},{"monsterId":0,"gadgetId":70520002,"configId":409012,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1656.836,"y":195.325,"z":-2634.839},"rot":{"x":350.545,"y":290.743,"z":3.111}}]},{"sceneId":3,"groupId":133103809,"blockId":0,"pos":{"x":1103.3811,"y":0.0,"z":1633.3767},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":809002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1100.19,"y":235.75,"z":1614.965},"rot":{"x":0.0,"y":186.635,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":809001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1093.534,"y":235.618,"z":1611.276},"rot":{"x":0.0,"y":295.503,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":809004,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1113.881,"y":234.225,"z":1619.042},"rot":{"x":0.0,"y":22.347,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":809003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1110.25,"y":235.788,"z":1614.399},"rot":{"x":0.0,"y":22.347,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":809007,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1109.223,"y":231.633,"z":1646.495},"rot":{"x":0.0,"y":208.095,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":809014,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1108.324,"y":232.233,"z":1651.847},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":809010,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1104.0,"y":230.618,"z":1639.301},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":809008,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1094.568,"y":230.7,"z":1630.314},"rot":{"x":0.0,"y":208.095,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":809006,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1095.116,"y":231.917,"z":1653.061},"rot":{"x":0.0,"y":289.183,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":809005,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1104.725,"y":231.739,"z":1653.068},"rot":{"x":0.0,"y":289.183,"z":0.0}}]},{"sceneId":3,"groupId":166001367,"blockId":0,"pos":{"x":1007.62067,"y":0.0,"z":467.19168},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":367001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1009.841,"y":837.004,"z":464.708},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540031,"configId":367002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1007.795,"y":839.575,"z":470.321},"rot":{"x":22.962,"y":53.528,"z":344.443}},{"monsterId":0,"gadgetId":70540031,"configId":367003,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1005.226,"y":839.342,"z":466.546},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133102806,"blockId":0,"pos":{"x":1686.3613,"y":0.0,"z":553.1306},"spawns":[{"monsterId":0,"gadgetId":70540008,"configId":806059,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1799.885,"y":223.489,"z":822.521},"rot":{"x":80.732,"y":147.888,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":806060,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1799.224,"y":222.813,"z":821.71},"rot":{"x":343.642,"y":280.819,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":806058,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1799.39,"y":222.94,"z":821.94},"rot":{"x":0.0,"y":310.119,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":806038,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1650.374,"y":202.569,"z":268.568},"rot":{"x":18.721,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":806043,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1631.622,"y":202.353,"z":281.94},"rot":{"x":0.0,"y":187.399,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":806040,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1644.475,"y":200.078,"z":277.4},"rot":{"x":0.0,"y":166.66,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806042,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1642.401,"y":201.095,"z":268.249},"rot":{"x":0.0,"y":15.156,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":806041,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1640.94,"y":201.373,"z":268.382},"rot":{"x":0.0,"y":279.887,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":806036,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1646.779,"y":233.334,"z":751.229},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":806035,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1647.824,"y":234.01,"z":751.247},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":806034,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1647.06,"y":233.461,"z":751.251},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133102805,"blockId":0,"pos":{"x":1178.3795,"y":0.0,"z":926.20856},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":805014,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1051.749,"y":212.589,"z":849.582},"rot":{"x":12.424,"y":358.516,"z":3.176}},{"monsterId":0,"gadgetId":70520002,"configId":805105,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1112.77,"y":212.26,"z":899.658},"rot":{"x":13.71,"y":9.48,"z":69.189}},{"monsterId":0,"gadgetId":70520003,"configId":805020,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1125.065,"y":210.105,"z":900.689},"rot":{"x":0.0,"y":0.0,"z":311.933}},{"monsterId":0,"gadgetId":70510012,"configId":805079,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1201.368,"y":207.615,"z":941.528},"rot":{"x":349.728,"y":320.638,"z":8.322}},{"monsterId":0,"gadgetId":70510012,"configId":805077,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1190.236,"y":212.822,"z":958.819},"rot":{"x":339.71,"y":320.835,"z":7.465}},{"monsterId":0,"gadgetId":70520002,"configId":805074,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1225.62,"y":201.834,"z":957.835},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":805030,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1231.482,"y":201.325,"z":934.122},"rot":{"x":0.0,"y":142.188,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":805028,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1238.949,"y":201.571,"z":933.334},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":805073,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1228.177,"y":201.589,"z":960.31},"rot":{"x":319.824,"y":14.661,"z":307.277}}]},{"sceneId":3,"groupId":133102803,"blockId":0,"pos":{"x":1660.869,"y":0.0,"z":602.5061},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":803219,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1840.352,"y":205.774,"z":853.909},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":803209,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1846.607,"y":205.969,"z":849.77},"rot":{"x":0.0,"y":10.403,"z":338.31}},{"monsterId":0,"gadgetId":70510005,"configId":803437,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1810.24,"y":207.128,"z":805.523},"rot":{"x":0.0,"y":0.0,"z":350.247}},{"monsterId":0,"gadgetId":70540026,"configId":803536,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1964.88,"y":276.528,"z":585.988},"rot":{"x":0.0,"y":354.546,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803125,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1777.009,"y":225.92,"z":658.484},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803122,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1778.054,"y":226.596,"z":658.502},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803121,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1777.29,"y":226.047,"z":658.506},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803578,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1701.867,"y":291.413,"z":563.556},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803168,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1748.528,"y":251.26,"z":557.085},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803164,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1749.573,"y":251.936,"z":557.103},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803162,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1748.81,"y":251.387,"z":557.107},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803244,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1790.42,"y":232.898,"z":551.243},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803243,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1791.466,"y":233.574,"z":551.261},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803242,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1790.702,"y":233.025,"z":551.265},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803504,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1664.764,"y":351.067,"z":469.749},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803500,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1706.475,"y":341.876,"z":481.571},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803569,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1547.026,"y":269.878,"z":385.094},"rot":{"x":0.0,"y":46.585,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803567,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1544.253,"y":274.042,"z":385.296},"rot":{"x":0.0,"y":48.533,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803521,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1553.795,"y":275.576,"z":386.864},"rot":{"x":0.0,"y":0.428,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803494,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1587.266,"y":299.249,"z":402.56},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803515,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1579.698,"y":258.239,"z":520.798},"rot":{"x":0.0,"y":328.947,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803493,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1611.975,"y":260.788,"z":316.437},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803512,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1698.092,"y":382.866,"z":495.255},"rot":{"x":349.594,"y":195.743,"z":18.521}},{"monsterId":0,"gadgetId":70540029,"configId":803498,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1667.29,"y":406.197,"z":518.958},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803017,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1687.564,"y":406.932,"z":527.019},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803579,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1696.879,"y":390.967,"z":524.036},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803499,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1646.914,"y":350.309,"z":475.047},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803509,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1558.459,"y":283.115,"z":635.906},"rot":{"x":350.437,"y":6.595,"z":6.854}},{"monsterId":0,"gadgetId":70540029,"configId":803167,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1566.8,"y":303.477,"z":644.156},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803377,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1511.784,"y":272.55,"z":688.062},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803373,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1597.777,"y":207.03,"z":836.888},"rot":{"x":354.249,"y":62.972,"z":356.279}},{"monsterId":0,"gadgetId":70510012,"configId":803371,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1597.466,"y":207.006,"z":835.648},"rot":{"x":338.961,"y":136.144,"z":0.003}},{"monsterId":0,"gadgetId":70510012,"configId":803399,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1786.216,"y":221.941,"z":773.263},"rot":{"x":1.866,"y":17.264,"z":8.892}},{"monsterId":0,"gadgetId":70510012,"configId":803138,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1786.7,"y":222.494,"z":772.288},"rot":{"x":344.724,"y":19.862,"z":338.897}},{"monsterId":0,"gadgetId":70540026,"configId":803542,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1687.943,"y":220.738,"z":820.836},"rot":{"x":0.0,"y":91.745,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803011,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1884.252,"y":212.225,"z":711.333},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803029,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1885.031,"y":212.747,"z":711.311},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803040,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1883.97,"y":212.098,"z":711.312},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540026,"configId":803528,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1635.659,"y":273.224,"z":623.884},"rot":{"x":0.0,"y":116.526,"z":352.532}},{"monsterId":0,"gadgetId":70540029,"configId":803501,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1625.858,"y":241.799,"z":719.241},"rot":{"x":344.455,"y":358.515,"z":10.847}},{"monsterId":0,"gadgetId":70540029,"configId":803497,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1581.369,"y":316.443,"z":591.499},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803511,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1592.746,"y":278.358,"z":551.324},"rot":{"x":0.0,"y":325.944,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803066,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1798.808,"y":218.314,"z":685.638},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803063,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1799.849,"y":218.99,"z":685.656},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803060,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1799.09,"y":218.441,"z":685.66},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803568,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1552.385,"y":272.121,"z":388.043},"rot":{"x":0.003,"y":37.079,"z":0.006}},{"monsterId":0,"gadgetId":70540026,"configId":803566,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1476.972,"y":228.043,"z":442.872},"rot":{"x":8.963,"y":44.06,"z":17.282}},{"monsterId":0,"gadgetId":70510012,"configId":803561,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1482.856,"y":220.143,"z":456.598},"rot":{"x":0.0,"y":57.417,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803564,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1472.454,"y":230.198,"z":455.441},"rot":{"x":345.847,"y":204.945,"z":342.92}},{"monsterId":0,"gadgetId":70520018,"configId":803155,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1479.52,"y":220.05,"z":452.839},"rot":{"x":4.227,"y":31.702,"z":353.195}},{"monsterId":0,"gadgetId":70520018,"configId":803557,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1485.209,"y":220.66,"z":460.161},"rot":{"x":16.739,"y":357.204,"z":20.579}},{"monsterId":0,"gadgetId":70510012,"configId":803559,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1475.642,"y":220.108,"z":460.178},"rot":{"x":8.531,"y":141.089,"z":14.444}},{"monsterId":0,"gadgetId":70540026,"configId":803565,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1482.98,"y":237.749,"z":451.353},"rot":{"x":8.963,"y":44.06,"z":17.282}},{"monsterId":0,"gadgetId":70540029,"configId":803505,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1437.019,"y":250.643,"z":491.71},"rot":{"x":4.79,"y":359.938,"z":358.515}},{"monsterId":0,"gadgetId":70540008,"configId":803055,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1852.922,"y":213.333,"z":707.635},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803047,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1853.967,"y":214.009,"z":707.652},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803043,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1853.203,"y":213.46,"z":707.656},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803540,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1861.137,"y":217.831,"z":807.898},"rot":{"x":0.694,"y":221.235,"z":0.608}},{"monsterId":0,"gadgetId":70540026,"configId":803543,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1626.511,"y":240.175,"z":822.38},"rot":{"x":0.0,"y":46.75,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803577,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1556.729,"y":299.353,"z":656.677},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803495,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1429.86,"y":239.767,"z":592.708},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803507,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1422.814,"y":236.237,"z":582.38},"rot":{"x":0.0,"y":248.635,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803418,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1432.034,"y":242.711,"z":583.968},"rot":{"x":0.0,"y":300.763,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803417,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1430.448,"y":244.167,"z":585.352},"rot":{"x":0.0,"y":305.97,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803416,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1429.882,"y":238.664,"z":580.683},"rot":{"x":330.862,"y":284.335,"z":344.568}},{"monsterId":0,"gadgetId":70540008,"configId":803201,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1694.502,"y":237.536,"z":659.656},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803189,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1695.547,"y":238.212,"z":659.674},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540029,"configId":803580,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1601.291,"y":287.575,"z":626.391},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":803514,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1604.105,"y":316.198,"z":621.355},"rot":{"x":0.0,"y":103.503,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":803136,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1593.538,"y":319.298,"z":608.197},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803176,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1705.227,"y":244.236,"z":639.536},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803174,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1706.272,"y":244.912,"z":639.554},"rot":{"x":80.732,"y":197.769,"z":283.477}}]},{"sceneId":3,"groupId":133210318,"blockId":0,"pos":{"x":-3685.4373,"y":0.0,"z":-644.2222},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":318041,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3731.876,"y":132.965,"z":-727.881},"rot":{"x":6.749,"y":226.268,"z":5.255}},{"monsterId":0,"gadgetId":70520009,"configId":318028,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3633.245,"y":122.369,"z":-764.791},"rot":{"x":3.187,"y":328.531,"z":335.921}},{"monsterId":0,"gadgetId":70520009,"configId":318013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3833.205,"y":128.759,"z":-669.032},"rot":{"x":358.423,"y":208.253,"z":359.153}},{"monsterId":0,"gadgetId":70520009,"configId":318014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3797.46,"y":127.679,"z":-658.582},"rot":{"x":11.247,"y":357.767,"z":356.74}},{"monsterId":0,"gadgetId":70540001,"configId":318018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3802.875,"y":239.075,"z":-590.456},"rot":{"x":350.255,"y":321.736,"z":14.686}},{"monsterId":0,"gadgetId":70540001,"configId":318017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3802.918,"y":238.549,"z":-590.753},"rot":{"x":350.255,"y":321.736,"z":14.686}},{"monsterId":0,"gadgetId":70540001,"configId":318016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3803.312,"y":238.432,"z":-590.008},"rot":{"x":350.255,"y":321.736,"z":14.686}},{"monsterId":0,"gadgetId":70540001,"configId":318034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3778.632,"y":122.666,"z":-624.05},"rot":{"x":356.502,"y":1.255,"z":356.353}},{"monsterId":0,"gadgetId":70540001,"configId":318035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3778.678,"y":122.927,"z":-624.859},"rot":{"x":356.502,"y":1.255,"z":356.353}},{"monsterId":0,"gadgetId":70540001,"configId":318036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3778.284,"y":123.296,"z":-624.585},"rot":{"x":356.502,"y":1.255,"z":356.353}},{"monsterId":0,"gadgetId":70520009,"configId":318019,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3781.326,"y":226.875,"z":-598.622},"rot":{"x":344.6,"y":320.837,"z":358.676}},{"monsterId":0,"gadgetId":70520009,"configId":318009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3753.722,"y":136.116,"z":-724.531},"rot":{"x":3.831,"y":121.935,"z":2.43}},{"monsterId":0,"gadgetId":70510007,"configId":318053,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3754.995,"y":120.661,"z":-644.966},"rot":{"x":359.803,"y":103.787,"z":4.551}},{"monsterId":0,"gadgetId":70510007,"configId":318051,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3758.624,"y":120.779,"z":-647.679},"rot":{"x":0.896,"y":269.164,"z":359.987}},{"monsterId":0,"gadgetId":70520009,"configId":318037,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3770.879,"y":167.206,"z":-607.878},"rot":{"x":342.988,"y":1.196,"z":352.016}},{"monsterId":0,"gadgetId":70520009,"configId":318027,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3736.327,"y":123.867,"z":-655.704},"rot":{"x":358.544,"y":216.497,"z":8.981}},{"monsterId":0,"gadgetId":70520009,"configId":318038,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3751.162,"y":157.009,"z":-610.898},"rot":{"x":342.964,"y":50.413,"z":351.804}},{"monsterId":0,"gadgetId":70520009,"configId":318026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3673.71,"y":201.512,"z":-553.96},"rot":{"x":3.648,"y":342.304,"z":6.168}},{"monsterId":0,"gadgetId":70510005,"configId":318007,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3742.106,"y":127.69,"z":-761.369},"rot":{"x":5.054,"y":257.312,"z":6.153}},{"monsterId":0,"gadgetId":70590036,"configId":318068,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3626.168,"y":194.165,"z":-633.423},"rot":{"x":6.834,"y":169.74,"z":349.235}},{"monsterId":0,"gadgetId":70520009,"configId":318024,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3647.586,"y":135.326,"z":-640.058},"rot":{"x":5.277,"y":133.937,"z":5.309}},{"monsterId":0,"gadgetId":70520005,"configId":318042,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3614.867,"y":211.456,"z":-630.897},"rot":{"x":347.421,"y":75.086,"z":354.444}},{"monsterId":0,"gadgetId":70520009,"configId":318012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3605.322,"y":217.493,"z":-613.486},"rot":{"x":6.341,"y":160.796,"z":344.601}},{"monsterId":0,"gadgetId":70540001,"configId":318065,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3588.965,"y":215.965,"z":-616.231},"rot":{"x":3.015,"y":131.958,"z":3.957}},{"monsterId":0,"gadgetId":70540001,"configId":318066,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3589.478,"y":216.286,"z":-615.633},"rot":{"x":3.015,"y":131.958,"z":3.957}},{"monsterId":0,"gadgetId":70540001,"configId":318067,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3589.447,"y":216.704,"z":-616.07},"rot":{"x":3.015,"y":131.958,"z":3.957}},{"monsterId":0,"gadgetId":70520005,"configId":318010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3621.116,"y":206.332,"z":-597.805},"rot":{"x":358.912,"y":5.436,"z":7.037}},{"monsterId":0,"gadgetId":70520031,"configId":318059,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3654.042,"y":112.742,"z":-764.183},"rot":{"x":352.908,"y":308.22,"z":355.93}},{"monsterId":0,"gadgetId":70520009,"configId":318008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3664.487,"y":150.95,"z":-621.549},"rot":{"x":6.796,"y":45.944,"z":358.675}},{"monsterId":0,"gadgetId":70520009,"configId":318011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3592.954,"y":206.819,"z":-586.92},"rot":{"x":350.499,"y":36.64,"z":353.008}},{"monsterId":0,"gadgetId":70540001,"configId":318023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3592.351,"y":212.557,"z":-561.327},"rot":{"x":15.792,"y":153.039,"z":352.929}},{"monsterId":0,"gadgetId":70540001,"configId":318022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3592.184,"y":212.283,"z":-560.813},"rot":{"x":15.792,"y":153.039,"z":352.929}},{"monsterId":0,"gadgetId":70540001,"configId":318021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3591.914,"y":211.783,"z":-561.447},"rot":{"x":15.792,"y":153.039,"z":352.929}},{"monsterId":0,"gadgetId":70510005,"configId":318049,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3665.821,"y":199.187,"z":-537.571},"rot":{"x":359.582,"y":351.344,"z":357.89}},{"monsterId":0,"gadgetId":70510005,"configId":318047,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3663.631,"y":199.024,"z":-539.063},"rot":{"x":349.382,"y":244.54,"z":0.022}},{"monsterId":0,"gadgetId":70520009,"configId":318039,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3812.651,"y":255.183,"z":-524.471},"rot":{"x":5.057,"y":212.094,"z":10.889}},{"monsterId":0,"gadgetId":70520009,"configId":318045,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3586.691,"y":147.001,"z":-762.934},"rot":{"x":5.568,"y":162.046,"z":351.916}},{"monsterId":0,"gadgetId":70520009,"configId":318044,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3585.336,"y":176.09,"z":-763.819},"rot":{"x":1.853,"y":178.683,"z":345.738}},{"monsterId":0,"gadgetId":70510007,"configId":318063,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3621.26,"y":120.97,"z":-732.919},"rot":{"x":0.825,"y":341.125,"z":356.883}},{"monsterId":0,"gadgetId":70520009,"configId":318005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3591.395,"y":181.189,"z":-732.789},"rot":{"x":353.241,"y":0.121,"z":14.076}},{"monsterId":0,"gadgetId":70520009,"configId":318025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3682.251,"y":141.002,"z":-720.294},"rot":{"x":10.06,"y":159.863,"z":0.449}},{"monsterId":0,"gadgetId":70520009,"configId":318040,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3673.346,"y":122.559,"z":-730.616},"rot":{"x":2.642,"y":97.567,"z":346.547}},{"monsterId":0,"gadgetId":70510007,"configId":318061,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3634.374,"y":120.974,"z":-722.451},"rot":{"x":7.18,"y":269.5,"z":6.132}},{"monsterId":0,"gadgetId":70520009,"configId":318043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3608.267,"y":127.666,"z":-688.41},"rot":{"x":336.927,"y":48.167,"z":351.106}}]},{"sceneId":3,"groupId":133210319,"blockId":0,"pos":{"x":-3960.5422,"y":0.0,"z":-652.7374},"spawns":[{"monsterId":0,"gadgetId":70520031,"configId":319048,"level":0,"poseId":0,"gatherItemId":101207,"pos":{"x":-3873.607,"y":151.702,"z":-765.151},"rot":{"x":1.313,"y":4.59,"z":353.979}},{"monsterId":0,"gadgetId":70520009,"configId":319031,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3883.443,"y":149.269,"z":-766.251},"rot":{"x":3.15,"y":303.494,"z":1.043}},{"monsterId":0,"gadgetId":70520009,"configId":319046,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3871.403,"y":147.395,"z":-757.116},"rot":{"x":7.445,"y":303.243,"z":352.298}},{"monsterId":0,"gadgetId":70520009,"configId":319025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3971.237,"y":206.309,"z":-717.767},"rot":{"x":9.458,"y":73.621,"z":354.584}},{"monsterId":0,"gadgetId":70520009,"configId":319035,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3954.497,"y":162.135,"z":-756.406},"rot":{"x":355.279,"y":53.189,"z":346.467}},{"monsterId":0,"gadgetId":70520009,"configId":319009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3960.586,"y":163.341,"z":-755.695},"rot":{"x":339.126,"y":328.167,"z":6.735}},{"monsterId":0,"gadgetId":70510007,"configId":319054,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-4083.169,"y":199.334,"z":-735.893},"rot":{"x":0.0,"y":117.114,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":319012,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3922.136,"y":126.567,"z":-758.594},"rot":{"x":19.159,"y":145.079,"z":2.854}},{"monsterId":0,"gadgetId":70510007,"configId":319056,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-4080.584,"y":199.239,"z":-728.567},"rot":{"x":0.0,"y":70.047,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":319036,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4090.328,"y":199.038,"z":-702.872},"rot":{"x":0.0,"y":142.268,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":319026,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4032.58,"y":213.164,"z":-709.124},"rot":{"x":357.982,"y":9.764,"z":9.458}},{"monsterId":0,"gadgetId":70520009,"configId":319007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3925.896,"y":129.606,"z":-703.271},"rot":{"x":356.313,"y":303.216,"z":3.989}},{"monsterId":0,"gadgetId":70520005,"configId":319062,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4050.761,"y":212.377,"z":-689.352},"rot":{"x":4.415,"y":240.567,"z":5.568}},{"monsterId":0,"gadgetId":70510005,"configId":319060,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4029.911,"y":215.98,"z":-677.168},"rot":{"x":5.261,"y":285.014,"z":8.202}},{"monsterId":0,"gadgetId":70510005,"configId":319058,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4021.698,"y":217.144,"z":-672.014},"rot":{"x":356.443,"y":77.848,"z":4.082}},{"monsterId":0,"gadgetId":70520026,"configId":319045,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3994.1,"y":219.836,"z":-679.557},"rot":{"x":5.598,"y":71.576,"z":356.631}},{"monsterId":0,"gadgetId":70520026,"configId":319044,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3996.133,"y":219.743,"z":-681.087},"rot":{"x":1.472,"y":25.659,"z":353.636}},{"monsterId":0,"gadgetId":70520026,"configId":319043,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3995.219,"y":218.685,"z":-678.677},"rot":{"x":356.172,"y":336.918,"z":354.705}},{"monsterId":0,"gadgetId":70520005,"configId":319061,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3965.397,"y":214.903,"z":-674.866},"rot":{"x":3.114,"y":0.203,"z":354.454}},{"monsterId":0,"gadgetId":70520009,"configId":319033,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4019.486,"y":222.362,"z":-663.252},"rot":{"x":4.561,"y":330.533,"z":16.705}},{"monsterId":0,"gadgetId":70520009,"configId":319005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4015.063,"y":219.456,"z":-651.163},"rot":{"x":346.677,"y":40.163,"z":18.866}},{"monsterId":0,"gadgetId":70540001,"configId":319020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3987.626,"y":220.061,"z":-650.84},"rot":{"x":6.705,"y":164.024,"z":4.472}},{"monsterId":0,"gadgetId":70540001,"configId":319019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3987.469,"y":219.629,"z":-650.445},"rot":{"x":6.705,"y":164.024,"z":4.472}},{"monsterId":0,"gadgetId":70540001,"configId":319018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3987.378,"y":219.286,"z":-651.219},"rot":{"x":6.705,"y":164.024,"z":4.472}},{"monsterId":0,"gadgetId":70520009,"configId":319034,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3916.515,"y":193.314,"z":-640.986},"rot":{"x":349.826,"y":3.383,"z":335.244}},{"monsterId":0,"gadgetId":70520005,"configId":319006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3971.703,"y":200.549,"z":-602.0},"rot":{"x":355.416,"y":60.432,"z":0.315}},{"monsterId":0,"gadgetId":70520009,"configId":319011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3880.708,"y":229.353,"z":-611.921},"rot":{"x":352.825,"y":18.74,"z":350.886}},{"monsterId":0,"gadgetId":70520026,"configId":319004,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3849.376,"y":229.094,"z":-607.565},"rot":{"x":0.0,"y":126.731,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":319003,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3851.788,"y":228.814,"z":-606.797},"rot":{"x":0.0,"y":80.731,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":319002,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3849.244,"y":227.804,"z":-606.273},"rot":{"x":0.0,"y":31.731,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3908.633,"y":213.66,"z":-585.052},"rot":{"x":340.234,"y":99.003,"z":354.171}},{"monsterId":0,"gadgetId":70540001,"configId":319023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3908.721,"y":213.207,"z":-584.66},"rot":{"x":340.234,"y":99.003,"z":354.171}},{"monsterId":0,"gadgetId":70540001,"configId":319022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3907.891,"y":213.201,"z":-584.845},"rot":{"x":340.234,"y":99.003,"z":354.171}},{"monsterId":0,"gadgetId":70520005,"configId":319032,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3889.24,"y":221.156,"z":-572.292},"rot":{"x":15.16,"y":245.658,"z":4.485}},{"monsterId":0,"gadgetId":70520005,"configId":319010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3915.563,"y":203.852,"z":-564.66},"rot":{"x":345.754,"y":107.133,"z":356.159}},{"monsterId":0,"gadgetId":70520005,"configId":319008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3849.589,"y":253.413,"z":-550.787},"rot":{"x":2.423,"y":213.098,"z":5.665}},{"monsterId":0,"gadgetId":70540001,"configId":319030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3887.099,"y":256.271,"z":-512.349},"rot":{"x":9.491,"y":186.309,"z":356.319}},{"monsterId":0,"gadgetId":70540001,"configId":319029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3886.704,"y":255.935,"z":-512.037},"rot":{"x":9.491,"y":186.309,"z":356.319}},{"monsterId":0,"gadgetId":70540001,"configId":319028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3886.848,"y":255.517,"z":-512.764},"rot":{"x":9.491,"y":186.309,"z":356.319}},{"monsterId":0,"gadgetId":70510007,"configId":319041,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-3991.803,"y":199.607,"z":-559.585},"rot":{"x":356.364,"y":82.673,"z":6.742}},{"monsterId":0,"gadgetId":70540001,"configId":319016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4039.916,"y":217.506,"z":-640.243},"rot":{"x":11.024,"y":255.978,"z":358.927}},{"monsterId":0,"gadgetId":70540001,"configId":319015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4039.479,"y":217.164,"z":-640.485},"rot":{"x":11.024,"y":255.978,"z":358.927}},{"monsterId":0,"gadgetId":70540001,"configId":319014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4040.203,"y":216.729,"z":-640.587},"rot":{"x":11.024,"y":255.978,"z":358.927}},{"monsterId":0,"gadgetId":70520025,"configId":319037,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-4093.143,"y":198.95,"z":-708.211},"rot":{"x":0.0,"y":334.89,"z":0.0}}]},{"sceneId":3,"groupId":133102801,"blockId":0,"pos":{"x":1525.4576,"y":0.0,"z":254.80917},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":801241,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1408.284,"y":217.503,"z":100.008},"rot":{"x":349.64,"y":359.26,"z":8.149}},{"monsterId":0,"gadgetId":70510006,"configId":801064,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1452.495,"y":221.101,"z":75.447},"rot":{"x":352.914,"y":0.072,"z":358.835}},{"monsterId":0,"gadgetId":70510006,"configId":801360,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1531.226,"y":271.447,"z":-84.447},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801362,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1482.806,"y":254.801,"z":-140.05},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801364,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1519.865,"y":254.978,"z":-164.589},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801231,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1387.432,"y":194.065,"z":-180.131},"rot":{"x":0.0,"y":300.202,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801230,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1380.304,"y":191.404,"z":-184.383},"rot":{"x":0.0,"y":249.565,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801114,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1672.472,"y":202.285,"z":55.82},"rot":{"x":339.68,"y":171.943,"z":24.062}},{"monsterId":0,"gadgetId":70510012,"configId":801115,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1675.873,"y":202.325,"z":52.724},"rot":{"x":347.546,"y":153.633,"z":21.134}},{"monsterId":0,"gadgetId":70510006,"configId":801203,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1757.498,"y":209.911,"z":45.812},"rot":{"x":352.035,"y":359.431,"z":9.196}},{"monsterId":0,"gadgetId":70510006,"configId":801072,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1633.749,"y":205.931,"z":126.961},"rot":{"x":357.296,"y":0.216,"z":350.866}},{"monsterId":0,"gadgetId":70510005,"configId":801104,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1787.221,"y":200.545,"z":125.53},"rot":{"x":3.57,"y":0.112,"z":3.577}},{"monsterId":0,"gadgetId":70510012,"configId":801088,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1798.314,"y":200.969,"z":106.873},"rot":{"x":0.0,"y":253.606,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":801105,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1788.968,"y":201.36,"z":120.756},"rot":{"x":6.298,"y":359.741,"z":12.241}},{"monsterId":0,"gadgetId":70510012,"configId":801489,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1822.358,"y":219.107,"z":515.893},"rot":{"x":358.354,"y":240.575,"z":344.537}},{"monsterId":0,"gadgetId":70510012,"configId":801488,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1826.334,"y":234.798,"z":508.882},"rot":{"x":351.133,"y":144.834,"z":346.362}},{"monsterId":0,"gadgetId":70510012,"configId":801487,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1824.493,"y":218.977,"z":518.048},"rot":{"x":358.653,"y":285.627,"z":343.781}},{"monsterId":0,"gadgetId":70510005,"configId":801475,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1606.893,"y":200.74,"z":318.381},"rot":{"x":5.739,"y":354.507,"z":338.422}},{"monsterId":0,"gadgetId":70510007,"configId":801017,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1522.276,"y":199.857,"z":231.611},"rot":{"x":352.029,"y":359.627,"z":5.356}},{"monsterId":0,"gadgetId":70520002,"configId":801030,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1564.171,"y":218.723,"z":205.56},"rot":{"x":7.002,"y":78.516,"z":15.83}},{"monsterId":0,"gadgetId":70520002,"configId":801029,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1564.595,"y":218.75,"z":203.193},"rot":{"x":359.268,"y":11.583,"z":3.566}},{"monsterId":0,"gadgetId":70510005,"configId":801472,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1567.154,"y":203.031,"z":318.225},"rot":{"x":358.363,"y":48.359,"z":345.042}},{"monsterId":0,"gadgetId":70510005,"configId":801494,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1569.029,"y":202.865,"z":318.347},"rot":{"x":351.75,"y":16.263,"z":350.311}},{"monsterId":0,"gadgetId":70510005,"configId":801473,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1578.647,"y":202.301,"z":318.467},"rot":{"x":21.284,"y":209.751,"z":8.931}},{"monsterId":0,"gadgetId":70510012,"configId":801491,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1760.717,"y":291.789,"z":429.599},"rot":{"x":0.0,"y":213.497,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801490,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1760.948,"y":291.767,"z":431.16},"rot":{"x":0.0,"y":154.482,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801484,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1649.156,"y":278.9,"z":506.177},"rot":{"x":0.0,"y":253.521,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801485,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1647.513,"y":278.83,"z":501.188},"rot":{"x":0.0,"y":92.031,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801513,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1530.304,"y":229.723,"z":776.418},"rot":{"x":9.216,"y":14.907,"z":352.203}},{"monsterId":0,"gadgetId":70520003,"configId":801512,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1530.352,"y":229.122,"z":779.812},"rot":{"x":350.536,"y":240.258,"z":329.498}},{"monsterId":0,"gadgetId":70520003,"configId":801516,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1568.891,"y":229.983,"z":721.981},"rot":{"x":329.937,"y":155.214,"z":348.788}},{"monsterId":0,"gadgetId":70540026,"configId":801226,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1397.362,"y":168.102,"z":-240.986},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801320,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1598.205,"y":250.923,"z":261.874},"rot":{"x":0.0,"y":340.37,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801312,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1587.903,"y":300.602,"z":185.471},"rot":{"x":359.707,"y":297.121,"z":352.533}},{"monsterId":0,"gadgetId":70510006,"configId":801471,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1613.605,"y":312.259,"z":410.784},"rot":{"x":0.0,"y":85.176,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801470,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1618.522,"y":313.413,"z":408.646},"rot":{"x":0.0,"y":215.855,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801469,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1615.167,"y":312.659,"z":410.127},"rot":{"x":0.0,"y":41.035,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801195,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1484.898,"y":218.97,"z":516.958},"rot":{"x":0.0,"y":67.038,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801193,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1485.105,"y":218.97,"z":515.14},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801515,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1561.855,"y":231.565,"z":718.171},"rot":{"x":18.729,"y":294.749,"z":318.655}},{"monsterId":0,"gadgetId":70520003,"configId":801514,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1563.81,"y":231.184,"z":718.681},"rot":{"x":336.27,"y":150.357,"z":16.941}},{"monsterId":0,"gadgetId":70520003,"configId":801511,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1565.617,"y":231.084,"z":719.273},"rot":{"x":28.501,"y":288.374,"z":311.898}},{"monsterId":0,"gadgetId":70510005,"configId":801483,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1396.456,"y":214.763,"z":592.777},"rot":{"x":358.717,"y":354.024,"z":28.193}},{"monsterId":0,"gadgetId":70510005,"configId":801482,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1395.447,"y":214.485,"z":594.548},"rot":{"x":15.543,"y":209.95,"z":342.528}},{"monsterId":0,"gadgetId":70510007,"configId":801185,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1406.788,"y":200.0,"z":366.043},"rot":{"x":0.0,"y":68.394,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801181,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1404.607,"y":200.0,"z":367.196},"rot":{"x":0.0,"y":188.243,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801149,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1286.955,"y":199.637,"z":-139.26},"rot":{"x":9.398,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801040,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1383.479,"y":160.873,"z":-219.512},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801229,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1359.845,"y":166.737,"z":-281.43},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801026,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1364.883,"y":159.583,"z":-282.735},"rot":{"x":0.0,"y":316.595,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801011,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":1365.541,"y":159.632,"z":-285.276},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801077,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1326.474,"y":199.794,"z":243.515},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801080,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1249.356,"y":200.0,"z":185.312},"rot":{"x":0.0,"y":69.171,"z":0.015}},{"monsterId":0,"gadgetId":70510007,"configId":801081,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1182.479,"y":200.051,"z":217.465},"rot":{"x":11.037,"y":218.423,"z":357.486}},{"monsterId":0,"gadgetId":70510006,"configId":801197,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1018.118,"y":201.213,"z":411.047},"rot":{"x":3.195,"y":358.194,"z":17.096}},{"monsterId":0,"gadgetId":70510007,"configId":801070,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1022.816,"y":199.505,"z":216.212},"rot":{"x":356.431,"y":359.889,"z":3.577}}]},{"sceneId":3,"groupId":166001316,"blockId":0,"pos":{"x":957.541,"y":0.0,"z":872.817},"spawns":[{"monsterId":0,"gadgetId":70540032,"configId":316001,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":957.541,"y":1019.692,"z":872.817},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133213362,"blockId":0,"pos":{"x":-3548.835,"y":0.0,"z":-3399.6562},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":362004,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3551.297,"y":214.357,"z":-3415.076},"rot":{"x":356.142,"y":1.082,"z":328.678}},{"monsterId":0,"gadgetId":70510005,"configId":362006,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3537.708,"y":207.975,"z":-3404.764},"rot":{"x":0.811,"y":359.819,"z":334.884}},{"monsterId":0,"gadgetId":70590036,"configId":362001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3547.192,"y":206.952,"z":-3384.476},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":362002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3559.142,"y":225.567,"z":-3394.308},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001314,"blockId":0,"pos":{"x":942.4287,"y":0.0,"z":904.8747},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":314005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":943.189,"y":1020.217,"z":888.526},"rot":{"x":4.156,"y":323.368,"z":349.251}},{"monsterId":0,"gadgetId":70520002,"configId":314004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":945.558,"y":1014.838,"z":907.907},"rot":{"x":337.741,"y":163.008,"z":8.306}},{"monsterId":0,"gadgetId":70520002,"configId":314003,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":938.539,"y":1015.249,"z":918.191},"rot":{"x":357.456,"y":108.839,"z":341.34}}]},{"sceneId":3,"groupId":166001324,"blockId":0,"pos":{"x":1068.2672,"y":0.0,"z":879.5757},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":324002,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1065.163,"y":1010.967,"z":876.382},"rot":{"x":353.016,"y":0.703,"z":348.517}},{"monsterId":0,"gadgetId":70520001,"configId":324001,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1071.393,"y":1012.978,"z":879.458},"rot":{"x":0.0,"y":307.29,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":324003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1068.246,"y":1012.019,"z":882.887},"rot":{"x":349.225,"y":357.723,"z":23.803}}]},{"sceneId":3,"groupId":133104806,"blockId":0,"pos":{"x":393.27173,"y":0.0,"z":886.01697},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":806057,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":280.3,"y":226.051,"z":927.323},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":806027,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":508.851,"y":235.967,"z":901.8},"rot":{"x":0.0,"y":105.233,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":806029,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":465.071,"y":218.303,"z":908.147},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":806017,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":464.81,"y":218.365,"z":939.055},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":806039,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":291.5,"y":217.094,"z":896.088},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":806035,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":342.089,"y":204.661,"z":899.06},"rot":{"x":0.0,"y":163.302,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":806033,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":338.415,"y":211.185,"z":937.314},"rot":{"x":346.975,"y":2.589,"z":355.93}},{"monsterId":0,"gadgetId":70520003,"configId":806059,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":378.745,"y":203.44,"z":898.039},"rot":{"x":0.0,"y":249.141,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":806052,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":329.712,"y":201.094,"z":873.648},"rot":{"x":0.0,"y":105.704,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":806051,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":330.489,"y":201.211,"z":875.444},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":806037,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":427.973,"y":207.088,"z":932.593},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":806031,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":423.048,"y":223.421,"z":990.205},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":806050,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":437.174,"y":181.903,"z":902.61},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":806025,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":438.651,"y":180.591,"z":847.957},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":806011,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":457.102,"y":199.127,"z":868.616},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":806015,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":346.545,"y":185.491,"z":825.302},"rot":{"x":0.0,"y":0.002,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":806009,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":348.469,"y":197.028,"z":811.746},"rot":{"x":21.188,"y":17.611,"z":355.069}},{"monsterId":0,"gadgetId":70510007,"configId":806023,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":410.969,"y":181.499,"z":797.535},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":806013,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":452.251,"y":190.472,"z":801.84},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133104804,"blockId":0,"pos":{"x":1470.3318,"y":0.0,"z":515.3378},"spawns":[{"monsterId":0,"gadgetId":70540012,"configId":804003,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1909.678,"y":212.929,"z":744.943},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804024,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1885.324,"y":220.345,"z":571.481},"rot":{"x":0.0,"y":284.455,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804033,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1913.355,"y":228.439,"z":573.827},"rot":{"x":1.879,"y":212.297,"z":350.624}},{"monsterId":0,"gadgetId":70540012,"configId":804077,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1667.118,"y":214.292,"z":707.369},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804083,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1765.816,"y":212.243,"z":560.934},"rot":{"x":0.0,"y":288.922,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804060,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1793.796,"y":211.796,"z":738.76},"rot":{"x":0.0,"y":51.285,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804070,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1824.646,"y":207.516,"z":739.951},"rot":{"x":0.0,"y":325.179,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804069,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1814.577,"y":207.516,"z":747.104},"rot":{"x":0.0,"y":246.699,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804063,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1818.399,"y":208.058,"z":730.576},"rot":{"x":0.0,"y":250.034,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804087,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1760.961,"y":219.089,"z":638.444},"rot":{"x":0.0,"y":306.143,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804058,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1852.294,"y":214.228,"z":637.464},"rot":{"x":0.0,"y":336.946,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804042,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1854.179,"y":212.588,"z":592.083},"rot":{"x":0.0,"y":296.155,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804075,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1781.737,"y":216.746,"z":702.412},"rot":{"x":0.0,"y":321.399,"z":0.001}},{"monsterId":0,"gadgetId":70540012,"configId":804021,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1886.677,"y":216.488,"z":623.314},"rot":{"x":0.0,"y":301.413,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804016,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1918.858,"y":216.488,"z":663.745},"rot":{"x":0.0,"y":316.542,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804025,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1914.501,"y":223.031,"z":599.019},"rot":{"x":0.0,"y":261.846,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804023,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1911.846,"y":219.461,"z":621.92},"rot":{"x":0.0,"y":313.182,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804022,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1923.828,"y":221.248,"z":618.425},"rot":{"x":0.0,"y":49.39,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804002,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1901.454,"y":214.749,"z":704.239},"rot":{"x":0.0,"y":276.369,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":804081,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":1690.567,"y":212.484,"z":717.15},"rot":{"x":0.0,"y":29.296,"z":0.0}},{"monsterId":0,"gadgetId":70540015,"configId":804080,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":1033.43,"y":206.38,"z":381.332},"rot":{"x":18.637,"y":63.408,"z":13.988}},{"monsterId":0,"gadgetId":70540015,"configId":804046,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":1033.396,"y":206.398,"z":381.405},"rot":{"x":3.878,"y":81.312,"z":355.801}},{"monsterId":0,"gadgetId":70540015,"configId":804283,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":1021.039,"y":207.682,"z":348.889},"rot":{"x":17.029,"y":343.502,"z":19.125}},{"monsterId":0,"gadgetId":70540015,"configId":804260,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":1021.022,"y":207.659,"z":348.97},"rot":{"x":0.895,"y":0.007,"z":0.0}},{"monsterId":0,"gadgetId":70540015,"configId":804178,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":945.654,"y":209.011,"z":284.079},"rot":{"x":16.17,"y":300.316,"z":19.39}},{"monsterId":0,"gadgetId":70540015,"configId":804160,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":945.619,"y":209.021,"z":284.152},"rot":{"x":0.0,"y":316.745,"z":0.0}},{"monsterId":0,"gadgetId":70540015,"configId":804130,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":937.805,"y":208.046,"z":301.91},"rot":{"x":17.198,"y":83.686,"z":17.573}},{"monsterId":0,"gadgetId":70540015,"configId":804122,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":937.77,"y":208.059,"z":301.982},"rot":{"x":1.485,"y":100.619,"z":358.628}},{"monsterId":0,"gadgetId":70540015,"configId":804242,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":914.79,"y":208.491,"z":274.674},"rot":{"x":20.65,"y":300.897,"z":10.209}},{"monsterId":0,"gadgetId":70540015,"configId":804239,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":914.754,"y":208.501,"z":274.747},"rot":{"x":6.912,"y":319.813,"z":353.047}},{"monsterId":0,"gadgetId":70540015,"configId":804236,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":887.447,"y":208.362,"z":285.47},"rot":{"x":16.17,"y":68.792,"z":19.39}},{"monsterId":0,"gadgetId":70540015,"configId":804203,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":887.412,"y":208.352,"z":285.544},"rot":{"x":0.0,"y":85.221,"z":0.0}},{"monsterId":0,"gadgetId":70540015,"configId":804252,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":860.788,"y":207.278,"z":267.548},"rot":{"x":11.214,"y":347.148,"z":34.404}},{"monsterId":0,"gadgetId":70540015,"configId":804245,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":860.753,"y":207.289,"z":267.622},"rot":{"x":351.617,"y":359.046,"z":12.964}}]},{"sceneId":3,"groupId":133104802,"blockId":0,"pos":{"x":267.5709,"y":0.0,"z":532.01514},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":802134,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":432.576,"y":215.48,"z":417.225},"rot":{"x":5.702,"y":0.5,"z":3.373}},{"monsterId":0,"gadgetId":70540026,"configId":802014,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":452.341,"y":216.043,"z":485.85},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802394,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":539.151,"y":209.171,"z":471.721},"rot":{"x":2.903,"y":358.939,"z":356.918}},{"monsterId":0,"gadgetId":70540026,"configId":802130,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":534.371,"y":204.887,"z":478.804},"rot":{"x":0.0,"y":53.777,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":802131,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":549.812,"y":204.798,"z":481.375},"rot":{"x":0.0,"y":48.41,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802200,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":635.094,"y":213.95,"z":488.784},"rot":{"x":357.874,"y":359.421,"z":3.176}},{"monsterId":0,"gadgetId":70510006,"configId":802237,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":571.457,"y":202.073,"z":545.498},"rot":{"x":2.682,"y":0.053,"z":2.684}},{"monsterId":0,"gadgetId":70540026,"configId":802015,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":445.918,"y":215.099,"z":480.792},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":802542,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":422.755,"y":200.017,"z":522.262},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802363,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":477.349,"y":207.915,"z":628.834},"rot":{"x":353.753,"y":359.951,"z":354.681}},{"monsterId":0,"gadgetId":70510012,"configId":802149,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":144.941,"y":201.031,"z":733.437},"rot":{"x":15.303,"y":283.904,"z":5.381}},{"monsterId":0,"gadgetId":70510007,"configId":802154,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":193.758,"y":199.672,"z":746.786},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":802147,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":109.208,"y":209.949,"z":791.498},"rot":{"x":0.0,"y":263.28,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":802027,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":111.698,"y":210.15,"z":803.458},"rot":{"x":357.589,"y":250.313,"z":353.293}},{"monsterId":0,"gadgetId":70510006,"configId":802113,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":225.042,"y":208.814,"z":908.439},"rot":{"x":357.084,"y":40.58,"z":347.129}},{"monsterId":0,"gadgetId":70510006,"configId":802165,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":232.414,"y":209.694,"z":912.815},"rot":{"x":351.197,"y":264.082,"z":9.71}},{"monsterId":0,"gadgetId":70510012,"configId":802331,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":92.66,"y":213.231,"z":795.262},"rot":{"x":356.675,"y":210.251,"z":348.859}},{"monsterId":0,"gadgetId":70510012,"configId":802311,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":98.154,"y":207.343,"z":730.141},"rot":{"x":0.0,"y":0.0,"z":331.15}},{"monsterId":0,"gadgetId":70510012,"configId":802038,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":16.023,"y":212.232,"z":779.911},"rot":{"x":0.0,"y":85.648,"z":313.073}},{"monsterId":0,"gadgetId":70510012,"configId":802007,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":19.063,"y":212.079,"z":781.18},"rot":{"x":0.0,"y":213.932,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802420,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":21.206,"y":235.858,"z":818.245},"rot":{"x":356.742,"y":0.704,"z":335.622}},{"monsterId":0,"gadgetId":70510012,"configId":802037,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":7.892,"y":212.363,"z":764.416},"rot":{"x":10.227,"y":200.698,"z":22.089}},{"monsterId":0,"gadgetId":70510005,"configId":802156,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":98.876,"y":201.546,"z":618.587},"rot":{"x":359.994,"y":359.613,"z":359.105}},{"monsterId":0,"gadgetId":70510005,"configId":802160,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":108.969,"y":200.093,"z":614.538},"rot":{"x":0.0,"y":65.93,"z":359.986}},{"monsterId":0,"gadgetId":70510005,"configId":802158,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":109.362,"y":200.915,"z":619.505},"rot":{"x":346.301,"y":287.888,"z":18.692}},{"monsterId":0,"gadgetId":70540026,"configId":802681,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-25.798,"y":248.168,"z":668.952},"rot":{"x":0.0,"y":177.671,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":802498,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":591.438,"y":200.0,"z":124.074},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802135,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":681.186,"y":203.424,"z":268.178},"rot":{"x":351.167,"y":358.988,"z":2.808}},{"monsterId":0,"gadgetId":70510007,"configId":802234,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":579.782,"y":198.696,"z":293.486},"rot":{"x":349.447,"y":359.562,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802468,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":509.313,"y":206.399,"z":322.673},"rot":{"x":356.425,"y":0.023,"z":357.321}},{"monsterId":0,"gadgetId":70510006,"configId":802198,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":364.7,"y":225.643,"z":395.159},"rot":{"x":354.153,"y":359.472,"z":10.321}},{"monsterId":0,"gadgetId":70540026,"configId":802022,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":362.282,"y":219.46,"z":405.495},"rot":{"x":0.0,"y":79.233,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802206,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":359.429,"y":219.747,"z":191.327},"rot":{"x":355.569,"y":0.58,"z":356.389}},{"monsterId":0,"gadgetId":70510006,"configId":802201,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":158.086,"y":243.396,"z":221.856},"rot":{"x":9.523,"y":358.928,"z":347.654}},{"monsterId":0,"gadgetId":70540029,"configId":802075,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":112.753,"y":275.657,"z":321.926},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802043,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":102.318,"y":256.51,"z":183.706},"rot":{"x":2.679,"y":359.916,"z":356.424}},{"monsterId":0,"gadgetId":70510012,"configId":802054,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":78.372,"y":267.564,"z":223.835},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802205,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":19.041,"y":269.756,"z":347.095},"rot":{"x":12.327,"y":359.907,"z":352.158}},{"monsterId":0,"gadgetId":70540029,"configId":802067,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-51.548,"y":323.335,"z":192.5},"rot":{"x":5.077,"y":4.066,"z":333.383}},{"monsterId":0,"gadgetId":70510006,"configId":802826,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-267.005,"y":237.929,"z":79.698},"rot":{"x":12.147,"y":2.093,"z":19.481}},{"monsterId":0,"gadgetId":70510006,"configId":802069,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":410.552,"y":203.062,"z":184.739},"rot":{"x":3.102,"y":0.113,"z":3.449}},{"monsterId":0,"gadgetId":70510007,"configId":802227,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":480.17,"y":199.814,"z":102.824},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":802226,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":478.081,"y":199.721,"z":105.152},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802582,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":211.868,"y":238.352,"z":127.031},"rot":{"x":3.549,"y":0.864,"z":1.84}},{"monsterId":0,"gadgetId":70510005,"configId":802456,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":201.049,"y":230.153,"z":160.589},"rot":{"x":342.693,"y":144.108,"z":7.031}},{"monsterId":0,"gadgetId":70510005,"configId":802454,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":195.225,"y":229.388,"z":161.631},"rot":{"x":6.667,"y":76.212,"z":8.359}},{"monsterId":0,"gadgetId":70510007,"configId":802361,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":628.984,"y":199.765,"z":573.716},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":802575,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":535.121,"y":200.0,"z":666.346},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":802362,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":714.486,"y":200.0,"z":526.043},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":802099,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-103.81,"y":261.478,"z":713.055},"rot":{"x":345.317,"y":259.119,"z":348.825}},{"monsterId":0,"gadgetId":70510012,"configId":802097,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-106.801,"y":261.639,"z":716.568},"rot":{"x":0.0,"y":247.835,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":802700,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-84.743,"y":335.266,"z":741.035},"rot":{"x":355.391,"y":359.718,"z":6.99}},{"monsterId":0,"gadgetId":70510006,"configId":802707,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":91.351,"y":259.132,"z":959.51},"rot":{"x":348.409,"y":0.262,"z":7.005}},{"monsterId":0,"gadgetId":70510012,"configId":802673,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":170.808,"y":211.276,"z":867.641},"rot":{"x":20.607,"y":157.277,"z":17.32}},{"monsterId":0,"gadgetId":70510005,"configId":802683,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":219.49,"y":219.643,"z":832.762},"rot":{"x":341.695,"y":187.271,"z":11.938}},{"monsterId":0,"gadgetId":70510012,"configId":802675,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":244.481,"y":212.8,"z":891.718},"rot":{"x":29.816,"y":253.119,"z":0.261}},{"monsterId":0,"gadgetId":70510006,"configId":802115,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":229.445,"y":207.547,"z":942.474},"rot":{"x":349.344,"y":220.977,"z":0.122}},{"monsterId":0,"gadgetId":70510007,"configId":802367,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":509.571,"y":199.865,"z":743.417},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":802368,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":536.913,"y":199.877,"z":713.321},"rot":{"x":0.0,"y":274.505,"z":0.0}}]},{"sceneId":3,"groupId":133104801,"blockId":0,"pos":{"x":783.34564,"y":0.0,"z":826.92566},"spawns":[{"monsterId":0,"gadgetId":70540029,"configId":801259,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":618.085,"y":247.41,"z":714.775},"rot":{"x":0.0,"y":280.496,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801136,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":617.171,"y":247.404,"z":715.552},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":801050,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":721.672,"y":225.079,"z":715.567},"rot":{"x":327.546,"y":344.272,"z":7.825}},{"monsterId":0,"gadgetId":70510005,"configId":801049,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":719.007,"y":225.034,"z":715.115},"rot":{"x":335.634,"y":51.004,"z":329.035}},{"monsterId":0,"gadgetId":70540026,"configId":801256,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":714.15,"y":257.234,"z":738.231},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801042,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":717.913,"y":268.208,"z":742.16},"rot":{"x":0.0,"y":286.008,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801029,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":719.45,"y":268.943,"z":744.293},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801010,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":620.178,"y":227.305,"z":767.63},"rot":{"x":356.518,"y":0.403,"z":312.992}},{"monsterId":0,"gadgetId":70540026,"configId":801257,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":718.378,"y":255.91,"z":752.533},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801040,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":721.165,"y":253.757,"z":826.802},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801033,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":663.564,"y":252.965,"z":839.792},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":801067,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":736.689,"y":221.767,"z":837.308},"rot":{"x":0.0,"y":206.888,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801175,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":655.486,"y":217.369,"z":866.333},"rot":{"x":0.0,"y":225.482,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801244,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":678.728,"y":217.821,"z":851.179},"rot":{"x":11.47,"y":359.73,"z":357.316}},{"monsterId":0,"gadgetId":70520002,"configId":801051,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":753.934,"y":219.649,"z":856.871},"rot":{"x":8.631,"y":357.846,"z":332.019}},{"monsterId":0,"gadgetId":70520002,"configId":801018,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":762.605,"y":219.98,"z":857.864},"rot":{"x":331.129,"y":279.531,"z":355.365}},{"monsterId":0,"gadgetId":70520002,"configId":801017,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":761.193,"y":219.767,"z":860.266},"rot":{"x":6.14,"y":0.3,"z":5.581}},{"monsterId":0,"gadgetId":70540029,"configId":801260,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":548.862,"y":231.087,"z":761.436},"rot":{"x":0.0,"y":280.496,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801088,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":621.687,"y":211.268,"z":939.011},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801225,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":652.896,"y":218.871,"z":954.041},"rot":{"x":0.0,"y":0.0,"z":9.418}},{"monsterId":0,"gadgetId":70510012,"configId":801227,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":632.6,"y":224.512,"z":980.619},"rot":{"x":0.0,"y":274.884,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801258,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":605.919,"y":262.706,"z":989.948},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801008,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":785.191,"y":226.0,"z":794.535},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801001,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":806.157,"y":253.084,"z":696.252},"rot":{"x":0.0,"y":335.777,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801219,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":788.388,"y":237.76,"z":875.451},"rot":{"x":0.0,"y":106.182,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801185,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":844.431,"y":269.089,"z":854.936},"rot":{"x":0.0,"y":187.367,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801032,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":836.235,"y":298.447,"z":862.095},"rot":{"x":0.0,"y":73.386,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801031,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":843.375,"y":288.458,"z":871.712},"rot":{"x":0.0,"y":105.787,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801030,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":853.373,"y":276.019,"z":867.385},"rot":{"x":0.0,"y":195.569,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801217,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":787.989,"y":239.161,"z":901.396},"rot":{"x":0.0,"y":221.922,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801187,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":880.562,"y":246.423,"z":781.853},"rot":{"x":0.0,"y":210.583,"z":12.204}},{"monsterId":0,"gadgetId":70520002,"configId":801215,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":807.411,"y":245.278,"z":913.079},"rot":{"x":0.0,"y":36.805,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801214,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":808.97,"y":245.534,"z":913.966},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801172,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":827.756,"y":275.233,"z":947.457},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801171,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":826.557,"y":285.829,"z":936.86},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801170,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":833.891,"y":276.179,"z":940.817},"rot":{"x":0.0,"y":168.567,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801169,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":833.384,"y":264.627,"z":946.345},"rot":{"x":0.0,"y":238.529,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801245,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":729.68,"y":286.815,"z":984.667},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801229,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":953.831,"y":254.577,"z":1004.924},"rot":{"x":308.086,"y":297.52,"z":35.909}},{"monsterId":0,"gadgetId":70540029,"configId":801251,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1016.982,"y":281.474,"z":926.076},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801250,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1013.67,"y":281.589,"z":925.664},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801249,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1010.099,"y":270.095,"z":913.914},"rot":{"x":0.0,"y":292.378,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801248,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1009.819,"y":260.996,"z":907.458},"rot":{"x":0.0,"y":257.875,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801068,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":955.816,"y":266.555,"z":745.676},"rot":{"x":0.0,"y":112.719,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801045,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":959.628,"y":271.993,"z":739.135},"rot":{"x":0.0,"y":112.719,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801070,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":977.362,"y":253.285,"z":742.114},"rot":{"x":0.0,"y":189.299,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801058,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":777.384,"y":210.63,"z":613.875},"rot":{"x":0.0,"y":237.79,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801056,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":775.927,"y":210.467,"z":613.984},"rot":{"x":0.0,"y":312.556,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801166,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":788.143,"y":234.616,"z":679.021},"rot":{"x":338.93,"y":350.479,"z":3.443}},{"monsterId":0,"gadgetId":70540026,"configId":801230,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":810.952,"y":239.863,"z":680.963},"rot":{"x":0.0,"y":252.897,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801025,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":809.105,"y":253.373,"z":695.247},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801231,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":820.568,"y":243.217,"z":695.948},"rot":{"x":0.0,"y":119.16,"z":0.0}}]},{"sceneId":3,"groupId":166001335,"blockId":0,"pos":{"x":981.21,"y":0.0,"z":523.735},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":335001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":981.21,"y":921.359,"z":523.735},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103803,"blockId":0,"pos":{"x":799.032,"y":0.0,"z":1498.6072},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":803101,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":858.858,"y":347.344,"z":1492.158},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":803051,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":640.35,"y":187.179,"z":1184.68},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":803053,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":660.153,"y":165.293,"z":1134.079},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803046,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":638.95,"y":205.98,"z":1294.58},"rot":{"x":343.642,"y":261.739,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803045,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":639.309,"y":206.656,"z":1295.562},"rot":{"x":80.732,"y":128.808,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803044,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":639.031,"y":206.107,"z":1294.851},"rot":{"x":0.0,"y":291.039,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":803095,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":776.771,"y":285.569,"z":1388.596},"rot":{"x":0.0,"y":-0.001,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":803097,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":800.202,"y":312.535,"z":1382.459},"rot":{"x":22.627,"y":354.687,"z":21.742}},{"monsterId":0,"gadgetId":70510006,"configId":803063,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":876.604,"y":226.689,"z":1229.272},"rot":{"x":327.616,"y":82.212,"z":342.621}},{"monsterId":0,"gadgetId":70510005,"configId":803099,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":758.524,"y":324.092,"z":1453.492},"rot":{"x":8.829,"y":359.518,"z":353.758}},{"monsterId":0,"gadgetId":70540008,"configId":803093,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":864.643,"y":315.216,"z":1758.594},"rot":{"x":343.642,"y":329.328,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803092,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":865.687,"y":315.892,"z":1758.636},"rot":{"x":80.732,"y":196.397,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803091,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":864.924,"y":315.344,"z":1758.622},"rot":{"x":0.0,"y":358.628,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803114,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":799.339,"y":325.441,"z":1814.794},"rot":{"x":0.0,"y":78.721,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803112,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":804.046,"y":326.353,"z":1819.061},"rot":{"x":342.77,"y":1.859,"z":347.774}},{"monsterId":0,"gadgetId":70510012,"configId":803118,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":720.052,"y":390.758,"z":1894.566},"rot":{"x":3.666,"y":162.863,"z":11.72}},{"monsterId":0,"gadgetId":70510012,"configId":803140,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":621.709,"y":357.715,"z":1820.45},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803138,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":617.858,"y":366.814,"z":1883.142},"rot":{"x":350.468,"y":358.967,"z":12.34}},{"monsterId":0,"gadgetId":70510012,"configId":803110,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":750.101,"y":321.145,"z":1803.892},"rot":{"x":353.29,"y":219.305,"z":2.562}},{"monsterId":0,"gadgetId":70510012,"configId":803108,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":749.35,"y":319.4,"z":1797.491},"rot":{"x":0.0,"y":226.261,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803126,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":703.571,"y":411.048,"z":1855.721},"rot":{"x":344.306,"y":223.659,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803132,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":669.099,"y":415.486,"z":1830.051},"rot":{"x":358.425,"y":285.505,"z":18.407}},{"monsterId":0,"gadgetId":70510012,"configId":803142,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":658.054,"y":402.421,"z":1815.07},"rot":{"x":0.0,"y":208.993,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803136,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":665.74,"y":414.367,"z":1826.859},"rot":{"x":354.644,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":803134,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":666.311,"y":415.35,"z":1830.454},"rot":{"x":335.664,"y":359.229,"z":3.577}},{"monsterId":0,"gadgetId":70510006,"configId":803067,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":802.781,"y":264.561,"z":1066.04},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":803069,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":847.353,"y":293.858,"z":1116.143},"rot":{"x":354.101,"y":358.697,"z":14.93}},{"monsterId":0,"gadgetId":70510006,"configId":803071,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":970.417,"y":307.722,"z":1204.976},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":803077,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":993.624,"y":307.165,"z":1159.049},"rot":{"x":351.917,"y":359.076,"z":13.019}},{"monsterId":0,"gadgetId":70510007,"configId":803073,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1012.029,"y":303.515,"z":1248.147},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803081,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1009.437,"y":304.956,"z":1278.491},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803080,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1010.482,"y":305.632,"z":1278.509},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803079,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1009.719,"y":305.083,"z":1278.513},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803089,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":973.672,"y":303.797,"z":1318.39},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803088,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":974.717,"y":304.473,"z":1318.408},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803087,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":973.953,"y":303.924,"z":1318.412},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":803075,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1037.24,"y":310.273,"z":1377.94},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":803085,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1026.568,"y":316.284,"z":1405.377},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":803084,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1027.613,"y":316.96,"z":1405.395},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":803083,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1026.849,"y":316.412,"z":1405.399},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":803172,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":287.144,"y":230.7,"z":1685.173},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":803174,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":266.507,"y":230.7,"z":1660.005},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103802,"blockId":0,"pos":{"x":754.805,"y":0.0,"z":1462.624},"spawns":[{"monsterId":0,"gadgetId":70590021,"configId":802014,"level":0,"poseId":0,"gatherItemId":107003,"pos":{"x":885.597,"y":333.049,"z":1535.031},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590021,"configId":802016,"level":0,"poseId":0,"gatherItemId":107003,"pos":{"x":624.013,"y":279.931,"z":1390.217},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133103801,"blockId":0,"pos":{"x":890.5944,"y":0.0,"z":1489.225},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":801112,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":859.418,"y":401.166,"z":1444.097},"rot":{"x":0.0,"y":238.872,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801195,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":873.52,"y":396.393,"z":1403.297},"rot":{"x":0.0,"y":55.474,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801125,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":660.725,"y":266.798,"z":1374.855},"rot":{"x":0.0,"y":151.179,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801184,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":504.994,"y":195.559,"z":1018.398},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801185,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":504.911,"y":194.179,"z":1028.859},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801122,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":587.352,"y":183.717,"z":1168.819},"rot":{"x":0.0,"y":24.175,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801100,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":633.879,"y":298.222,"z":1073.389},"rot":{"x":0.0,"y":328.075,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801121,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":648.446,"y":175.511,"z":1153.786},"rot":{"x":0.0,"y":113.607,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801123,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":650.61,"y":166.326,"z":1185.311},"rot":{"x":0.0,"y":256.328,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801047,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":612.098,"y":202.751,"z":1278.573},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801048,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":613.678,"y":204.866,"z":1286.028},"rot":{"x":0.0,"y":189.548,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801086,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":604.473,"y":349.295,"z":1324.859},"rot":{"x":0.0,"y":2.698,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801087,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":706.854,"y":329.566,"z":1365.391},"rot":{"x":0.0,"y":227.858,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801124,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":758.403,"y":228.647,"z":1277.51},"rot":{"x":0.0,"y":83.819,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801180,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":826.658,"y":276.199,"z":1334.308},"rot":{"x":0.0,"y":73.843,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801178,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":821.806,"y":269.278,"z":1334.469},"rot":{"x":0.0,"y":73.843,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801177,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":815.089,"y":269.07,"z":1343.657},"rot":{"x":0.0,"y":73.843,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801179,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":810.212,"y":273.181,"z":1349.692},"rot":{"x":0.0,"y":73.843,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801126,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":838.198,"y":255.703,"z":1268.201},"rot":{"x":0.0,"y":127.585,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801102,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":864.787,"y":359.927,"z":1280.29},"rot":{"x":0.0,"y":341.834,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801065,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":884.773,"y":234.764,"z":1238.921},"rot":{"x":0.0,"y":257.67,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801110,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":819.741,"y":425.048,"z":1444.891},"rot":{"x":0.0,"y":113.874,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801109,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":763.37,"y":408.781,"z":1467.856},"rot":{"x":0.0,"y":55.474,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801111,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":843.848,"y":390.016,"z":1450.905},"rot":{"x":0.0,"y":74.271,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801119,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":688.411,"y":301.241,"z":1483.695},"rot":{"x":0.0,"y":126.055,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801115,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":773.778,"y":323.361,"z":1486.539},"rot":{"x":0.0,"y":134.404,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801120,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":670.106,"y":296.723,"z":1440.193},"rot":{"x":0.0,"y":217.183,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801118,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":847.061,"y":313.245,"z":1548.195},"rot":{"x":0.0,"y":281.151,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801114,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":825.647,"y":319.528,"z":1570.048},"rot":{"x":0.0,"y":159.292,"z":26.93}},{"monsterId":0,"gadgetId":70540026,"configId":801015,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":775.254,"y":308.616,"z":1633.451},"rot":{"x":0.0,"y":294.683,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801014,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":790.626,"y":314.153,"z":1637.581},"rot":{"x":0.0,"y":233.051,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801117,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":910.573,"y":327.583,"z":1500.749},"rot":{"x":15.579,"y":47.66,"z":359.668}},{"monsterId":0,"gadgetId":70540026,"configId":801023,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":924.517,"y":327.149,"z":1521.69},"rot":{"x":0.0,"y":230.884,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801024,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":919.349,"y":310.106,"z":1538.593},"rot":{"x":0.0,"y":78.326,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801025,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":938.095,"y":300.36,"z":1559.569},"rot":{"x":0.0,"y":286.142,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801027,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":945.981,"y":354.659,"z":1564.955},"rot":{"x":0.0,"y":249.829,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801022,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":931.116,"y":327.903,"z":1560.627},"rot":{"x":0.0,"y":309.556,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801021,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":945.523,"y":342.338,"z":1567.169},"rot":{"x":0.0,"y":208.938,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801026,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":942.852,"y":340.071,"z":1583.701},"rot":{"x":0.0,"y":112.407,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801116,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":972.884,"y":328.039,"z":1501.193},"rot":{"x":0.0,"y":207.818,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801129,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":985.168,"y":270.957,"z":1590.795},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801132,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":997.963,"y":305.977,"z":1603.562},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801130,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1003.288,"y":266.275,"z":1620.008},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801020,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":884.187,"y":299.905,"z":1654.009},"rot":{"x":0.0,"y":230.118,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801134,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1022.85,"y":327.702,"z":1596.731},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801131,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1023.386,"y":306.935,"z":1614.113},"rot":{"x":354.347,"y":281.421,"z":356.606}},{"monsterId":0,"gadgetId":70540026,"configId":801016,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":865.523,"y":294.447,"z":1678.989},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801017,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":868.463,"y":331.542,"z":1674.621},"rot":{"x":0.0,"y":7.885,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801018,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":898.498,"y":284.913,"z":1725.869},"rot":{"x":0.0,"y":10.418,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801019,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":921.592,"y":280.932,"z":1722.281},"rot":{"x":0.0,"y":163.488,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801028,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":943.549,"y":276.791,"z":1747.685},"rot":{"x":0.0,"y":73.262,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801029,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":965.56,"y":305.42,"z":1749.428},"rot":{"x":0.0,"y":138.83,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801013,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":778.589,"y":303.449,"z":1648.229},"rot":{"x":0.0,"y":60.969,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801089,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":776.266,"y":399.115,"z":1799.991},"rot":{"x":0.0,"y":197.804,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801137,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1107.866,"y":352.075,"z":1492.893},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801095,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1147.099,"y":386.781,"z":1495.436},"rot":{"x":0.0,"y":210.807,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801140,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1136.437,"y":361.522,"z":1665.49},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801067,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1022.85,"y":270.439,"z":1485.806},"rot":{"x":0.0,"y":6.314,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801138,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1215.936,"y":354.474,"z":1561.546},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801139,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1198.43,"y":341.136,"z":1622.511},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801143,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1088.55,"y":352.701,"z":1588.285},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801142,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1100.332,"y":358.542,"z":1630.003},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801141,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1103.83,"y":371.173,"z":1649.56},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801136,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1069.581,"y":347.601,"z":1533.647},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801144,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1074.855,"y":387.565,"z":1585.323},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801176,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1062.78,"y":353.717,"z":1555.404},"rot":{"x":0.0,"y":248.052,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801174,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1052.172,"y":342.988,"z":1553.135},"rot":{"x":0.0,"y":248.052,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801147,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1066.828,"y":404.905,"z":1586.903},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801146,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1063.389,"y":427.084,"z":1600.311},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801145,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1065.92,"y":390.487,"z":1627.609},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801194,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1049.819,"y":338.309,"z":1634.038},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801133,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1050.045,"y":338.52,"z":1628.393},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801094,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1047.897,"y":385.076,"z":1567.698},"rot":{"x":0.0,"y":70.972,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801135,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1028.51,"y":337.815,"z":1570.773},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801148,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1033.403,"y":368.628,"z":1599.073},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":801011,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":720.441,"y":265.074,"z":1688.757},"rot":{"x":351.254,"y":234.503,"z":4.429}},{"monsterId":0,"gadgetId":70540026,"configId":801012,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":723.227,"y":249.791,"z":1683.388},"rot":{"x":0.0,"y":259.542,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801088,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":586.908,"y":391.845,"z":1795.377},"rot":{"x":0.0,"y":279.841,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801006,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":531.727,"y":231.739,"z":1674.618},"rot":{"x":0.0,"y":151.182,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":524.948,"y":233.22,"z":1682.948},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801099,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":527.854,"y":382.335,"z":1409.202},"rot":{"x":0.0,"y":248.126,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801073,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":916.136,"y":318.132,"z":1063.56},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801075,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":845.83,"y":330.595,"z":1140.832},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801074,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1008.032,"y":338.974,"z":1178.923},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801076,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1056.832,"y":338.721,"z":1277.5},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801066,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1020.98,"y":271.783,"z":1358.361},"rot":{"x":0.0,"y":322.173,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801107,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":938.395,"y":365.791,"z":1384.39},"rot":{"x":0.0,"y":124.723,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801106,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":970.386,"y":333.212,"z":1419.412},"rot":{"x":0.0,"y":310.141,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801127,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":983.723,"y":337.012,"z":1464.403},"rot":{"x":0.0,"y":55.794,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801175,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1045.944,"y":342.056,"z":1539.487},"rot":{"x":0.0,"y":248.052,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801150,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1067.877,"y":331.944,"z":1515.241},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801173,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1057.983,"y":342.55,"z":1543.875},"rot":{"x":0.0,"y":248.052,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801149,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1052.576,"y":307.401,"z":1528.882},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801151,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1070.875,"y":339.692,"z":1509.145},"rot":{"x":0.0,"y":281.253,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":801128,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":924.756,"y":385.182,"z":1363.664},"rot":{"x":0.0,"y":247.246,"z":0.0}}]},{"sceneId":3,"groupId":133220519,"blockId":0,"pos":{"x":-2811.5417,"y":0.0,"z":-4035.189},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":519005,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2809.617,"y":201.423,"z":-4033.236},"rot":{"x":18.544,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":519001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2809.928,"y":202.678,"z":-4037.174},"rot":{"x":37.529,"y":4.2,"z":344.969}},{"monsterId":0,"gadgetId":70590036,"configId":519002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2806.368,"y":201.804,"z":-4036.525},"rot":{"x":23.393,"y":324.045,"z":343.934}},{"monsterId":0,"gadgetId":70590036,"configId":519004,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2814.193,"y":202.051,"z":-4032.722},"rot":{"x":47.214,"y":349.052,"z":339.656}},{"monsterId":0,"gadgetId":70590036,"configId":519003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2817.602,"y":203.627,"z":-4036.287},"rot":{"x":29.524,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001341,"blockId":0,"pos":{"x":972.03564,"y":0.0,"z":500.96667},"spawns":[{"monsterId":0,"gadgetId":70510012,"configId":341004,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":972.745,"y":935.818,"z":501.847},"rot":{"x":0.0,"y":39.582,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":341001,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":970.726,"y":936.316,"z":502.502},"rot":{"x":0.0,"y":174.531,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":341002,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":972.636,"y":936.527,"z":498.551},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133102772,"blockId":0,"pos":{"x":1124.6294,"y":0.0,"z":904.0088},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":772010,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":1127.384,"y":208.579,"z":901.76},"rot":{"x":352.78,"y":1.634,"z":334.533}},{"monsterId":0,"gadgetId":70520019,"configId":772005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":1124.351,"y":211.783,"z":901.968},"rot":{"x":352.005,"y":1.77,"z":335.075}},{"monsterId":0,"gadgetId":70520003,"configId":772002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1126.587,"y":208.41,"z":904.035},"rot":{"x":33.752,"y":348.14,"z":322.2}},{"monsterId":0,"gadgetId":70520003,"configId":772001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1123.971,"y":209.05,"z":906.196},"rot":{"x":3.315,"y":359.806,"z":353.312}},{"monsterId":0,"gadgetId":70520019,"configId":772004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":1120.854,"y":209.036,"z":906.085},"rot":{"x":5.933,"y":359.051,"z":341.833}}]},{"sceneId":3,"groupId":133213328,"blockId":0,"pos":{"x":-3356.0945,"y":0.0,"z":-3671.1174},"spawns":[{"monsterId":0,"gadgetId":70520025,"configId":328014,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3331.839,"y":199.719,"z":-3650.978},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":328001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3347.769,"y":201.167,"z":-3698.678},"rot":{"x":0.0,"y":37.093,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":328015,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3335.507,"y":199.502,"z":-3652.465},"rot":{"x":0.0,"y":55.035,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":328013,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3336.055,"y":198.672,"z":-3607.38},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":328012,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3338.797,"y":199.463,"z":-3592.778},"rot":{"x":0.0,"y":43.709,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":328011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3363.261,"y":202.491,"z":-3723.62},"rot":{"x":0.0,"y":316.518,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":328010,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3363.301,"y":202.079,"z":-3724.062},"rot":{"x":0.0,"y":316.518,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":328009,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3363.79,"y":201.793,"z":-3723.427},"rot":{"x":0.0,"y":316.518,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":328007,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3354.909,"y":202.474,"z":-3686.56},"rot":{"x":0.0,"y":9.296,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":328006,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3355.285,"y":202.062,"z":-3686.795},"rot":{"x":0.0,"y":9.296,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":328005,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3355.075,"y":201.776,"z":-3686.022},"rot":{"x":0.0,"y":9.296,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":328016,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3357.351,"y":199.587,"z":-3593.057},"rot":{"x":0.0,"y":298.92,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":328018,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3380.38,"y":200.431,"z":-3658.247},"rot":{"x":354.721,"y":359.549,"z":9.753}},{"monsterId":0,"gadgetId":70590036,"configId":328017,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3378.653,"y":200.418,"z":-3659.83},"rot":{"x":7.84,"y":270.631,"z":14.825}},{"monsterId":0,"gadgetId":70520005,"configId":328002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3377.871,"y":210.828,"z":-3653.749},"rot":{"x":0.0,"y":346.016,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":328003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3357.671,"y":200.487,"z":-3740.232},"rot":{"x":0.0,"y":197.393,"z":0.0}}]},{"sceneId":3,"groupId":133002381,"blockId":0,"pos":{"x":1677.0781,"y":0.0,"z":-715.0712},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":381010,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":1665.858,"y":259.582,"z":-720.252},"rot":{"x":1.25,"y":313.108,"z":341.05}},{"monsterId":0,"gadgetId":70520019,"configId":381005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":1674.656,"y":259.006,"z":-720.354},"rot":{"x":350.462,"y":313.244,"z":355.926}},{"monsterId":0,"gadgetId":70520019,"configId":381004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":1683.284,"y":258.317,"z":-713.537},"rot":{"x":357.753,"y":277.593,"z":3.307}},{"monsterId":0,"gadgetId":70520003,"configId":381002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1681.593,"y":258.527,"z":-711.057},"rot":{"x":356.452,"y":306.909,"z":359.547}},{"monsterId":0,"gadgetId":70520003,"configId":381001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":1679.999,"y":258.649,"z":-710.156},"rot":{"x":354.647,"y":34.028,"z":358.21}}]},{"sceneId":3,"groupId":133105805,"blockId":0,"pos":{"x":566.2396,"y":0.0,"z":-237.02095},"spawns":[{"monsterId":0,"gadgetId":70540026,"configId":805058,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":826.109,"y":273.578,"z":-240.945},"rot":{"x":0.0,"y":275.563,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805059,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":914.581,"y":261.327,"z":-208.418},"rot":{"x":0.0,"y":220.409,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805063,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":815.53,"y":244.571,"z":-108.641},"rot":{"x":0.0,"y":77.192,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805062,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":864.727,"y":241.188,"z":-83.621},"rot":{"x":0.0,"y":37.089,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805060,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":881.455,"y":237.067,"z":-73.659},"rot":{"x":0.0,"y":22.512,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805061,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":893.508,"y":246.913,"z":-74.062},"rot":{"x":0.0,"y":46.598,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805064,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":784.769,"y":226.336,"z":-68.959},"rot":{"x":0.0,"y":119.787,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805065,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":724.063,"y":239.758,"z":-64.447},"rot":{"x":0.0,"y":99.282,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":805043,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":698.899,"y":278.157,"z":-101.954},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805074,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1082.502,"y":238.865,"z":-224.767},"rot":{"x":0.0,"y":107.09,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805075,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1074.964,"y":226.291,"z":-199.1},"rot":{"x":0.0,"y":102.386,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805072,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1067.28,"y":219.795,"z":-169.411},"rot":{"x":0.0,"y":157.35,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805069,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":626.828,"y":200.223,"z":-662.056},"rot":{"x":4.743,"y":323.846,"z":6.456}},{"monsterId":0,"gadgetId":70540028,"configId":805068,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":626.334,"y":200.404,"z":-659.741},"rot":{"x":10.242,"y":244.563,"z":2.957}},{"monsterId":0,"gadgetId":70540028,"configId":805024,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":562.367,"y":200.012,"z":-553.712},"rot":{"x":0.0,"y":81.1,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805098,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":671.352,"y":255.393,"z":-564.326},"rot":{"x":0.0,"y":353.471,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805097,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":672.496,"y":254.449,"z":-559.642},"rot":{"x":0.0,"y":16.788,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805023,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":576.49,"y":200.07,"z":-551.335},"rot":{"x":1.699,"y":79.0,"z":1.057}},{"monsterId":0,"gadgetId":70540028,"configId":805025,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":533.699,"y":199.9,"z":-508.334},"rot":{"x":0.0,"y":229.5,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805026,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":575.617,"y":199.956,"z":-503.472},"rot":{"x":0.469,"y":357.0,"z":0.763}},{"monsterId":0,"gadgetId":70540026,"configId":805096,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":687.244,"y":272.968,"z":-503.843},"rot":{"x":0.0,"y":65.446,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805095,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":686.606,"y":268.046,"z":-504.39},"rot":{"x":0.0,"y":16.028,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805094,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":686.685,"y":272.138,"z":-504.341},"rot":{"x":0.0,"y":35.68,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805027,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":531.137,"y":200.391,"z":-285.595},"rot":{"x":351.647,"y":358.1,"z":349.609}},{"monsterId":0,"gadgetId":70540028,"configId":805013,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":537.088,"y":200.218,"z":-187.609},"rot":{"x":355.846,"y":314.2,"z":358.354}},{"monsterId":0,"gadgetId":70540026,"configId":805046,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":577.138,"y":245.029,"z":-167.193},"rot":{"x":0.0,"y":346.423,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805047,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":575.339,"y":249.168,"z":-169.711},"rot":{"x":0.0,"y":351.998,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805012,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":498.003,"y":200.466,"z":-152.544},"rot":{"x":352.36,"y":1.685,"z":347.547}},{"monsterId":0,"gadgetId":70540026,"configId":805045,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":629.726,"y":248.664,"z":-133.382},"rot":{"x":0.0,"y":93.877,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805011,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":490.104,"y":200.222,"z":-99.408},"rot":{"x":359.237,"y":165.4,"z":0.469}},{"monsterId":0,"gadgetId":70540026,"configId":805070,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":562.521,"y":256.851,"z":-103.9},"rot":{"x":0.0,"y":81.53,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":805044,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":560.311,"y":272.254,"z":-111.672},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805008,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":491.687,"y":199.9,"z":-46.477},"rot":{"x":0.0,"y":219.757,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805007,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":592.802,"y":199.956,"z":-45.789},"rot":{"x":1.79,"y":0.014,"z":0.895}},{"monsterId":0,"gadgetId":70540028,"configId":805029,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":389.984,"y":201.022,"z":-124.914},"rot":{"x":7.734,"y":220.236,"z":1.875}},{"monsterId":0,"gadgetId":70540028,"configId":805016,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":362.641,"y":199.9,"z":-158.843},"rot":{"x":0.0,"y":20.7,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805009,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":367.375,"y":201.161,"z":-103.322},"rot":{"x":358.129,"y":67.71,"z":356.951}},{"monsterId":0,"gadgetId":70540028,"configId":805015,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":389.419,"y":200.002,"z":-201.063},"rot":{"x":3.117,"y":45.81,"z":3.202}},{"monsterId":0,"gadgetId":70540028,"configId":805010,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":336.305,"y":199.9,"z":-151.895},"rot":{"x":0.0,"y":214.6,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805033,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":279.206,"y":199.9,"z":-80.87},"rot":{"x":0.0,"y":250.8,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805030,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":212.03,"y":200.603,"z":-97.606},"rot":{"x":355.979,"y":244.8,"z":355.14}},{"monsterId":0,"gadgetId":70540028,"configId":805031,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":224.432,"y":200.657,"z":-87.321},"rot":{"x":359.065,"y":254.862,"z":356.548}},{"monsterId":0,"gadgetId":70540028,"configId":805032,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":200.413,"y":200.55,"z":-62.003},"rot":{"x":1.057,"y":13.7,"z":358.301}},{"monsterId":0,"gadgetId":70540028,"configId":805034,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":174.587,"y":200.349,"z":-41.707},"rot":{"x":359.186,"y":241.4,"z":355.259}},{"monsterId":0,"gadgetId":70540028,"configId":805035,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":112.36,"y":200.594,"z":-46.3},"rot":{"x":6.535,"y":255.8,"z":357.018}},{"monsterId":0,"gadgetId":70540028,"configId":805040,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":62.983,"y":202.806,"z":-60.864},"rot":{"x":7.049,"y":223.9,"z":2.995}},{"monsterId":0,"gadgetId":70540028,"configId":805039,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":51.479,"y":203.534,"z":-61.763},"rot":{"x":3.56,"y":321.4,"z":4.102}},{"monsterId":0,"gadgetId":70540028,"configId":805038,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":47.989,"y":201.022,"z":-97.047},"rot":{"x":13.712,"y":290.3,"z":3.995}},{"monsterId":0,"gadgetId":70540028,"configId":805041,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":46.327,"y":203.665,"z":-65.787},"rot":{"x":355.541,"y":176.3,"z":356.424}},{"monsterId":0,"gadgetId":70540028,"configId":805037,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":5.927,"y":199.9,"z":-129.411},"rot":{"x":0.0,"y":257.9,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805036,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":4.33,"y":200.72,"z":-103.87},"rot":{"x":348.707,"y":11.97,"z":1.555}},{"monsterId":0,"gadgetId":70540026,"configId":805076,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1092.139,"y":217.47,"z":-227.904},"rot":{"x":0.0,"y":135.688,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805071,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1046.492,"y":242.527,"z":-186.103},"rot":{"x":0.0,"y":154.814,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805073,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":1044.78,"y":224.514,"z":-134.155},"rot":{"x":0.0,"y":157.35,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805057,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":728.372,"y":256.748,"z":-395.619},"rot":{"x":0.0,"y":13.042,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805056,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":706.984,"y":282.316,"z":-376.07},"rot":{"x":0.0,"y":167.109,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805055,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":704.207,"y":285.867,"z":-378.455},"rot":{"x":0.0,"y":236.682,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":805067,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":672.993,"y":249.659,"z":-407.24},"rot":{"x":14.011,"y":63.601,"z":311.534}},{"monsterId":0,"gadgetId":70520018,"configId":805093,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":680.955,"y":216.506,"z":-251.343},"rot":{"x":0.0,"y":172.222,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":805066,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":683.487,"y":216.613,"z":-251.713},"rot":{"x":355.311,"y":83.859,"z":11.749}},{"monsterId":0,"gadgetId":70540026,"configId":805054,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":657.872,"y":282.198,"z":-399.417},"rot":{"x":0.0,"y":296.847,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":805042,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":618.23,"y":317.413,"z":-325.162},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805051,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":619.51,"y":323.591,"z":-272.673},"rot":{"x":0.0,"y":342.236,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805050,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":592.547,"y":271.532,"z":-310.651},"rot":{"x":0.0,"y":356.828,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805049,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":591.285,"y":283.652,"z":-275.21},"rot":{"x":0.0,"y":339.138,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805048,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":577.807,"y":258.294,"z":-208.05},"rot":{"x":0.0,"y":300.002,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805022,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":548.249,"y":200.368,"z":-448.333},"rot":{"x":2.755,"y":28.4,"z":359.357}},{"monsterId":0,"gadgetId":70540028,"configId":805018,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":390.006,"y":200.95,"z":-332.021},"rot":{"x":0.0,"y":192.8,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":805017,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":443.755,"y":200.355,"z":-290.677},"rot":{"x":5.995,"y":339.2,"z":4.687}},{"monsterId":0,"gadgetId":70540028,"configId":805014,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":389.351,"y":200.2,"z":-249.627},"rot":{"x":0.0,"y":280.2,"z":0.0}}]},{"sceneId":3,"groupId":133105804,"blockId":0,"pos":{"x":405.29367,"y":0.0,"z":-85.193},"spawns":[{"monsterId":0,"gadgetId":70540028,"configId":154002,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":418.113,"y":199.9,"z":-7.718},"rot":{"x":358.769,"y":45.7,"z":359.706}},{"monsterId":0,"gadgetId":70540028,"configId":154003,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":406.748,"y":200.581,"z":-25.244},"rot":{"x":356.113,"y":45.39,"z":13.608}},{"monsterId":0,"gadgetId":70540028,"configId":154004,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":391.02,"y":200.164,"z":-222.617},"rot":{"x":351.176,"y":45.475,"z":3.676}}]},{"sceneId":3,"groupId":133002382,"blockId":0,"pos":{"x":2035.4137,"y":0.0,"z":-631.54224},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":382004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2034.999,"y":239.955,"z":-635.117},"rot":{"x":22.083,"y":6.526,"z":32.573}},{"monsterId":0,"gadgetId":70520003,"configId":382002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2036.113,"y":240.658,"z":-633.157},"rot":{"x":23.396,"y":13.174,"z":23.106}},{"monsterId":0,"gadgetId":70520019,"configId":382005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2036.473,"y":241.141,"z":-628.595},"rot":{"x":345.025,"y":358.214,"z":13.53}},{"monsterId":0,"gadgetId":70520003,"configId":382001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2034.07,"y":239.97,"z":-629.3},"rot":{"x":10.062,"y":357.291,"z":36.648}}]},{"sceneId":3,"groupId":133220500,"blockId":0,"pos":{"x":-2539.2727,"y":0.0,"z":-4397.633},"spawns":[{"monsterId":0,"gadgetId":70520034,"configId":500012,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2561.99,"y":145.927,"z":-4416.704},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":500007,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2537.662,"y":142.153,"z":-4423.747},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":500008,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2550.598,"y":141.616,"z":-4417.958},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":500010,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2519.875,"y":142.035,"z":-4392.304},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":500013,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2565.549,"y":150.791,"z":-4374.694},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":500011,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2514.908,"y":142.943,"z":-4384.374},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520034,"configId":500009,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2524.326,"y":143.312,"z":-4373.648},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133105803,"blockId":0,"pos":{"x":681.617,"y":0.0,"z":-393.458},"spawns":[{"monsterId":0,"gadgetId":70520018,"configId":803023,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":681.617,"y":249.497,"z":-393.458},"rot":{"x":0.0,"y":200.676,"z":0.0}}]},{"sceneId":3,"groupId":133105802,"blockId":0,"pos":{"x":1060.6555,"y":0.0,"z":-158.58516},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":802002,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":979.899,"y":255.036,"z":-292.989},"rot":{"x":11.538,"y":358.292,"z":341.191}},{"monsterId":0,"gadgetId":70510007,"configId":802014,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1152.981,"y":200.15,"z":-51.89},"rot":{"x":0.0,"y":78.315,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":802010,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1149.491,"y":200.063,"z":-41.048},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":802012,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1153.993,"y":200.175,"z":-49.452},"rot":{"x":0.0,"y":288.542,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":802008,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":1001.528,"y":260.388,"z":-232.166},"rot":{"x":353.883,"y":239.829,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":802006,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":993.664,"y":261.523,"z":-223.42},"rot":{"x":353.784,"y":247.715,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":802004,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":993.033,"y":261.519,"z":-219.131},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133105801,"blockId":0,"pos":{"x":795.10394,"y":0.0,"z":-222.9221},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":801018,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":854.342,"y":260.333,"z":-336.134},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801017,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":860.412,"y":259.745,"z":-335.743},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":337,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":856.147,"y":259.677,"z":-334.698},"rot":{"x":0.0,"y":100.457,"z":5.916}},{"monsterId":0,"gadgetId":70520002,"configId":479,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":867.878,"y":258.692,"z":-331.356},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":482,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":860.933,"y":259.02,"z":-328.376},"rot":{"x":0.0,"y":245.151,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":481,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":869.489,"y":259.362,"z":-329.913},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":480,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":868.337,"y":258.569,"z":-328.476},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":801016,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":801.864,"y":238.508,"z":-218.782},"rot":{"x":350.233,"y":97.333,"z":323.512}},{"monsterId":0,"gadgetId":70520018,"configId":486,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":800.612,"y":238.355,"z":-218.615},"rot":{"x":358.213,"y":61.406,"z":6.048}},{"monsterId":0,"gadgetId":70520018,"configId":485,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":799.665,"y":238.463,"z":-215.639},"rot":{"x":3.213,"y":249.95,"z":3.581}},{"monsterId":0,"gadgetId":70520018,"configId":801015,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":802.109,"y":238.894,"z":-217.19},"rot":{"x":345.388,"y":309.811,"z":329.376}},{"monsterId":0,"gadgetId":70520018,"configId":801028,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":965.391,"y":245.67,"z":-247.064},"rot":{"x":28.983,"y":65.852,"z":4.627}},{"monsterId":0,"gadgetId":70520018,"configId":497,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":972.706,"y":245.456,"z":-245.067},"rot":{"x":13.381,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":495,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":977.233,"y":245.796,"z":-246.392},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":496,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":975.451,"y":245.721,"z":-243.233},"rot":{"x":0.0,"y":223.514,"z":334.817}},{"monsterId":0,"gadgetId":70520018,"configId":494,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":976.372,"y":246.17,"z":-244.459},"rot":{"x":0.0,"y":0.0,"z":9.228}},{"monsterId":0,"gadgetId":70520018,"configId":508,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":871.161,"y":244.412,"z":-148.916},"rot":{"x":0.0,"y":257.203,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":506,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":872.3,"y":244.739,"z":-144.404},"rot":{"x":2.132,"y":246.602,"z":4.915}},{"monsterId":0,"gadgetId":70520018,"configId":504,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":873.727,"y":244.573,"z":-151.576},"rot":{"x":353.219,"y":113.857,"z":14.95}},{"monsterId":0,"gadgetId":70510012,"configId":298,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":898.553,"y":244.784,"z":-137.19},"rot":{"x":0.0,"y":98.91,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":300,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":879.596,"y":244.738,"z":-129.855},"rot":{"x":0.0,"y":103.961,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":502,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":893.695,"y":245.176,"z":-127.124},"rot":{"x":0.0,"y":14.456,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":545,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":752.568,"y":275.92,"z":-113.338},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":553,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":715.087,"y":224.068,"z":-156.885},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":801039,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1084.014,"y":200.112,"z":-202.582},"rot":{"x":45.036,"y":15.845,"z":308.142}},{"monsterId":0,"gadgetId":70510007,"configId":543,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1021.037,"y":242.389,"z":-266.917},"rot":{"x":0.0,"y":0.0,"z":340.991}},{"monsterId":0,"gadgetId":70510007,"configId":541,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1022.698,"y":242.217,"z":-270.641},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":547,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":615.235,"y":297.065,"z":-311.06},"rot":{"x":354.538,"y":2.49,"z":10.152}},{"monsterId":0,"gadgetId":70510005,"configId":549,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":613.326,"y":296.596,"z":-314.288},"rot":{"x":352.34,"y":10.098,"z":6.282}},{"monsterId":0,"gadgetId":70510005,"configId":551,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":613.998,"y":296.925,"z":-307.807},"rot":{"x":342.544,"y":194.714,"z":348.356}},{"monsterId":0,"gadgetId":70540029,"configId":801025,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":596.871,"y":303.559,"z":-239.607},"rot":{"x":0.0,"y":0.0,"z":29.706}},{"monsterId":0,"gadgetId":70520018,"configId":801026,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":614.844,"y":295.137,"z":-246.817},"rot":{"x":0.0,"y":0.0,"z":9.228}},{"monsterId":0,"gadgetId":70520018,"configId":801027,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":611.551,"y":294.315,"z":-244.492},"rot":{"x":6.718,"y":226.476,"z":1.659}},{"monsterId":0,"gadgetId":70540029,"configId":801029,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":542.07,"y":252.8,"z":-94.546},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":555,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":492.563,"y":199.928,"z":-19.152},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":557,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":406.373,"y":199.528,"z":-141.625},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":561,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":376.741,"y":202.478,"z":-79.783},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801023,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":149.615,"y":200.477,"z":-40.389},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520018,"configId":801037,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1088.378,"y":200.374,"z":-215.003},"rot":{"x":349.323,"y":235.817,"z":319.854}},{"monsterId":0,"gadgetId":70520018,"configId":801036,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1096.639,"y":200.502,"z":-223.039},"rot":{"x":36.181,"y":263.153,"z":304.397}},{"monsterId":0,"gadgetId":70520018,"configId":801035,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1093.552,"y":200.551,"z":-207.296},"rot":{"x":332.476,"y":3.314,"z":341.966}},{"monsterId":0,"gadgetId":70510006,"configId":573,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1013.368,"y":256.495,"z":-189.584},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":801024,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":696.59,"y":291.532,"z":-373.336},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":532,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":661.719,"y":287.043,"z":-389.62},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801019,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":714.727,"y":217.241,"z":-219.908},"rot":{"x":0.0,"y":304.745,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":575,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":945.24,"y":217.656,"z":-6.245},"rot":{"x":6.081,"y":0.347,"z":6.523}},{"monsterId":0,"gadgetId":70510007,"configId":801002,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":433.112,"y":199.781,"z":-343.178},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133002372,"blockId":0,"pos":{"x":1823.2476,"y":0.0,"z":-525.3175},"spawns":[{"monsterId":0,"gadgetId":70510006,"configId":372010,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1824.941,"y":243.031,"z":-534.702},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":372008,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":1821.554,"y":242.481,"z":-515.933},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133210266,"blockId":0,"pos":{"x":-3478.121,"y":0.0,"z":-831.909},"spawns":[{"monsterId":0,"gadgetId":70590041,"configId":266001,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-3478.121,"y":219.871,"z":-831.909},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001295,"blockId":0,"pos":{"x":722.0255,"y":0.0,"z":595.19},"spawns":[{"monsterId":0,"gadgetId":70520038,"configId":295008,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":721.963,"y":401.43,"z":595.549},"rot":{"x":40.07,"y":308.459,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":295009,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":722.088,"y":401.792,"z":594.831},"rot":{"x":21.989,"y":217.953,"z":347.092}}]},{"sceneId":3,"groupId":133102720,"blockId":0,"pos":{"x":1720.2184,"y":0.0,"z":767.591},"spawns":[{"monsterId":0,"gadgetId":70540029,"configId":720016,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":1506.452,"y":269.348,"z":697.643},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":720018,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1762.62,"y":246.748,"z":781.445},"rot":{"x":339.797,"y":351.589,"z":23.178}},{"monsterId":0,"gadgetId":70540003,"configId":720015,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1763.164,"y":246.747,"z":783.457},"rot":{"x":0.0,"y":347.908,"z":24.667}},{"monsterId":0,"gadgetId":70540003,"configId":720012,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1763.09,"y":246.751,"z":782.243},"rot":{"x":333.535,"y":9.202,"z":35.298}},{"monsterId":0,"gadgetId":70540003,"configId":720013,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1763.198,"y":246.734,"z":780.626},"rot":{"x":347.0,"y":343.573,"z":317.032}},{"monsterId":0,"gadgetId":70540003,"configId":720014,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":1762.787,"y":246.734,"z":780.132},"rot":{"x":341.843,"y":31.543,"z":13.841}}]},{"sceneId":3,"groupId":133213316,"blockId":0,"pos":{"x":-3311.758,"y":0.0,"z":-3268.2375},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":316013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3320.225,"y":202.549,"z":-3271.075},"rot":{"x":0.0,"y":169.394,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":316012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3319.951,"y":202.137,"z":-3270.726},"rot":{"x":0.0,"y":169.394,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":316011,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3319.885,"y":201.851,"z":-3271.525},"rot":{"x":0.0,"y":169.394,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":316026,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3300.236,"y":203.43,"z":-3265.682},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":316025,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3303.371,"y":202.968,"z":-3268.046},"rot":{"x":0.0,"y":225.746,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":316001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3306.881,"y":226.411,"z":-3262.372},"rot":{"x":0.0,"y":169.394,"z":0.0}}]},{"sceneId":3,"groupId":133102746,"blockId":0,"pos":{"x":1959.9675,"y":0.0,"z":842.149},"spawns":[{"monsterId":0,"gadgetId":70520004,"configId":746026,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1950.938,"y":202.27,"z":841.469},"rot":{"x":16.049,"y":116.339,"z":358.57}},{"monsterId":0,"gadgetId":70520004,"configId":746025,"level":0,"poseId":0,"gatherItemId":100011,"pos":{"x":1968.997,"y":196.767,"z":842.829},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133212292,"blockId":0,"pos":{"x":-3809.433,"y":0.0,"z":-2339.57},"spawns":[{"monsterId":0,"gadgetId":70290130,"configId":292026,"level":0,"poseId":0,"gatherItemId":100961,"pos":{"x":-3809.433,"y":239.77,"z":-2339.57},"rot":{"x":0.0,"y":38.445,"z":0.0}}]},{"sceneId":3,"groupId":133213317,"blockId":0,"pos":{"x":-3222.953,"y":0.0,"z":-3475.2534},"spawns":[{"monsterId":0,"gadgetId":70520030,"configId":317051,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3232.121,"y":201.459,"z":-3349.271},"rot":{"x":0.0,"y":309.33,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":317004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3231.035,"y":200.137,"z":-3332.76},"rot":{"x":0.0,"y":57.959,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":317048,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3224.002,"y":203.333,"z":-3368.436},"rot":{"x":0.0,"y":55.49,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":317053,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3293.841,"y":215.535,"z":-3379.036},"rot":{"x":280.0,"y":90.075,"z":180.0}},{"monsterId":0,"gadgetId":70520029,"configId":317043,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3162.171,"y":199.075,"z":-3425.487},"rot":{"x":0.0,"y":271.68,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":317042,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3154.697,"y":198.869,"z":-3417.511},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":317011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3162.865,"y":203.216,"z":-3390.583},"rot":{"x":0.0,"y":355.873,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3227.581,"y":227.05,"z":-3460.761},"rot":{"x":0.0,"y":63.738,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3227.991,"y":226.638,"z":-3460.592},"rot":{"x":0.0,"y":63.738,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3227.24,"y":226.352,"z":-3460.313},"rot":{"x":0.0,"y":63.738,"z":0.0}},{"monsterId":0,"gadgetId":70520030,"configId":317046,"level":0,"poseId":0,"gatherItemId":101204,"pos":{"x":-3221.533,"y":209.377,"z":-3394.962},"rot":{"x":0.0,"y":245.8,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":317001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3212.732,"y":208.727,"z":-3400.238},"rot":{"x":0.0,"y":21.182,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":317066,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3192.853,"y":203.386,"z":-3469.531},"rot":{"x":337.364,"y":250.796,"z":11.883}},{"monsterId":0,"gadgetId":70520001,"configId":317065,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3194.455,"y":207.678,"z":-3451.552},"rot":{"x":349.16,"y":2.515,"z":333.952}},{"monsterId":0,"gadgetId":70540004,"configId":317082,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3195.119,"y":208.411,"z":-3393.238},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":317081,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3193.391,"y":207.963,"z":-3392.823},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":317079,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":-3193.52,"y":208.079,"z":-3393.638},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":317040,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3201.554,"y":209.055,"z":-3402.27},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":317039,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3203.495,"y":208.045,"z":-3400.545},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":317041,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3202.381,"y":209.335,"z":-3399.878},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":317090,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3196.33,"y":207.617,"z":-3384.238},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":317091,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-3196.33,"y":207.617,"z":-3384.046},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":317080,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":-3195.125,"y":208.206,"z":-3391.281},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":317002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3293.1,"y":222.808,"z":-3514.44},"rot":{"x":0.0,"y":144.284,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3174.54,"y":206.02,"z":-3525.13},"rot":{"x":0.0,"y":339.526,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3174.749,"y":205.608,"z":-3525.521},"rot":{"x":0.0,"y":339.526,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317015,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3174.951,"y":205.322,"z":-3524.746},"rot":{"x":0.0,"y":339.526,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":317012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3173.226,"y":206.782,"z":-3506.996},"rot":{"x":0.0,"y":286.297,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":317067,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3180.78,"y":203.389,"z":-3480.378},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":317064,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3191.805,"y":203.25,"z":-3460.446},"rot":{"x":348.596,"y":2.049,"z":339.69}},{"monsterId":0,"gadgetId":70520001,"configId":317063,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3191.04,"y":202.774,"z":-3470.365},"rot":{"x":7.749,"y":11.671,"z":349.049}},{"monsterId":0,"gadgetId":70520009,"configId":317013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3185.566,"y":202.692,"z":-3451.048},"rot":{"x":0.0,"y":247.168,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":317052,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3225.791,"y":228.203,"z":-3458.401},"rot":{"x":274.068,"y":333.379,"z":28.505}},{"monsterId":0,"gadgetId":70520029,"configId":317045,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3155.866,"y":198.834,"z":-3433.792},"rot":{"x":0.0,"y":278.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":317044,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3157.577,"y":199.028,"z":-3435.286},"rot":{"x":0.0,"y":337.88,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":317037,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3324.143,"y":206.72,"z":-3537.483},"rot":{"x":0.0,"y":283.726,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":317036,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3321.623,"y":206.44,"z":-3537.248},"rot":{"x":0.0,"y":237.726,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":317035,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3323.76,"y":205.43,"z":-3538.723},"rot":{"x":0.0,"y":188.726,"z":0.0}},{"monsterId":0,"gadgetId":70520001,"configId":317062,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3233.216,"y":225.011,"z":-3551.496},"rot":{"x":1.465,"y":247.406,"z":7.457}},{"monsterId":0,"gadgetId":70520002,"configId":317059,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3232.733,"y":223.422,"z":-3548.468},"rot":{"x":14.142,"y":154.662,"z":7.165}},{"monsterId":0,"gadgetId":70540021,"configId":317083,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-3132.85,"y":203.67,"z":-3457.108},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":317008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3134.496,"y":203.777,"z":-3464.32},"rot":{"x":0.0,"y":78.033,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3140.592,"y":201.865,"z":-3397.439},"rot":{"x":0.0,"y":52.673,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3141.026,"y":201.453,"z":-3397.352},"rot":{"x":0.0,"y":52.673,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3140.343,"y":201.167,"z":-3396.934},"rot":{"x":0.0,"y":52.673,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":317086,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3119.92,"y":201.769,"z":-3461.21},"rot":{"x":0.647,"y":359.949,"z":351.025}},{"monsterId":0,"gadgetId":70540021,"configId":317085,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-3123.016,"y":202.19,"z":-3463.442},"rot":{"x":358.308,"y":0.129,"z":351.313}},{"monsterId":0,"gadgetId":70540021,"configId":317084,"level":0,"poseId":0,"gatherItemId":100002,"pos":{"x":-3131.93,"y":203.537,"z":-3457.87},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317088,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3122.49,"y":202.216,"z":-3462.281},"rot":{"x":84.099,"y":315.179,"z":315.063}},{"monsterId":0,"gadgetId":70540001,"configId":317087,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3124.834,"y":202.54,"z":-3462.897},"rot":{"x":280.638,"y":133.23,"z":227.182}},{"monsterId":0,"gadgetId":70520001,"configId":317073,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3254.453,"y":217.517,"z":-3562.431},"rot":{"x":339.011,"y":358.447,"z":8.372}},{"monsterId":0,"gadgetId":70520001,"configId":317061,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3251.191,"y":222.502,"z":-3554.013},"rot":{"x":13.408,"y":247.657,"z":9.681}},{"monsterId":0,"gadgetId":70520002,"configId":317060,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3233.792,"y":224.571,"z":-3554.35},"rot":{"x":0.0,"y":113.28,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":317058,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3228.496,"y":222.252,"z":-3559.193},"rot":{"x":4.352,"y":159.716,"z":359.243}},{"monsterId":0,"gadgetId":70520009,"configId":317007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3191.219,"y":202.61,"z":-3561.91},"rot":{"x":0.0,"y":156.466,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3270.207,"y":209.702,"z":-3576.59},"rot":{"x":0.0,"y":319.189,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3270.268,"y":209.29,"z":-3577.029},"rot":{"x":0.0,"y":319.189,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3270.727,"y":209.004,"z":-3576.372},"rot":{"x":0.0,"y":319.189,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":317072,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-3249.922,"y":214.132,"z":-3578.165},"rot":{"x":343.706,"y":359.317,"z":4.772}},{"monsterId":0,"gadgetId":70540003,"configId":317071,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-3249.091,"y":214.168,"z":-3578.289},"rot":{"x":343.875,"y":359.295,"z":4.974}},{"monsterId":0,"gadgetId":70540003,"configId":317070,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-3249.439,"y":214.327,"z":-3577.638},"rot":{"x":343.706,"y":359.317,"z":4.772}},{"monsterId":0,"gadgetId":70520009,"configId":317003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3230.953,"y":214.907,"z":-3579.813},"rot":{"x":0.0,"y":55.946,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317057,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3303.232,"y":206.134,"z":-3581.329},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317056,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3303.565,"y":205.722,"z":-3581.622},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":317055,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3303.483,"y":205.436,"z":-3580.825},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":317078,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-3301.965,"y":208.86,"z":-3566.356},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":317077,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-3298.858,"y":209.241,"z":-3565.937},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540003,"configId":317076,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-3307.256,"y":208.526,"z":-3561.726},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":317010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3322.803,"y":209.403,"z":-3561.65},"rot":{"x":0.0,"y":272.459,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":317069,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3320.336,"y":200.792,"z":-3464.083},"rot":{"x":2.63,"y":0.265,"z":11.483}},{"monsterId":0,"gadgetId":70590036,"configId":317068,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3320.788,"y":201.612,"z":-3456.014},"rot":{"x":350.642,"y":357.872,"z":10.824}},{"monsterId":0,"gadgetId":70510005,"configId":317093,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3323.304,"y":217.211,"z":-3444.874},"rot":{"x":359.869,"y":301.132,"z":354.528}},{"monsterId":0,"gadgetId":70590036,"configId":317074,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3309.511,"y":215.531,"z":-3421.306},"rot":{"x":6.32,"y":359.884,"z":357.898}},{"monsterId":0,"gadgetId":70520005,"configId":317006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3291.689,"y":233.113,"z":-3424.31},"rot":{"x":0.0,"y":147.261,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":317009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3296.598,"y":202.299,"z":-3374.35},"rot":{"x":0.0,"y":5.503,"z":0.0}}]},{"sceneId":3,"groupId":133213319,"blockId":0,"pos":{"x":-3947.8298,"y":0.0,"z":-3193.679},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":319018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3843.222,"y":244.184,"z":-3216.697},"rot":{"x":0.0,"y":46.062,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3843.664,"y":243.772,"z":-3216.661},"rot":{"x":0.0,"y":46.062,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3843.033,"y":243.486,"z":-3216.167},"rot":{"x":0.0,"y":46.062,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":319058,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3848.556,"y":255.972,"z":-3159.958},"rot":{"x":353.403,"y":1.031,"z":342.259}},{"monsterId":0,"gadgetId":70520009,"configId":319011,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3848.565,"y":324.507,"z":-3079.706},"rot":{"x":0.0,"y":285.319,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":319004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3857.05,"y":248.55,"z":-3206.085},"rot":{"x":0.0,"y":289.649,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":319010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3863.308,"y":351.853,"z":-3125.93},"rot":{"x":0.0,"y":64.618,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":319048,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3844.686,"y":331.427,"z":-3086.754},"rot":{"x":285.6,"y":327.8,"z":204.6}},{"monsterId":0,"gadgetId":70520005,"configId":319001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3898.831,"y":260.368,"z":-3196.862},"rot":{"x":0.0,"y":261.725,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":319024,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3894.616,"y":269.375,"z":-3173.287},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":319023,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3903.651,"y":271.249,"z":-3173.934},"rot":{"x":0.0,"y":296.169,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":319049,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3906.281,"y":274.901,"z":-3159.608},"rot":{"x":342.007,"y":2.512,"z":344.232}},{"monsterId":0,"gadgetId":70590036,"configId":319026,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3909.581,"y":274.796,"z":-3160.573},"rot":{"x":354.67,"y":0.919,"z":340.439}},{"monsterId":0,"gadgetId":70590036,"configId":319025,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3907.108,"y":273.432,"z":-3166.202},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":319038,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3938.092,"y":262.744,"z":-3187.662},"rot":{"x":0.0,"y":290.856,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":319037,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3935.562,"y":262.464,"z":-3187.741},"rot":{"x":0.0,"y":244.856,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":319036,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3937.865,"y":261.454,"z":-3188.94},"rot":{"x":0.0,"y":195.856,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":319002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3946.817,"y":203.488,"z":-3092.052},"rot":{"x":0.0,"y":273.117,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":319014,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3985.464,"y":219.296,"z":-3140.735},"rot":{"x":0.0,"y":107.494,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319030,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3983.069,"y":224.155,"z":-3126.494},"rot":{"x":0.0,"y":299.984,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3982.982,"y":223.743,"z":-3126.928},"rot":{"x":0.0,"y":299.984,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3983.631,"y":223.457,"z":-3126.459},"rot":{"x":0.0,"y":299.984,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":319008,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-4002.519,"y":202.298,"z":-3120.375},"rot":{"x":0.0,"y":315.381,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":319047,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4002.963,"y":198.698,"z":-3087.443},"rot":{"x":0.0,"y":192.77,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":319046,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3998.624,"y":198.784,"z":-3085.019},"rot":{"x":0.0,"y":111.47,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":319045,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4013.721,"y":198.952,"z":-3098.496},"rot":{"x":0.0,"y":177.98,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4085.262,"y":201.836,"z":-3152.036},"rot":{"x":0.0,"y":345.458,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319034,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4085.014,"y":202.248,"z":-3151.669},"rot":{"x":0.0,"y":345.458,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":319055,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4090.793,"y":207.268,"z":-3146.877},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-4085.383,"y":201.55,"z":-3151.244},"rot":{"x":0.0,"y":345.458,"z":0.0}},{"monsterId":0,"gadgetId":70540004,"configId":319054,"level":0,"poseId":0,"gatherItemId":100062,"pos":{"x":-4090.793,"y":207.268,"z":-3147.069},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":319012,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3994.188,"y":205.001,"z":-3194.723},"rot":{"x":0.0,"y":183.545,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":319009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4092.48,"y":206.363,"z":-3137.906},"rot":{"x":0.0,"y":133.101,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":319044,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-4002.595,"y":199.177,"z":-3221.247},"rot":{"x":0.0,"y":93.88,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":319043,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3992.809,"y":198.895,"z":-3230.526},"rot":{"x":0.0,"y":246.05,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":319006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3955.503,"y":200.493,"z":-3269.145},"rot":{"x":0.0,"y":208.485,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":319003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3931.021,"y":212.903,"z":-3215.672},"rot":{"x":0.0,"y":111.196,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":319013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3896.591,"y":212.13,"z":-3254.334},"rot":{"x":0.0,"y":89.313,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":319052,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3961.708,"y":200.226,"z":-3302.348},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":319050,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3935.862,"y":203.271,"z":-3305.917},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":319042,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3951.451,"y":204.558,"z":-3298.384},"rot":{"x":0.0,"y":274.267,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":319041,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3949.004,"y":204.278,"z":-3297.737},"rot":{"x":0.0,"y":228.267,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":319051,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3942.996,"y":202.151,"z":-3302.54},"rot":{"x":8.481,"y":250.531,"z":2.646}},{"monsterId":0,"gadgetId":70520026,"configId":319040,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3950.869,"y":203.268,"z":-3299.544},"rot":{"x":0.0,"y":179.267,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3908.74,"y":202.676,"z":-3310.911},"rot":{"x":0.0,"y":274.113,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3908.471,"y":202.264,"z":-3311.264},"rot":{"x":0.0,"y":274.113,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":319020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3909.26,"y":201.978,"z":-3311.125},"rot":{"x":0.0,"y":274.113,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":319005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3940.79,"y":201.405,"z":-3312.854},"rot":{"x":0.0,"y":336.999,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":319007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3858.593,"y":208.032,"z":-3258.408},"rot":{"x":0.0,"y":259.138,"z":0.0}}]},{"sceneId":3,"groupId":166001309,"blockId":0,"pos":{"x":368.847,"y":0.0,"z":1246.327},"spawns":[{"monsterId":0,"gadgetId":71700372,"configId":309005,"level":0,"poseId":0,"gatherItemId":101724,"pos":{"x":368.847,"y":109.276,"z":1246.327},"rot":{"x":0.0,"y":0.0,"z":341.101}}]},{"sceneId":3,"groupId":133002388,"blockId":0,"pos":{"x":1833.1604,"y":0.0,"z":-901.4365},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":388002,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1827.726,"y":233.508,"z":-898.064},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":388004,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":1838.595,"y":233.2,"z":-904.809},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133213321,"blockId":0,"pos":{"x":-3710.5605,"y":0.0,"z":-3178.3345},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":321011,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3649.171,"y":267.069,"z":-3276.734},"rot":{"x":0.0,"y":94.417,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321061,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3629.472,"y":209.518,"z":-3276.619},"rot":{"x":0.0,"y":53.2,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":321017,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3590.24,"y":219.041,"z":-3280.573},"rot":{"x":0.0,"y":172.118,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321062,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3640.021,"y":210.527,"z":-3269.83},"rot":{"x":0.0,"y":82.7,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":321003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3599.881,"y":247.193,"z":-3263.83},"rot":{"x":0.0,"y":355.678,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321029,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3612.439,"y":202.498,"z":-3301.816},"rot":{"x":0.0,"y":291.166,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321028,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3612.287,"y":202.086,"z":-3302.232},"rot":{"x":0.0,"y":291.166,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321027,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3613.0,"y":201.8,"z":-3301.868},"rot":{"x":0.0,"y":291.166,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":321001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3649.284,"y":202.468,"z":-3323.695},"rot":{"x":0.0,"y":54.089,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":321002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3585.591,"y":250.667,"z":-3222.841},"rot":{"x":0.0,"y":234.78,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":321006,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3659.665,"y":207.93,"z":-3201.668},"rot":{"x":0.0,"y":71.473,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":321015,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3641.365,"y":232.707,"z":-3192.716},"rot":{"x":0.0,"y":216.545,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":321088,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3662.794,"y":203.911,"z":-3320.655},"rot":{"x":339.91,"y":349.406,"z":4.527}},{"monsterId":0,"gadgetId":70520002,"configId":321087,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3666.111,"y":206.595,"z":-3315.207},"rot":{"x":328.106,"y":1.532,"z":354.644}},{"monsterId":0,"gadgetId":70520002,"configId":321085,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3663.716,"y":206.558,"z":-3315.02},"rot":{"x":4.345,"y":253.964,"z":28.619}},{"monsterId":0,"gadgetId":70520002,"configId":321086,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3670.21,"y":209.028,"z":-3311.832},"rot":{"x":320.908,"y":0.318,"z":359.105}},{"monsterId":0,"gadgetId":70520033,"configId":321060,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3659.891,"y":210.997,"z":-3244.999},"rot":{"x":0.0,"y":44.38,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321059,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3666.741,"y":207.339,"z":-3221.349},"rot":{"x":0.0,"y":25.2,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":321077,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3625.653,"y":207.341,"z":-3293.141},"rot":{"x":286.453,"y":221.665,"z":278.946}},{"monsterId":0,"gadgetId":70520033,"configId":321049,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3655.991,"y":206.943,"z":-3187.525},"rot":{"x":0.0,"y":301.577,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321048,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3660.922,"y":206.289,"z":-3184.331},"rot":{"x":0.0,"y":83.034,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":321073,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3612.962,"y":228.534,"z":-3213.734},"rot":{"x":321.153,"y":88.263,"z":18.924}},{"monsterId":0,"gadgetId":70540001,"configId":321025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3630.646,"y":274.766,"z":-3130.248},"rot":{"x":0.0,"y":355.678,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3630.956,"y":274.354,"z":-3130.565},"rot":{"x":0.0,"y":355.678,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321023,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3630.934,"y":274.068,"z":-3129.765},"rot":{"x":0.0,"y":355.678,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":321041,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3650.899,"y":286.298,"z":-3074.787},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":321040,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3650.072,"y":286.018,"z":-3077.179},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":321014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3621.425,"y":277.702,"z":-3088.952},"rot":{"x":0.0,"y":37.161,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321050,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3653.245,"y":201.213,"z":-3163.668},"rot":{"x":0.0,"y":311.45,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321063,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3669.116,"y":203.341,"z":-3095.466},"rot":{"x":0.0,"y":101.19,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":321039,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3652.013,"y":285.008,"z":-3075.454},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321058,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3687.93,"y":205.76,"z":-3221.414},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321057,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3689.989,"y":204.366,"z":-3229.886},"rot":{"x":0.0,"y":263.0,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321047,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3673.055,"y":207.64,"z":-3231.993},"rot":{"x":0.0,"y":151.64,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321064,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3685.441,"y":202.565,"z":-3076.47},"rot":{"x":0.0,"y":89.23,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":321016,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3679.814,"y":289.441,"z":-3081.594},"rot":{"x":0.0,"y":161.063,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":321084,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3651.064,"y":285.825,"z":-3075.72},"rot":{"x":290.323,"y":103.163,"z":62.454}},{"monsterId":0,"gadgetId":70520028,"configId":321076,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3645.007,"y":282.086,"z":-3088.301},"rot":{"x":278.511,"y":319.465,"z":0.211}},{"monsterId":0,"gadgetId":70520028,"configId":321075,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3650.762,"y":284.773,"z":-3076.296},"rot":{"x":278.349,"y":336.925,"z":342.124}},{"monsterId":0,"gadgetId":70520028,"configId":321078,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3591.888,"y":245.803,"z":-3090.845},"rot":{"x":274.513,"y":260.072,"z":84.65}},{"monsterId":0,"gadgetId":70520005,"configId":321005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3715.43,"y":299.588,"z":-3079.498},"rot":{"x":0.0,"y":193.246,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321065,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3751.208,"y":203.535,"z":-3081.184},"rot":{"x":0.0,"y":127.42,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":321083,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3706.883,"y":251.139,"z":-3130.422},"rot":{"x":280.8,"y":199.195,"z":180.0}},{"monsterId":0,"gadgetId":70520028,"configId":321082,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3706.94,"y":227.481,"z":-3132.501},"rot":{"x":326.984,"y":344.616,"z":76.009}},{"monsterId":0,"gadgetId":70520028,"configId":321089,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3722.038,"y":273.615,"z":-3132.803},"rot":{"x":63.262,"y":223.848,"z":71.549}},{"monsterId":0,"gadgetId":70520028,"configId":321081,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3728.157,"y":248.734,"z":-3145.428},"rot":{"x":13.934,"y":352.442,"z":303.213}},{"monsterId":0,"gadgetId":70520028,"configId":321079,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3722.193,"y":272.95,"z":-3132.951},"rot":{"x":280.517,"y":345.514,"z":349.757}},{"monsterId":0,"gadgetId":70520028,"configId":321080,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3718.486,"y":291.213,"z":-3159.625},"rot":{"x":359.23,"y":0.002,"z":359.68}},{"monsterId":0,"gadgetId":70520033,"configId":321052,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3788.442,"y":201.97,"z":-3227.074},"rot":{"x":0.0,"y":242.12,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321056,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3702.995,"y":200.701,"z":-3230.973},"rot":{"x":0.0,"y":176.68,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":321009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3793.334,"y":270.497,"z":-3215.202},"rot":{"x":0.0,"y":277.138,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321051,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3796.324,"y":205.134,"z":-3173.799},"rot":{"x":0.0,"y":234.9,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":321013,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3806.433,"y":223.525,"z":-3183.175},"rot":{"x":0.0,"y":351.138,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":321008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3799.631,"y":327.189,"z":-3094.955},"rot":{"x":0.0,"y":95.281,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321067,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3804.668,"y":204.001,"z":-3077.779},"rot":{"x":0.0,"y":321.389,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321031,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3793.359,"y":320.418,"z":-3078.202},"rot":{"x":0.0,"y":100.709,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321032,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3794.126,"y":320.704,"z":-3077.973},"rot":{"x":0.0,"y":100.709,"z":0.0}},{"monsterId":0,"gadgetId":70520033,"configId":321066,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3806.557,"y":202.724,"z":-3086.139},"rot":{"x":0.0,"y":252.575,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321033,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3793.901,"y":321.116,"z":-3078.355},"rot":{"x":0.0,"y":100.709,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":321095,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3768.262,"y":322.504,"z":-3092.156},"rot":{"x":282.006,"y":1.011,"z":139.236}},{"monsterId":0,"gadgetId":70520028,"configId":321094,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3769.503,"y":318.587,"z":-3092.613},"rot":{"x":282.006,"y":1.011,"z":8.96}},{"monsterId":0,"gadgetId":70520028,"configId":321093,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3771.537,"y":318.342,"z":-3100.606},"rot":{"x":273.98,"y":324.65,"z":303.976}},{"monsterId":0,"gadgetId":70520033,"configId":321053,"level":0,"poseId":0,"gatherItemId":101205,"pos":{"x":-3740.961,"y":200.357,"z":-3245.423},"rot":{"x":0.0,"y":243.24,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":321092,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3823.72,"y":240.14,"z":-3199.134},"rot":{"x":354.595,"y":0.815,"z":342.856}},{"monsterId":0,"gadgetId":70540001,"configId":321037,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3812.336,"y":203.764,"z":-3157.981},"rot":{"x":0.0,"y":57.499,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321036,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3812.762,"y":203.352,"z":-3157.858},"rot":{"x":0.0,"y":57.499,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321035,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3812.046,"y":203.066,"z":-3157.499},"rot":{"x":0.0,"y":57.499,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":321010,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3831.948,"y":235.659,"z":-3169.994},"rot":{"x":0.0,"y":109.518,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3831.721,"y":339.41,"z":-3139.518},"rot":{"x":0.0,"y":17.546,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321019,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3831.808,"y":338.712,"z":-3138.962},"rot":{"x":0.0,"y":17.546,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":321020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3832.126,"y":338.998,"z":-3139.697},"rot":{"x":0.0,"y":17.546,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":321096,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3775.861,"y":321.71,"z":-3089.917},"rot":{"x":282.006,"y":1.011,"z":52.389}},{"monsterId":0,"gadgetId":70520025,"configId":321070,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3824.646,"y":198.527,"z":-3282.276},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":321072,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3827.355,"y":198.551,"z":-3289.486},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":321068,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3816.427,"y":199.179,"z":-3264.79},"rot":{"x":0.0,"y":31.453,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":321046,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3812.24,"y":198.889,"z":-3269.849},"rot":{"x":0.0,"y":201.98,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":321071,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3795.065,"y":198.725,"z":-3265.112},"rot":{"x":0.0,"y":293.69,"z":0.0}}]},{"sceneId":3,"groupId":133213322,"blockId":0,"pos":{"x":-3263.1157,"y":0.0,"z":-3611.5837},"spawns":[{"monsterId":0,"gadgetId":70540003,"configId":322008,"level":0,"poseId":0,"gatherItemId":100001,"pos":{"x":-3252.296,"y":206.737,"z":-3602.081},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":322007,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3241.953,"y":210.763,"z":-3593.095},"rot":{"x":343.211,"y":357.58,"z":16.291}},{"monsterId":0,"gadgetId":70520029,"configId":322004,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3178.422,"y":197.7,"z":-3596.357},"rot":{"x":0.0,"y":173.99,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":322003,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3189.611,"y":198.048,"z":-3601.887},"rot":{"x":0.0,"y":113.64,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":322001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3283.078,"y":203.582,"z":-3616.135},"rot":{"x":0.0,"y":357.78,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":322002,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3306.205,"y":202.689,"z":-3665.769},"rot":{"x":0.0,"y":62.904,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":322006,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3325.996,"y":198.889,"z":-3612.336},"rot":{"x":0.0,"y":289.925,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":322005,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3327.363,"y":199.513,"z":-3605.01},"rot":{"x":0.0,"y":94.514,"z":0.0}}]},{"sceneId":3,"groupId":133003414,"blockId":0,"pos":{"x":2521.571,"y":0.0,"z":-1442.635},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":3909,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":2521.571,"y":221.537,"z":-1442.635},"rot":{"x":0.572,"y":33.139,"z":345.709}}]},{"sceneId":3,"groupId":133213323,"blockId":0,"pos":{"x":-3414.644,"y":0.0,"z":-3429.54},"spawns":[{"monsterId":0,"gadgetId":70540001,"configId":323022,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3520.36,"y":202.643,"z":-3421.67},"rot":{"x":0.0,"y":116.334,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323021,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3520.475,"y":202.231,"z":-3421.242},"rot":{"x":0.0,"y":116.334,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323020,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3519.797,"y":201.945,"z":-3421.669},"rot":{"x":0.0,"y":116.334,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":323056,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3475.836,"y":198.715,"z":-3460.418},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":323051,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3489.537,"y":206.257,"z":-3368.029},"rot":{"x":336.372,"y":359.813,"z":0.895}},{"monsterId":0,"gadgetId":70540001,"configId":323018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3477.26,"y":207.669,"z":-3341.088},"rot":{"x":0.0,"y":180.69,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3477.015,"y":206.971,"z":-3341.595},"rot":{"x":0.0,"y":180.69,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3476.924,"y":207.257,"z":-3340.799},"rot":{"x":0.0,"y":180.69,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":323052,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3502.221,"y":205.968,"z":-3361.48},"rot":{"x":347.445,"y":357.985,"z":18.167}},{"monsterId":0,"gadgetId":70590036,"configId":323050,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3494.939,"y":205.27,"z":-3368.576},"rot":{"x":17.161,"y":3.012,"z":19.768}},{"monsterId":0,"gadgetId":70520009,"configId":323006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3501.44,"y":204.752,"z":-3342.574},"rot":{"x":0.0,"y":319.264,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3332.358,"y":203.439,"z":-3520.434},"rot":{"x":0.0,"y":48.839,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3332.798,"y":203.027,"z":-3520.376},"rot":{"x":0.0,"y":48.839,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3332.144,"y":202.741,"z":-3519.913},"rot":{"x":0.0,"y":48.839,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":323030,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3330.811,"y":204.71,"z":-3526.191},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":323029,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3329.984,"y":204.43,"z":-3528.583},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":323028,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3331.925,"y":203.42,"z":-3526.858},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":323064,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3328.513,"y":204.63,"z":-3546.124},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":323003,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3356.438,"y":201.325,"z":-3562.54},"rot":{"x":0.0,"y":48.839,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":323010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3374.74,"y":202.497,"z":-3472.864},"rot":{"x":0.0,"y":21.383,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":323054,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3347.519,"y":201.923,"z":-3488.051},"rot":{"x":0.0,"y":0.0,"z":77.233}},{"monsterId":0,"gadgetId":70520026,"configId":323053,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3346.026,"y":201.619,"z":-3488.818},"rot":{"x":40.561,"y":33.292,"z":60.821}},{"monsterId":0,"gadgetId":70520009,"configId":323001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3355.536,"y":237.752,"z":-3471.564},"rot":{"x":0.0,"y":328.079,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":323042,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3339.038,"y":201.863,"z":-3464.09},"rot":{"x":2.526,"y":359.477,"z":336.611}},{"monsterId":0,"gadgetId":70590036,"configId":323041,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3344.199,"y":203.304,"z":-3460.164},"rot":{"x":14.991,"y":359.899,"z":359.232}},{"monsterId":0,"gadgetId":70520002,"configId":323036,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3407.99,"y":201.532,"z":-3448.142},"rot":{"x":0.0,"y":216.955,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323026,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3391.537,"y":203.269,"z":-3442.548},"rot":{"x":0.0,"y":0.693,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323025,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3391.873,"y":202.857,"z":-3442.837},"rot":{"x":0.0,"y":0.693,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323024,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3391.782,"y":202.571,"z":-3442.041},"rot":{"x":0.0,"y":0.693,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":323043,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3343.214,"y":201.583,"z":-3449.38},"rot":{"x":3.494,"y":359.622,"z":347.66}},{"monsterId":0,"gadgetId":70520002,"configId":323035,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3441.827,"y":201.385,"z":-3431.128},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":323034,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3434.773,"y":200.332,"z":-3421.659},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":323033,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3447.9,"y":200.819,"z":-3430.102},"rot":{"x":0.0,"y":142.395,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":323007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3378.871,"y":202.218,"z":-3420.34},"rot":{"x":0.0,"y":314.326,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":323048,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3362.045,"y":204.219,"z":-3421.771},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":323049,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3346.343,"y":218.429,"z":-3429.752},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":323047,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3348.478,"y":207.135,"z":-3412.937},"rot":{"x":4.324,"y":0.047,"z":352.734}},{"monsterId":0,"gadgetId":70540001,"configId":323046,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3348.811,"y":206.723,"z":-3413.229},"rot":{"x":4.324,"y":0.047,"z":352.734}},{"monsterId":0,"gadgetId":70540001,"configId":323045,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3348.729,"y":206.437,"z":-3412.433},"rot":{"x":4.324,"y":0.047,"z":352.734}},{"monsterId":0,"gadgetId":70520009,"configId":323004,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3448.677,"y":200.366,"z":-3444.67},"rot":{"x":0.0,"y":210.464,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":323005,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3446.432,"y":200.28,"z":-3398.567},"rot":{"x":0.0,"y":355.795,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":323037,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3432.697,"y":199.293,"z":-3404.061},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":323038,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3422.038,"y":199.206,"z":-3393.018},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":323031,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3406.625,"y":199.113,"z":-3396.994},"rot":{"x":0.0,"y":217.27,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":323032,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3464.946,"y":201.021,"z":-3441.083},"rot":{"x":0.0,"y":20.593,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":323059,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3440.013,"y":199.308,"z":-3366.915},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":323039,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3357.168,"y":198.588,"z":-3369.766},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":323040,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3347.771,"y":198.913,"z":-3371.536},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":323058,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3437.236,"y":199.396,"z":-3337.285},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":323008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3526.779,"y":205.988,"z":-3405.709},"rot":{"x":0.0,"y":217.82,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":323002,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3556.978,"y":204.77,"z":-3465.096},"rot":{"x":0.0,"y":116.334,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":323009,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3469.814,"y":203.765,"z":-3331.4},"rot":{"x":0.0,"y":268.553,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":323057,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3434.445,"y":198.766,"z":-3330.078},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520013,"configId":323060,"level":0,"poseId":0,"gatherItemId":100063,"pos":{"x":-3577.164,"y":200.207,"z":-3434.973},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133213324,"blockId":0,"pos":{"x":-3498.9897,"y":0.0,"z":-3175.7024},"spawns":[{"monsterId":0,"gadgetId":70520026,"configId":324021,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3474.637,"y":221.735,"z":-3089.538},"rot":{"x":0.0,"y":314.0,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":324022,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3475.464,"y":222.015,"z":-3087.146},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":324007,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3486.761,"y":222.631,"z":-3091.634},"rot":{"x":0.0,"y":25.368,"z":0.0}},{"monsterId":0,"gadgetId":70520026,"configId":324020,"level":0,"poseId":0,"gatherItemId":101211,"pos":{"x":-3476.578,"y":220.725,"z":-3087.813},"rot":{"x":0.0,"y":265.0,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":324023,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3465.496,"y":199.405,"z":-3107.297},"rot":{"x":0.0,"y":139.33,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":324018,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3460.62,"y":203.459,"z":-3093.953},"rot":{"x":0.0,"y":14.368,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":324017,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3461.015,"y":203.047,"z":-3094.154},"rot":{"x":0.0,"y":14.368,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":324016,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3460.738,"y":202.761,"z":-3093.402},"rot":{"x":0.0,"y":14.368,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":324034,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3453.402,"y":202.876,"z":-3088.208},"rot":{"x":1.477,"y":79.542,"z":343.792}},{"monsterId":0,"gadgetId":70510005,"configId":324060,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3433.158,"y":200.677,"z":-3085.102},"rot":{"x":345.544,"y":3.041,"z":351.49}},{"monsterId":0,"gadgetId":70520002,"configId":324033,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3447.101,"y":204.128,"z":-3085.953},"rot":{"x":341.44,"y":353.269,"z":1.993}},{"monsterId":0,"gadgetId":70520002,"configId":324032,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3439.774,"y":201.989,"z":-3086.576},"rot":{"x":332.422,"y":359.052,"z":3.862}},{"monsterId":0,"gadgetId":70590036,"configId":324030,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3449.685,"y":203.464,"z":-3086.568},"rot":{"x":20.196,"y":231.186,"z":12.745}},{"monsterId":0,"gadgetId":70590036,"configId":324031,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3451.036,"y":201.511,"z":-3092.283},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324010,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3423.108,"y":201.234,"z":-3076.26},"rot":{"x":0.0,"y":59.71,"z":0.0}},{"monsterId":0,"gadgetId":70520025,"configId":324024,"level":0,"poseId":0,"gatherItemId":101206,"pos":{"x":-3463.791,"y":198.956,"z":-3120.882},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":324025,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3477.431,"y":199.506,"z":-3145.09},"rot":{"x":0.0,"y":316.96,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":324054,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3523.722,"y":212.834,"z":-3233.354},"rot":{"x":349.336,"y":2.96,"z":335.386}},{"monsterId":0,"gadgetId":70510005,"configId":324052,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3523.845,"y":213.252,"z":-3243.944},"rot":{"x":357.845,"y":359.26,"z":326.756}},{"monsterId":0,"gadgetId":70520009,"configId":324006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3491.679,"y":201.093,"z":-3232.98},"rot":{"x":0.0,"y":113.146,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":324040,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3394.941,"y":199.158,"z":-3246.288},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":324029,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3536.484,"y":211.613,"z":-3279.032},"rot":{"x":334.048,"y":279.962,"z":28.726}},{"monsterId":0,"gadgetId":70520002,"configId":324028,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3534.444,"y":206.653,"z":-3288.327},"rot":{"x":0.0,"y":116.789,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":324027,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3534.189,"y":209.704,"z":-3279.618},"rot":{"x":336.712,"y":2.984,"z":352.278}},{"monsterId":0,"gadgetId":70520002,"configId":324026,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3539.495,"y":208.966,"z":-3287.624},"rot":{"x":342.347,"y":262.613,"z":17.983}},{"monsterId":0,"gadgetId":70520029,"configId":324047,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3496.872,"y":199.221,"z":-3279.048},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":324046,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3501.307,"y":199.261,"z":-3285.859},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324008,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3529.876,"y":214.89,"z":-3271.652},"rot":{"x":0.0,"y":15.173,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":324049,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3483.402,"y":199.072,"z":-3269.671},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":324048,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3478.385,"y":199.088,"z":-3264.063},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":324004,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3582.182,"y":204.741,"z":-3316.355},"rot":{"x":0.0,"y":237.055,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":324014,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3568.64,"y":247.216,"z":-3225.509},"rot":{"x":0.0,"y":96.697,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":324013,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3568.893,"y":246.804,"z":-3225.144},"rot":{"x":0.0,"y":96.697,"z":0.0}},{"monsterId":0,"gadgetId":70540001,"configId":324012,"level":0,"poseId":0,"gatherItemId":100051,"pos":{"x":-3568.111,"y":246.518,"z":-3225.318},"rot":{"x":0.0,"y":96.697,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":324058,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-3524.377,"y":212.665,"z":-3220.495},"rot":{"x":12.616,"y":330.924,"z":357.095}},{"monsterId":0,"gadgetId":70520005,"configId":324003,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3543.127,"y":216.559,"z":-3208.917},"rot":{"x":0.0,"y":95.505,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324009,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3580.935,"y":258.02,"z":-3174.045},"rot":{"x":0.0,"y":288.542,"z":0.0}},{"monsterId":0,"gadgetId":70520005,"configId":324005,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3524.501,"y":203.589,"z":-3173.766},"rot":{"x":0.0,"y":75.529,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":324001,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-3549.65,"y":204.322,"z":-3089.971},"rot":{"x":0.0,"y":85.571,"z":0.0}},{"monsterId":0,"gadgetId":70520028,"configId":324061,"level":0,"poseId":0,"gatherItemId":101201,"pos":{"x":-3580.743,"y":239.99,"z":-3095.272},"rot":{"x":283.155,"y":192.963,"z":193.235}}]},{"sceneId":3,"groupId":133213325,"blockId":0,"pos":{"x":-3613.9434,"y":0.0,"z":-3383.002},"spawns":[{"monsterId":0,"gadgetId":70520005,"configId":325001,"level":0,"poseId":0,"gatherItemId":100012,"pos":{"x":-3584.231,"y":200.65,"z":-3394.79},"rot":{"x":0.0,"y":318.483,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":325009,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3643.656,"y":197.816,"z":-3371.214},"rot":{"x":0.0,"y":165.14,"z":0.0}}]},{"sceneId":3,"groupId":133213326,"blockId":0,"pos":{"x":-3164.2021,"y":0.0,"z":-3923.9531},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":326018,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3161.298,"y":198.477,"z":-3929.585},"rot":{"x":0.0,"y":39.32,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":326017,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-3167.106,"y":198.642,"z":-3918.321},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":166001253,"blockId":0,"pos":{"x":764.43524,"y":0.0,"z":669.5482},"spawns":[{"monsterId":0,"gadgetId":70540032,"configId":253007,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1062.172,"y":916.791,"z":635.257},"rot":{"x":5.931,"y":335.163,"z":0.0}},{"monsterId":0,"gadgetId":70540032,"configId":253006,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":1063.82,"y":916.958,"z":632.099},"rot":{"x":342.917,"y":356.03,"z":25.991}},{"monsterId":0,"gadgetId":70520001,"configId":253011,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1073.214,"y":959.587,"z":656.747},"rot":{"x":359.464,"y":37.959,"z":350.584}},{"monsterId":0,"gadgetId":70520001,"configId":253010,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":1086.206,"y":957.464,"z":623.878},"rot":{"x":341.488,"y":87.267,"z":348.7}},{"monsterId":0,"gadgetId":70520002,"configId":253008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":1083.133,"y":957.172,"z":627.061},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":253002,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":211.392,"y":144.313,"z":699.914},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":253004,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":271.207,"y":160.045,"z":740.136},"rot":{"x":343.778,"y":358.358,"z":11.483}},{"monsterId":0,"gadgetId":70520038,"configId":253003,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":264.338,"y":158.56,"z":741.294},"rot":{"x":339.138,"y":41.404,"z":5.415}}]},{"sceneId":3,"groupId":133220468,"blockId":0,"pos":{"x":-2543.778,"y":0.0,"z":-4406.503},"spawns":[{"monsterId":0,"gadgetId":70520034,"configId":468003,"level":0,"poseId":0,"gatherItemId":101202,"pos":{"x":-2543.778,"y":141.286,"z":-4406.503},"rot":{"x":0.0,"y":36.359,"z":0.0}}]},{"sceneId":3,"groupId":133220471,"blockId":0,"pos":{"x":-2329.587,"y":0.0,"z":-4257.789},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":471005,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2298.197,"y":193.323,"z":-4318.871},"rot":{"x":0.0,"y":246.735,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":471004,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2345.237,"y":192.293,"z":-4276.407},"rot":{"x":0.0,"y":246.735,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":471003,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2332.624,"y":191.591,"z":-4263.273},"rot":{"x":0.0,"y":187.453,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":471002,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2341.099,"y":190.838,"z":-4219.123},"rot":{"x":0.0,"y":200.72,"z":0.0}},{"monsterId":0,"gadgetId":70520029,"configId":471001,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2330.777,"y":190.939,"z":-4211.272},"rot":{"x":0.0,"y":254.805,"z":0.0}}]},{"sceneId":3,"groupId":166001262,"blockId":0,"pos":{"x":701.32153,"y":0.0,"z":1052.266},"spawns":[{"monsterId":0,"gadgetId":70540031,"configId":262008,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":701.938,"y":929.378,"z":1048.087},"rot":{"x":336.306,"y":233.519,"z":16.549}},{"monsterId":0,"gadgetId":70520003,"configId":262007,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":700.705,"y":930.266,"z":1056.445},"rot":{"x":0.0,"y":45.089,"z":0.0}}]},{"sceneId":3,"groupId":133106815,"blockId":0,"pos":{"x":-486.97488,"y":0.0,"z":1020.2913},"spawns":[{"monsterId":0,"gadgetId":70540026,"configId":815041,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-167.755,"y":216.54,"z":1194.075},"rot":{"x":0.0,"y":257.645,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815045,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-282.272,"y":236.485,"z":1033.014},"rot":{"x":0.0,"y":139.353,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815044,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-271.187,"y":218.579,"z":1031.196},"rot":{"x":0.0,"y":151.372,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815042,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-287.347,"y":255.904,"z":1240.853},"rot":{"x":0.0,"y":251.212,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815038,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-502.839,"y":210.624,"z":1256.015},"rot":{"x":0.0,"y":290.125,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815039,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-526.544,"y":219.713,"z":1258.266},"rot":{"x":0.0,"y":250.955,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815037,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-541.478,"y":194.001,"z":1247.035},"rot":{"x":0.0,"y":228.529,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815033,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-593.858,"y":197.451,"z":1198.78},"rot":{"x":0.0,"y":215.755,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815034,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-632.724,"y":179.338,"z":1146.558},"rot":{"x":0.0,"y":240.129,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815035,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-551.963,"y":201.028,"z":1049.199},"rot":{"x":0.0,"y":78.068,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815040,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-180.331,"y":223.633,"z":1193.853},"rot":{"x":0.0,"y":191.05,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":815007,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-786.119,"y":225.786,"z":970.438},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":815006,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-718.089,"y":231.888,"z":986.383},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":815002,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-598.995,"y":314.983,"z":813.444},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815027,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-572.964,"y":254.579,"z":956.542},"rot":{"x":0.0,"y":96.373,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":815005,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-575.194,"y":263.877,"z":949.758},"rot":{"x":0.0,"y":274.903,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":815003,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-574.492,"y":263.379,"z":951.072},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815011,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-556.021,"y":280.989,"z":846.993},"rot":{"x":0.0,"y":145.15,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815012,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-563.678,"y":255.54,"z":857.449},"rot":{"x":0.0,"y":136.978,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815010,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-565.284,"y":291.613,"z":854.459},"rot":{"x":0.0,"y":114.878,"z":0.0}},{"monsterId":0,"gadgetId":70540029,"configId":815004,"level":0,"poseId":0,"gatherItemId":100031,"pos":{"x":-571.518,"y":263.225,"z":945.618},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815028,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-562.862,"y":242.34,"z":955.999},"rot":{"x":0.0,"y":99.001,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815014,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-543.121,"y":276.173,"z":811.162},"rot":{"x":0.0,"y":171.455,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815013,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-539.8,"y":257.065,"z":825.266},"rot":{"x":0.0,"y":156.483,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815032,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-605.211,"y":195.525,"z":1027.525},"rot":{"x":0.0,"y":158.738,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815030,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-570.15,"y":199.992,"z":1022.863},"rot":{"x":0.0,"y":267.527,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815029,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-560.356,"y":217.572,"z":1020.471},"rot":{"x":0.0,"y":286.956,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815031,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-605.361,"y":192.994,"z":1034.944},"rot":{"x":0.0,"y":161.863,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815036,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-547.995,"y":216.908,"z":1045.464},"rot":{"x":0.0,"y":85.343,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815023,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-456.39,"y":202.46,"z":945.437},"rot":{"x":0.0,"y":246.011,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815050,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-298.295,"y":232.666,"z":766.652},"rot":{"x":0.0,"y":84.118,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815047,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-296.729,"y":243.92,"z":957.208},"rot":{"x":0.0,"y":149.016,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815046,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-308.034,"y":264.71,"z":952.299},"rot":{"x":0.0,"y":168.355,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815048,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-321.115,"y":239.362,"z":1067.972},"rot":{"x":0.0,"y":117.324,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815049,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-350.477,"y":227.57,"z":1108.577},"rot":{"x":0.0,"y":203.443,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":815043,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-344.549,"y":236.335,"z":1207.649},"rot":{"x":0.0,"y":260.32,"z":0.0}}]},{"sceneId":3,"groupId":133106814,"blockId":0,"pos":{"x":-581.33044,"y":0.0,"z":1059.1056},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":814016,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-306.961,"y":238.395,"z":1037.616},"rot":{"x":342.575,"y":349.914,"z":59.872}},{"monsterId":0,"gadgetId":70520003,"configId":814013,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-310.706,"y":237.702,"z":1040.264},"rot":{"x":350.648,"y":235.379,"z":345.291}},{"monsterId":0,"gadgetId":70520003,"configId":814042,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-655.948,"y":167.594,"z":1087.651},"rot":{"x":18.925,"y":200.918,"z":316.431}},{"monsterId":0,"gadgetId":70520003,"configId":814043,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-652.25,"y":166.402,"z":1091.603},"rot":{"x":348.951,"y":191.275,"z":345.824}},{"monsterId":0,"gadgetId":70520003,"configId":814041,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-655.869,"y":166.505,"z":1090.383},"rot":{"x":21.208,"y":199.166,"z":331.98}},{"monsterId":0,"gadgetId":70520018,"configId":814047,"level":0,"poseId":0,"gatherItemId":100028,"pos":{"x":-793.916,"y":170.743,"z":783.062},"rot":{"x":20.985,"y":358.626,"z":288.744}},{"monsterId":0,"gadgetId":70520003,"configId":814046,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-794.382,"y":170.323,"z":775.2},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":814045,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-788.793,"y":170.407,"z":786.103},"rot":{"x":327.588,"y":0.145,"z":1.656}},{"monsterId":0,"gadgetId":70520003,"configId":814044,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-775.605,"y":170.254,"z":784.954},"rot":{"x":20.985,"y":358.626,"z":356.169}},{"monsterId":0,"gadgetId":70520002,"configId":814025,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-715.005,"y":191.464,"z":1001.054},"rot":{"x":2.645,"y":0.086,"z":3.714}},{"monsterId":0,"gadgetId":70520002,"configId":814027,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-695.187,"y":189.826,"z":1006.367},"rot":{"x":40.068,"y":36.645,"z":84.489}},{"monsterId":0,"gadgetId":70520002,"configId":814026,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-701.049,"y":206.989,"z":996.386},"rot":{"x":7.441,"y":359.852,"z":357.718}},{"monsterId":0,"gadgetId":70510012,"configId":814051,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-615.166,"y":302.307,"z":806.224},"rot":{"x":0.0,"y":241.217,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":814049,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-601.521,"y":300.147,"z":796.065},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":814018,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-893.563,"y":178.923,"z":1028.135},"rot":{"x":4.599,"y":358.024,"z":313.511}},{"monsterId":0,"gadgetId":70520002,"configId":814019,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-908.595,"y":180.982,"z":999.038},"rot":{"x":2.914,"y":359.503,"z":340.632}},{"monsterId":0,"gadgetId":70520003,"configId":814017,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-895.176,"y":179.17,"z":1025.376},"rot":{"x":0.0,"y":0.0,"z":352.875}},{"monsterId":0,"gadgetId":70520002,"configId":814036,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-513.754,"y":179.455,"z":905.758},"rot":{"x":72.217,"y":57.293,"z":73.659}},{"monsterId":0,"gadgetId":70520002,"configId":814030,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-264.165,"y":217.922,"z":758.295},"rot":{"x":11.867,"y":1.862,"z":348.277}},{"monsterId":0,"gadgetId":70520002,"configId":814028,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-246.435,"y":207.754,"z":788.989},"rot":{"x":55.447,"y":337.013,"z":317.696}},{"monsterId":0,"gadgetId":70520002,"configId":814031,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-259.834,"y":201.947,"z":813.989},"rot":{"x":28.159,"y":335.258,"z":277.658}},{"monsterId":0,"gadgetId":70520002,"configId":814029,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-204.287,"y":213.544,"z":758.266},"rot":{"x":36.274,"y":359.911,"z":359.727}},{"monsterId":0,"gadgetId":70520003,"configId":814015,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-321.71,"y":238.546,"z":1035.667},"rot":{"x":0.0,"y":282.505,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":814012,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-321.76,"y":238.631,"z":1034.834},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":814011,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-317.307,"y":239.238,"z":1028.029},"rot":{"x":4.61,"y":2.654,"z":15.875}},{"monsterId":0,"gadgetId":70520003,"configId":814014,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-318.059,"y":236.296,"z":1051.465},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":814035,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-344.731,"y":219.163,"z":1122.686},"rot":{"x":0.0,"y":0.0,"z":339.443}},{"monsterId":0,"gadgetId":70520003,"configId":814032,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-345.791,"y":219.6,"z":1126.944},"rot":{"x":16.809,"y":347.348,"z":286.234}},{"monsterId":0,"gadgetId":70520003,"configId":814034,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-344.299,"y":218.572,"z":1117.351},"rot":{"x":342.883,"y":359.588,"z":282.571}},{"monsterId":0,"gadgetId":70520003,"configId":814033,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-344.067,"y":218.64,"z":1116.145},"rot":{"x":356.634,"y":0.587,"z":340.232}},{"monsterId":0,"gadgetId":70520002,"configId":814009,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-630.415,"y":218.46,"z":1277.185},"rot":{"x":0.0,"y":141.63,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814008,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-627.082,"y":216.75,"z":1272.218},"rot":{"x":0.0,"y":260.57,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814007,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-645.438,"y":216.333,"z":1267.9},"rot":{"x":0.0,"y":227.66,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814006,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-639.763,"y":216.427,"z":1264.387},"rot":{"x":0.0,"y":85.86,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-652.968,"y":213.132,"z":1260.382},"rot":{"x":0.0,"y":55.31,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814004,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-660.974,"y":211.748,"z":1278.952},"rot":{"x":0.0,"y":19.4,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814010,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-626.036,"y":218.139,"z":1292.838},"rot":{"x":0.0,"y":319.9,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814023,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-709.457,"y":208.476,"z":1187.808},"rot":{"x":342.846,"y":2.676,"z":342.397}},{"monsterId":0,"gadgetId":70520002,"configId":814024,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-699.382,"y":208.711,"z":1193.321},"rot":{"x":300.333,"y":319.648,"z":65.298}},{"monsterId":0,"gadgetId":70520002,"configId":814001,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-654.295,"y":214.258,"z":1311.415},"rot":{"x":0.0,"y":253.96,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814003,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-646.705,"y":216.873,"z":1310.428},"rot":{"x":0.0,"y":98.17,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814002,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-649.485,"y":216.254,"z":1310.918},"rot":{"x":0.0,"y":334.34,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":814020,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-797.774,"y":162.055,"z":1202.669},"rot":{"x":18.668,"y":5.184,"z":30.796}},{"monsterId":0,"gadgetId":70520002,"configId":814022,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-803.963,"y":156.531,"z":1224.616},"rot":{"x":12.462,"y":5.744,"z":49.36}},{"monsterId":0,"gadgetId":70520002,"configId":814021,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-810.244,"y":157.081,"z":1210.815},"rot":{"x":7.463,"y":1.408,"z":21.338}}]},{"sceneId":3,"groupId":133003387,"blockId":0,"pos":{"x":2708.3262,"y":0.0,"z":-1227.156},"spawns":[{"monsterId":0,"gadgetId":70520006,"configId":3810,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2708.409,"y":249.011,"z":-1225.202},"rot":{"x":0.0,"y":56.013,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":3808,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2710.118,"y":249.18,"z":-1227.215},"rot":{"x":0.0,"y":45.546,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":3809,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2708.523,"y":249.209,"z":-1229.168},"rot":{"x":0.0,"y":112.648,"z":0.0}},{"monsterId":0,"gadgetId":70520006,"configId":3807,"level":0,"poseId":0,"gatherItemId":100013,"pos":{"x":2706.255,"y":248.883,"z":-1227.039},"rot":{"x":0.0,"y":191.41,"z":0.0}}]},{"sceneId":3,"groupId":133106801,"blockId":0,"pos":{"x":-597.40796,"y":0.0,"z":959.0769},"spawns":[{"monsterId":0,"gadgetId":70510012,"configId":801113,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-143.273,"y":221.251,"z":1044.635},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801004,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-906.389,"y":241.782,"z":642.612},"rot":{"x":0.0,"y":120.156,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801002,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-896.536,"y":230.391,"z":645.8},"rot":{"x":352.827,"y":166.183,"z":31.652}},{"monsterId":0,"gadgetId":70510012,"configId":801107,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-874.711,"y":177.83,"z":849.419},"rot":{"x":0.0,"y":75.282,"z":10.673}},{"monsterId":0,"gadgetId":70510012,"configId":801105,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-793.318,"y":223.771,"z":988.948},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801065,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-669.254,"y":146.487,"z":874.882},"rot":{"x":352.927,"y":0.135,"z":357.821}},{"monsterId":0,"gadgetId":70520003,"configId":801068,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-670.547,"y":147.003,"z":874.108},"rot":{"x":20.285,"y":358.251,"z":350.247}},{"monsterId":0,"gadgetId":70520003,"configId":801069,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-671.194,"y":147.322,"z":872.807},"rot":{"x":7.166,"y":18.5,"z":325.783}},{"monsterId":0,"gadgetId":70510012,"configId":801062,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-643.36,"y":150.675,"z":862.551},"rot":{"x":0.0,"y":68.082,"z":0.0}},{"monsterId":0,"gadgetId":70520002,"configId":801063,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-636.087,"y":147.344,"z":871.579},"rot":{"x":348.467,"y":329.54,"z":341.224}},{"monsterId":0,"gadgetId":70510012,"configId":801060,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-634.128,"y":145.953,"z":883.387},"rot":{"x":20.294,"y":340.582,"z":37.362}},{"monsterId":0,"gadgetId":70520003,"configId":801070,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-644.525,"y":147.042,"z":902.598},"rot":{"x":329.298,"y":350.143,"z":327.917}},{"monsterId":0,"gadgetId":70520002,"configId":801067,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-648.036,"y":147.814,"z":899.059},"rot":{"x":345.016,"y":339.915,"z":340.431}},{"monsterId":0,"gadgetId":70520002,"configId":801066,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-645.506,"y":147.152,"z":901.038},"rot":{"x":5.703,"y":50.113,"z":352.956}},{"monsterId":0,"gadgetId":70510012,"configId":801117,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-594.284,"y":229.92,"z":964.243},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801119,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-973.25,"y":222.093,"z":973.348},"rot":{"x":0.0,"y":212.232,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801109,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-700.825,"y":214.826,"z":755.043},"rot":{"x":0.0,"y":23.523,"z":15.661}},{"monsterId":0,"gadgetId":70510012,"configId":801097,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-531.889,"y":213.071,"z":1016.539},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801038,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-231.923,"y":180.944,"z":886.918},"rot":{"x":356.424,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801111,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-147.319,"y":189.233,"z":832.174},"rot":{"x":0.0,"y":133.139,"z":0.0}},{"monsterId":0,"gadgetId":70510006,"configId":801036,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-222.382,"y":180.563,"z":890.481},"rot":{"x":5.279,"y":359.549,"z":350.247}},{"monsterId":0,"gadgetId":70510006,"configId":801034,"level":0,"poseId":0,"gatherItemId":100053,"pos":{"x":-226.336,"y":180.898,"z":896.995},"rot":{"x":12.247,"y":359.235,"z":352.875}},{"monsterId":0,"gadgetId":70510012,"configId":801093,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-300.119,"y":259.543,"z":998.142},"rot":{"x":12.568,"y":137.062,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801095,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-345.131,"y":218.971,"z":1118.468},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801101,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-691.303,"y":209.968,"z":1210.772},"rot":{"x":0.0,"y":218.7,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801019,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-903.918,"y":155.349,"z":1365.744},"rot":{"x":0.0,"y":76.296,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801017,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-911.451,"y":155.257,"z":1361.029},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801115,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-243.138,"y":246.273,"z":1245.634},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510012,"configId":801123,"level":0,"poseId":0,"gatherItemId":100058,"pos":{"x":-824.699,"y":156.093,"z":1184.277},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004364,"blockId":0,"pos":{"x":2494.474,"y":0.0,"z":-289.57147},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":364003,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2489.813,"y":262.231,"z":-295.692},"rot":{"x":0.882,"y":359.925,"z":350.247}},{"monsterId":0,"gadgetId":70510007,"configId":364005,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":2499.135,"y":261.366,"z":-283.451},"rot":{"x":352.01,"y":0.25,"z":356.424}}]},{"sceneId":3,"groupId":133210199,"blockId":0,"pos":{"x":-3823.2922,"y":0.0,"z":-740.5713},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":199003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3832.534,"y":114.808,"z":-733.305},"rot":{"x":346.31,"y":100.598,"z":341.49}},{"monsterId":0,"gadgetId":70590036,"configId":199002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3817.237,"y":113.602,"z":-747.712},"rot":{"x":14.324,"y":212.067,"z":1.652}},{"monsterId":0,"gadgetId":70590036,"configId":199001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3820.106,"y":114.792,"z":-740.697},"rot":{"x":10.545,"y":244.412,"z":6.744}}]},{"sceneId":3,"groupId":133210200,"blockId":0,"pos":{"x":-3941.787,"y":0.0,"z":-793.10333},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":200002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3940.814,"y":125.861,"z":-795.292},"rot":{"x":12.1,"y":73.336,"z":343.438}},{"monsterId":0,"gadgetId":70590036,"configId":200001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3938.174,"y":124.584,"z":-797.635},"rot":{"x":6.678,"y":198.902,"z":17.125}},{"monsterId":0,"gadgetId":70590036,"configId":200003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3946.373,"y":131.871,"z":-786.383},"rot":{"x":27.535,"y":93.514,"z":19.782}}]},{"sceneId":3,"groupId":133008449,"blockId":0,"pos":{"x":1521.592,"y":0.0,"z":-635.122},"spawns":[{"monsterId":0,"gadgetId":70590031,"configId":449002,"level":0,"poseId":0,"gatherItemId":107010,"pos":{"x":1521.592,"y":272.022,"z":-635.122},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133108802,"blockId":0,"pos":{"x":-102.442665,"y":0.0,"z":-186.17834},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":802060,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-105.158,"y":201.062,"z":-181.3},"rot":{"x":355.456,"y":314.713,"z":341.601}},{"monsterId":0,"gadgetId":70520002,"configId":802059,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-106.393,"y":201.385,"z":-184.53},"rot":{"x":355.456,"y":314.713,"z":341.601}},{"monsterId":0,"gadgetId":70520002,"configId":802061,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-95.777,"y":200.736,"z":-192.705},"rot":{"x":341.094,"y":234.902,"z":345.034}}]},{"sceneId":3,"groupId":133108801,"blockId":0,"pos":{"x":-96.863304,"y":0.0,"z":-190.63419},"spawns":[{"monsterId":0,"gadgetId":70510007,"configId":801014,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-70.832,"y":199.637,"z":-85.981},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":801012,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-65.331,"y":199.62,"z":-82.91},"rot":{"x":0.0,"y":315.621,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":801121,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":-88.991,"y":199.855,"z":-162.21},"rot":{"x":0.0,"y":253.605,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":801118,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":-32.35,"y":199.919,"z":-189.889},"rot":{"x":351.47,"y":265.325,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":801125,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":-152.97,"y":200.0,"z":-207.687},"rot":{"x":0.0,"y":253.605,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":801119,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":-69.882,"y":199.685,"z":-203.189},"rot":{"x":0.0,"y":253.605,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":801120,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":-59.629,"y":200.2,"z":-227.764},"rot":{"x":0.0,"y":253.605,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":801124,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":-181.908,"y":199.542,"z":-243.893},"rot":{"x":0.0,"y":253.605,"z":0.0}},{"monsterId":0,"gadgetId":70540028,"configId":801122,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":-112.714,"y":200.147,"z":-239.391},"rot":{"x":354.038,"y":253.499,"z":0.863}},{"monsterId":0,"gadgetId":70540028,"configId":801123,"level":0,"poseId":0,"gatherItemId":100033,"pos":{"x":-134.026,"y":199.481,"z":-263.428},"rot":{"x":0.0,"y":253.605,"z":0.0}}]},{"sceneId":3,"groupId":133107805,"blockId":0,"pos":{"x":-229.19019,"y":0.0,"z":128.2942},"spawns":[{"monsterId":0,"gadgetId":70540026,"configId":805009,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-217.847,"y":279.916,"z":196.972},"rot":{"x":0.0,"y":8.744,"z":0.0}},{"monsterId":0,"gadgetId":70510007,"configId":805004,"level":0,"poseId":0,"gatherItemId":100052,"pos":{"x":-241.978,"y":200.0,"z":177.872},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805012,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-229.702,"y":265.222,"z":43.225},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805011,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-242.607,"y":273.552,"z":95.664},"rot":{"x":0.0,"y":27.081,"z":0.0}},{"monsterId":0,"gadgetId":70540026,"configId":805010,"level":0,"poseId":0,"gatherItemId":100034,"pos":{"x":-213.817,"y":266.915,"z":127.738},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133002335,"blockId":0,"pos":{"x":1586.6783,"y":0.0,"z":-12.862631},"spawns":[{"monsterId":0,"gadgetId":70540008,"configId":335016,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1556.863,"y":259.643,"z":-5.717},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":335015,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1557.908,"y":260.319,"z":-5.699},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":335014,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1557.145,"y":259.771,"z":-5.695},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":335011,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1558.926,"y":260.197,"z":-3.476},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":335012,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1557.881,"y":259.521,"z":-3.493},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":335028,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1499.44,"y":264.744,"z":-28.807},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":335027,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1500.485,"y":265.42,"z":-28.789},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":335026,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1499.722,"y":264.871,"z":-28.786},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":335008,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1581.711,"y":259.559,"z":-27.401},"rot":{"x":342.747,"y":305.023,"z":354.59}},{"monsterId":0,"gadgetId":70540008,"configId":335007,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1582.584,"y":260.406,"z":-27.135},"rot":{"x":82.49,"y":80.61,"z":187.609}},{"monsterId":0,"gadgetId":70540008,"configId":335006,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1581.947,"y":259.736,"z":-27.304},"rot":{"x":352.823,"y":337.457,"z":10.252}},{"monsterId":0,"gadgetId":70540008,"configId":335002,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1583.588,"y":260.056,"z":-26.832},"rot":{"x":350.68,"y":260.162,"z":7.057}},{"monsterId":0,"gadgetId":70540008,"configId":335003,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1583.564,"y":260.694,"z":-26.142},"rot":{"x":85.818,"y":343.657,"z":168.319}},{"monsterId":0,"gadgetId":70540008,"configId":335004,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1583.613,"y":259.886,"z":-27.099},"rot":{"x":339.243,"y":227.793,"z":352.982}},{"monsterId":0,"gadgetId":70540008,"configId":335024,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1672.88,"y":277.361,"z":5.557},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":335023,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1673.925,"y":278.037,"z":5.574},"rot":{"x":80.732,"y":197.769,"z":283.477}},{"monsterId":0,"gadgetId":70540008,"configId":335022,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1673.161,"y":277.488,"z":5.578},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540008,"configId":335020,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1670.25,"y":276.749,"z":5.629},"rot":{"x":343.642,"y":330.7,"z":341.572}},{"monsterId":0,"gadgetId":70540008,"configId":335019,"level":0,"poseId":0,"gatherItemId":100027,"pos":{"x":1671.295,"y":277.425,"z":5.647},"rot":{"x":80.732,"y":197.769,"z":283.477}}]},{"sceneId":3,"groupId":133107803,"blockId":0,"pos":{"x":-562.7405,"y":0.0,"z":464.107},"spawns":[{"monsterId":0,"gadgetId":70540012,"configId":803066,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-562.058,"y":250.226,"z":399.994},"rot":{"x":0.001,"y":323.548,"z":350.994}},{"monsterId":0,"gadgetId":70540012,"configId":803063,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-563.103,"y":250.276,"z":399.494},"rot":{"x":11.353,"y":251.622,"z":356.725}},{"monsterId":0,"gadgetId":70540015,"configId":803009,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-534.334,"y":249.337,"z":428.096},"rot":{"x":16.17,"y":178.185,"z":19.39}},{"monsterId":0,"gadgetId":70540015,"configId":803008,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-534.37,"y":249.348,"z":428.169},"rot":{"x":0.0,"y":194.614,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803001,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-545.245,"y":248.552,"z":441.027},"rot":{"x":352.467,"y":262.447,"z":0.0}},{"monsterId":0,"gadgetId":70540015,"configId":803006,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-538.562,"y":248.541,"z":439.189},"rot":{"x":16.17,"y":343.571,"z":19.39}},{"monsterId":0,"gadgetId":70540012,"configId":803044,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-579.621,"y":250.276,"z":401.176},"rot":{"x":0.0,"y":306.463,"z":0.0}},{"monsterId":0,"gadgetId":70540015,"configId":803018,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-585.06,"y":250.265,"z":410.178},"rot":{"x":16.17,"y":299.442,"z":19.39}},{"monsterId":0,"gadgetId":70540015,"configId":803015,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-587.474,"y":250.265,"z":410.978},"rot":{"x":16.17,"y":343.571,"z":19.39}},{"monsterId":0,"gadgetId":70540012,"configId":803090,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-600.843,"y":250.141,"z":419.811},"rot":{"x":0.0,"y":19.431,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803095,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-663.446,"y":221.424,"z":280.195},"rot":{"x":0.0,"y":268.292,"z":21.585}},{"monsterId":0,"gadgetId":70540012,"configId":803094,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-656.806,"y":220.524,"z":282.331},"rot":{"x":0.0,"y":19.431,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803093,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-664.541,"y":221.418,"z":281.671},"rot":{"x":0.0,"y":19.431,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803022,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-620.073,"y":250.578,"z":431.008},"rot":{"x":0.0,"y":82.109,"z":0.0}},{"monsterId":0,"gadgetId":70540015,"configId":803030,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-607.003,"y":250.13,"z":431.632},"rot":{"x":16.17,"y":162.715,"z":19.39}},{"monsterId":0,"gadgetId":70540015,"configId":803021,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-607.9,"y":249.362,"z":447.631},"rot":{"x":16.17,"y":343.571,"z":19.39}},{"monsterId":0,"gadgetId":70540015,"configId":803029,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-607.039,"y":250.141,"z":431.705},"rot":{"x":0.0,"y":179.144,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803088,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-605.969,"y":249.645,"z":455.333},"rot":{"x":345.089,"y":283.786,"z":25.615}},{"monsterId":0,"gadgetId":70540012,"configId":803087,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-603.625,"y":249.579,"z":452.042},"rot":{"x":352.467,"y":262.447,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803023,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-499.377,"y":248.037,"z":466.362},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803072,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-514.59,"y":261.186,"z":475.163},"rot":{"x":0.0,"y":96.125,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803002,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-517.019,"y":260.94,"z":479.107},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803024,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-461.034,"y":238.58,"z":474.334},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803089,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-535.545,"y":250.484,"z":504.02},"rot":{"x":345.089,"y":283.786,"z":25.615}},{"monsterId":0,"gadgetId":70540015,"configId":803012,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-520.101,"y":250.688,"z":498.936},"rot":{"x":16.17,"y":202.541,"z":19.39}},{"monsterId":0,"gadgetId":70540015,"configId":803011,"level":0,"poseId":0,"gatherItemId":100029,"pos":{"x":-520.136,"y":250.699,"z":499.009},"rot":{"x":0.0,"y":218.97,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803101,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-449.993,"y":245.355,"z":489.921},"rot":{"x":15.792,"y":150.324,"z":353.494}},{"monsterId":0,"gadgetId":70540012,"configId":803100,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-451.227,"y":245.329,"z":490.03},"rot":{"x":8.341,"y":218.59,"z":3.513}},{"monsterId":0,"gadgetId":70520002,"configId":803067,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-698.173,"y":217.906,"z":651.962},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70540012,"configId":803025,"level":0,"poseId":0,"gatherItemId":100030,"pos":{"x":-386.076,"y":314.702,"z":562.363},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":803079,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-551.726,"y":344.385,"z":580.094},"rot":{"x":330.696,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":803078,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-546.847,"y":345.11,"z":580.018},"rot":{"x":330.879,"y":327.839,"z":24.229}},{"monsterId":0,"gadgetId":70520003,"configId":803077,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-549.995,"y":344.883,"z":581.47},"rot":{"x":43.03,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":803075,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-594.839,"y":347.759,"z":567.649},"rot":{"x":340.096,"y":272.773,"z":0.0}},{"monsterId":0,"gadgetId":70520003,"configId":803074,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-594.796,"y":347.415,"z":566.07},"rot":{"x":0.0,"y":0.0,"z":337.087}},{"monsterId":0,"gadgetId":70520003,"configId":803076,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":-600.109,"y":347.925,"z":569.686},"rot":{"x":11.754,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133210160,"blockId":0,"pos":{"x":-3817.1843,"y":0.0,"z":-609.5644},"spawns":[{"monsterId":0,"gadgetId":70520001,"configId":160004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3817.125,"y":169.236,"z":-610.278},"rot":{"x":355.241,"y":270.436,"z":21.388}},{"monsterId":0,"gadgetId":70520001,"configId":160003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3826.795,"y":169.883,"z":-609.939},"rot":{"x":1.034,"y":85.532,"z":337.6}},{"monsterId":0,"gadgetId":70590036,"configId":160001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3821.762,"y":169.409,"z":-610.426},"rot":{"x":357.669,"y":267.899,"z":22.8}},{"monsterId":0,"gadgetId":70520001,"configId":160005,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3811.267,"y":169.28,"z":-608.972},"rot":{"x":21.876,"y":170.375,"z":0.707}},{"monsterId":0,"gadgetId":70590036,"configId":160002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3808.972,"y":169.397,"z":-608.207},"rot":{"x":339.564,"y":10.427,"z":351.99}}]},{"sceneId":3,"groupId":133220401,"blockId":0,"pos":{"x":-2650.264,"y":0.0,"z":-4146.7026},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":401003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2654.671,"y":209.682,"z":-4140.311},"rot":{"x":0.0,"y":246.323,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":401002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2648.951,"y":211.966,"z":-4148.277},"rot":{"x":5.669,"y":233.883,"z":0.0}},{"monsterId":0,"gadgetId":70590036,"configId":401001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-2647.17,"y":213.531,"z":-4151.52},"rot":{"x":0.0,"y":246.323,"z":0.0}}]},{"sceneId":3,"groupId":133004329,"blockId":0,"pos":{"x":2305.0886,"y":0.0,"z":-424.3925},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":329005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2302.806,"y":247.674,"z":-421.396},"rot":{"x":337.126,"y":1.638,"z":351.915}},{"monsterId":0,"gadgetId":70520019,"configId":329004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2307.31,"y":247.885,"z":-422.033},"rot":{"x":1.723,"y":0.238,"z":15.71}},{"monsterId":0,"gadgetId":70520003,"configId":329001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2304.532,"y":247.488,"z":-429.225},"rot":{"x":356.048,"y":357.261,"z":10.79}},{"monsterId":0,"gadgetId":70520003,"configId":329002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2305.706,"y":249.405,"z":-424.916},"rot":{"x":347.393,"y":350.886,"z":6.007}}]},{"sceneId":3,"groupId":133223477,"blockId":0,"pos":{"x":-6197.836,"y":0.0,"z":-3266.001},"spawns":[{"monsterId":0,"gadgetId":71700328,"configId":477001,"level":0,"poseId":0,"gatherItemId":101601,"pos":{"x":-6197.836,"y":200.248,"z":-3266.001},"rot":{"x":0.0,"y":47.92,"z":0.0}}]},{"sceneId":3,"groupId":133004328,"blockId":0,"pos":{"x":2068.9187,"y":0.0,"z":-342.36975},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":328001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2063.76,"y":261.838,"z":-337.08},"rot":{"x":5.278,"y":336.401,"z":61.028}},{"monsterId":0,"gadgetId":70520019,"configId":328004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2068.053,"y":261.826,"z":-340.929},"rot":{"x":0.125,"y":1.038,"z":16.192}},{"monsterId":0,"gadgetId":70520019,"configId":328005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2071.656,"y":260.197,"z":-350.129},"rot":{"x":4.463,"y":0.105,"z":2.684}},{"monsterId":0,"gadgetId":70520003,"configId":328002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2072.206,"y":262.99,"z":-341.341},"rot":{"x":346.554,"y":357.343,"z":22.258}}]},{"sceneId":3,"groupId":133213238,"blockId":0,"pos":{"x":-3287.642,"y":0.0,"z":-3254.59},"spawns":[{"monsterId":0,"gadgetId":71700284,"configId":238001,"level":0,"poseId":0,"gatherItemId":100969,"pos":{"x":-3287.642,"y":208.393,"z":-3254.59},"rot":{"x":283.47,"y":163.056,"z":342.973}}]},{"sceneId":3,"groupId":133004330,"blockId":0,"pos":{"x":2381.5327,"y":0.0,"z":-330.702},"spawns":[{"monsterId":0,"gadgetId":70520003,"configId":330002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2388.123,"y":286.306,"z":-333.107},"rot":{"x":11.576,"y":2.106,"z":20.557}},{"monsterId":0,"gadgetId":70520003,"configId":330001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2376.607,"y":283.922,"z":-331.288},"rot":{"x":341.136,"y":358.933,"z":6.252}},{"monsterId":0,"gadgetId":70520019,"configId":330004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2382.034,"y":285.256,"z":-328.631},"rot":{"x":345.123,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520019,"configId":330005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2379.367,"y":284.731,"z":-329.782},"rot":{"x":338.747,"y":358.994,"z":5.356}}]},{"sceneId":3,"groupId":133004325,"blockId":0,"pos":{"x":2071.493,"y":0.0,"z":-37.16875},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":325005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2071.583,"y":209.783,"z":-39.268},"rot":{"x":34.675,"y":353.642,"z":339.823}},{"monsterId":0,"gadgetId":70520019,"configId":325004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2071.321,"y":207.833,"z":-35.955},"rot":{"x":38.761,"y":0.582,"z":4.559}},{"monsterId":0,"gadgetId":70520003,"configId":325002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2073.247,"y":208.06,"z":-36.211},"rot":{"x":7.999,"y":265.343,"z":348.82}},{"monsterId":0,"gadgetId":70520003,"configId":325001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2069.82,"y":207.844,"z":-37.241},"rot":{"x":6.72,"y":0.977,"z":16.532}}]},{"sceneId":3,"groupId":133002276,"blockId":0,"pos":{"x":1940.949,"y":0.0,"z":-267.818},"spawns":[{"monsterId":0,"gadgetId":70540013,"configId":2307,"level":0,"poseId":0,"gatherItemId":100021,"pos":{"x":1940.949,"y":268.982,"z":-267.818},"rot":{"x":10.361,"y":25.74,"z":350.833}}]},{"sceneId":3,"groupId":133004327,"blockId":0,"pos":{"x":2673.1685,"y":0.0,"z":-483.5748},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":327010,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2672.342,"y":224.429,"z":-479.571},"rot":{"x":350.092,"y":357.274,"z":30.701}},{"monsterId":0,"gadgetId":70520003,"configId":327001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2674.45,"y":222.149,"z":-486.179},"rot":{"x":328.511,"y":356.753,"z":11.483}},{"monsterId":0,"gadgetId":70520003,"configId":327002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2673.485,"y":225.154,"z":-483.935},"rot":{"x":348.444,"y":1.221,"z":347.98}},{"monsterId":0,"gadgetId":70520019,"configId":327004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2675.731,"y":224.454,"z":-485.15},"rot":{"x":351.683,"y":0.522,"z":352.827}},{"monsterId":0,"gadgetId":70520019,"configId":327005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2669.834,"y":221.552,"z":-483.039},"rot":{"x":349.636,"y":356.895,"z":33.277}}]},{"sceneId":3,"groupId":133008423,"blockId":0,"pos":{"x":992.77563,"y":0.0,"z":-499.10825},"spawns":[{"monsterId":0,"gadgetId":70590027,"configId":423002,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":789.633,"y":327.56,"z":-519.76},"rot":{"x":11.376,"y":358.502,"z":345.041}},{"monsterId":0,"gadgetId":70590027,"configId":423004,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":782.327,"y":326.714,"z":-523.564},"rot":{"x":6.865,"y":292.282,"z":350.409}},{"monsterId":0,"gadgetId":70590027,"configId":423003,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":784.895,"y":325.674,"z":-514.987},"rot":{"x":355.969,"y":229.46,"z":326.665}},{"monsterId":0,"gadgetId":70590027,"configId":423001,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":784.763,"y":325.326,"z":-513.845},"rot":{"x":346.14,"y":104.653,"z":20.628}},{"monsterId":0,"gadgetId":70590027,"configId":423011,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1139.996,"y":272.034,"z":-508.984},"rot":{"x":1.123,"y":20.182,"z":341.031}},{"monsterId":0,"gadgetId":70590027,"configId":423014,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1165.842,"y":273.174,"z":-472.876},"rot":{"x":7.712,"y":75.64,"z":347.963}},{"monsterId":0,"gadgetId":70590027,"configId":423013,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1167.783,"y":273.704,"z":-468.468},"rot":{"x":11.532,"y":49.566,"z":1.579}},{"monsterId":0,"gadgetId":70590027,"configId":423015,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1168.22,"y":273.104,"z":-471.674},"rot":{"x":358.598,"y":293.125,"z":12.8}},{"monsterId":0,"gadgetId":70590027,"configId":423012,"level":0,"poseId":0,"gatherItemId":101006,"pos":{"x":1151.521,"y":272.429,"z":-497.816},"rot":{"x":8.008,"y":77.751,"z":9.357}}]},{"sceneId":3,"groupId":133004326,"blockId":0,"pos":{"x":2148.0337,"y":0.0,"z":-585.2667},"spawns":[{"monsterId":0,"gadgetId":70520019,"configId":326005,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2146.61,"y":214.41,"z":-589.419},"rot":{"x":359.751,"y":251.613,"z":3.353}},{"monsterId":0,"gadgetId":70520003,"configId":326001,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2145.563,"y":213.568,"z":-585.722},"rot":{"x":41.379,"y":8.309,"z":21.774}},{"monsterId":0,"gadgetId":70520019,"configId":326004,"level":0,"poseId":0,"gatherItemId":101004,"pos":{"x":2150.986,"y":214.198,"z":-581.786},"rot":{"x":12.868,"y":1.749,"z":15.416}},{"monsterId":0,"gadgetId":70520003,"configId":326002,"level":0,"poseId":0,"gatherItemId":101003,"pos":{"x":2148.976,"y":214.426,"z":-584.14},"rot":{"x":0.087,"y":359.992,"z":349.949}}]},{"sceneId":3,"groupId":133004347,"blockId":0,"pos":{"x":2244.037,"y":0.0,"z":-928.383},"spawns":[{"monsterId":0,"gadgetId":71700153,"configId":347001,"level":0,"poseId":0,"gatherItemId":100550,"pos":{"x":2244.037,"y":210.213,"z":-928.383},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004346,"blockId":0,"pos":{"x":2244.975,"y":0.0,"z":-928.8},"spawns":[{"monsterId":0,"gadgetId":71700154,"configId":346001,"level":0,"poseId":0,"gatherItemId":100551,"pos":{"x":2244.975,"y":210.207,"z":-928.8},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004343,"blockId":0,"pos":{"x":2247.284,"y":0.0,"z":-930.266},"spawns":[{"monsterId":0,"gadgetId":71700152,"configId":343001,"level":0,"poseId":0,"gatherItemId":100552,"pos":{"x":2247.284,"y":210.122,"z":-930.266},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133212202,"blockId":0,"pos":{"x":-3844.4976,"y":0.0,"z":-2370.101},"spawns":[{"monsterId":0,"gadgetId":70590041,"configId":202029,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-4027.601,"y":235.52,"z":-2101.56},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590041,"configId":202010,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-3807.655,"y":280.234,"z":-2382.526},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590041,"configId":202012,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-3787.06,"y":263.075,"z":-2439.466},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70590041,"configId":202025,"level":0,"poseId":0,"gatherItemId":107014,"pos":{"x":-3755.674,"y":280.333,"z":-2556.853},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133004342,"blockId":0,"pos":{"x":2246.59,"y":0.0,"z":-929.848},"spawns":[{"monsterId":0,"gadgetId":71700151,"configId":342001,"level":0,"poseId":0,"gatherItemId":100549,"pos":{"x":2246.59,"y":210.248,"z":-929.848},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133210129,"blockId":0,"pos":{"x":-3782.0261,"y":0.0,"z":-678.84534},"spawns":[{"monsterId":0,"gadgetId":70590036,"configId":129003,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3786.596,"y":137.832,"z":-680.049},"rot":{"x":358.989,"y":220.947,"z":1.367}},{"monsterId":0,"gadgetId":70590036,"configId":129002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3786.104,"y":131.399,"z":-674.816},"rot":{"x":356.42,"y":78.904,"z":0.486}},{"monsterId":0,"gadgetId":70590036,"configId":129001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3773.378,"y":132.006,"z":-681.671},"rot":{"x":0.572,"y":120.738,"z":358.379}}]},{"sceneId":3,"groupId":133210130,"blockId":0,"pos":{"x":-3764.2488,"y":0.0,"z":-561.552},"spawns":[{"monsterId":0,"gadgetId":70520002,"configId":130005,"level":0,"poseId":0,"gatherItemId":101002,"pos":{"x":-3774.242,"y":204.175,"z":-553.193},"rot":{"x":353.833,"y":232.196,"z":12.018}},{"monsterId":0,"gadgetId":70590036,"configId":130001,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3773.019,"y":203.679,"z":-555.435},"rot":{"x":346.514,"y":294.636,"z":0.183}},{"monsterId":0,"gadgetId":70520001,"configId":130004,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3754.604,"y":200.121,"z":-566.749},"rot":{"x":4.267,"y":49.334,"z":2.221}},{"monsterId":0,"gadgetId":70520001,"configId":130003,"level":0,"poseId":0,"gatherItemId":101001,"pos":{"x":-3761.619,"y":200.447,"z":-564.903},"rot":{"x":355.842,"y":271.525,"z":348.437}},{"monsterId":0,"gadgetId":70590036,"configId":130002,"level":0,"poseId":0,"gatherItemId":101008,"pos":{"x":-3757.759,"y":200.236,"z":-567.48},"rot":{"x":359.396,"y":22.909,"z":356.832}}]},{"sceneId":3,"groupId":133220376,"blockId":0,"pos":{"x":-2294.542,"y":0.0,"z":-4372.179},"spawns":[{"monsterId":0,"gadgetId":70520029,"configId":376001,"level":0,"poseId":0,"gatherItemId":101210,"pos":{"x":-2294.542,"y":199.166,"z":-4372.179},"rot":{"x":0.0,"y":21.211,"z":0.0}}]},{"sceneId":3,"groupId":133008389,"blockId":0,"pos":{"x":1250.751,"y":0.0,"z":-907.44},"spawns":[{"monsterId":0,"gadgetId":71700158,"configId":389003,"level":0,"poseId":0,"gatherItemId":100610,"pos":{"x":1250.751,"y":383.023,"z":-907.44},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133217305,"blockId":0,"pos":{"x":-4522.9814,"y":0.0,"z":-3733.9404},"spawns":[{"monsterId":0,"gadgetId":70510005,"configId":305003,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4528.246,"y":200.0,"z":-3740.45},"rot":{"x":0.0,"y":145.119,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":305002,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4515.208,"y":200.048,"z":-3738.177},"rot":{"x":0.0,"y":225.789,"z":0.0}},{"monsterId":0,"gadgetId":70510005,"configId":305001,"level":0,"poseId":0,"gatherItemId":100054,"pos":{"x":-4525.49,"y":200.291,"z":-3723.194},"rot":{"x":358.879,"y":43.694,"z":6.331}}]},{"sceneId":3,"groupId":166001173,"blockId":0,"pos":{"x":153.4728,"y":0.0,"z":516.6294},"spawns":[{"monsterId":0,"gadgetId":70520038,"configId":173004,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":155.331,"y":265.6,"z":517.828},"rot":{"x":346.805,"y":272.553,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":173003,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":151.805,"y":265.671,"z":511.435},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":173002,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":155.361,"y":265.6,"z":516.948},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520038,"configId":173001,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":152.148,"y":265.856,"z":515.137},"rot":{"x":0.0,"y":0.0,"z":24.839}},{"monsterId":0,"gadgetId":70520038,"configId":173005,"level":0,"poseId":0,"gatherItemId":101212,"pos":{"x":152.719,"y":266.249,"z":521.799},"rot":{"x":0.0,"y":0.0,"z":0.0}}]},{"sceneId":3,"groupId":133217289,"blockId":0,"pos":{"x":-4718.09,"y":0.0,"z":-3713.2876},"spawns":[{"monsterId":0,"gadgetId":70520009,"configId":289025,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4692.218,"y":201.881,"z":-3808.764},"rot":{"x":0.0,"y":53.138,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":289043,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4763.058,"y":222.416,"z":-3690.052},"rot":{"x":0.0,"y":84.482,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":289006,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4729.882,"y":216.242,"z":-3681.043},"rot":{"x":0.0,"y":0.0,"z":0.0}},{"monsterId":0,"gadgetId":70520009,"configId":289014,"level":0,"poseId":0,"gatherItemId":100016,"pos":{"x":-4687.201,"y":213.97,"z":-3673.291},"rot":{"x":0.0,"y":211.497,"z":0.0}}]}] \ No newline at end of file