diff --git a/src/main/java/fenn7/grenadesandgadgets/client/screen/RemoteExplosiveScreen.java b/src/main/java/fenn7/grenadesandgadgets/client/screen/RemoteExplosiveScreen.java index 9ccbda4..bcc37fe 100644 --- a/src/main/java/fenn7/grenadesandgadgets/client/screen/RemoteExplosiveScreen.java +++ b/src/main/java/fenn7/grenadesandgadgets/client/screen/RemoteExplosiveScreen.java @@ -21,7 +21,7 @@ public class RemoteExplosiveScreen extends HandledScreen { private static final Identifier SCREEN = new Identifier(GrenadesMod.MOD_ID, "textures/gui/remote_explosive_block_gui.png"); private static final String TIME_TITLE = "container.grenadesandgadgets.time_ticks"; - private static final String ARMED = "container.grenadesandgadgets.armed"; + private static final String ARMED = "container.grenadesandgadgets.armed_remote"; private static final int TPS = 20; private static final int INCREMENT_BUTTONS = 4; private static final int BUTTON_DIMENSION = 14; diff --git a/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/AbstractDisguisedExplosiveBlockEntity.java b/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/AbstractDisguisedExplosiveBlockEntity.java index b1d442e..cf026c2 100644 --- a/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/AbstractDisguisedExplosiveBlockEntity.java +++ b/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/AbstractDisguisedExplosiveBlockEntity.java @@ -10,7 +10,6 @@ import net.minecraft.block.entity.BlockEntity; import net.minecraft.block.entity.BlockEntityType; import net.minecraft.entity.Entity; -import net.minecraft.entity.EntityType; import net.minecraft.entity.TntEntity; import net.minecraft.entity.player.PlayerEntity; import net.minecraft.item.Item; @@ -24,14 +23,18 @@ import net.minecraft.screen.PropertyDelegate; import net.minecraft.server.network.ServerPlayerEntity; import net.minecraft.server.world.ServerWorld; +import net.minecraft.sound.SoundCategory; +import net.minecraft.sound.SoundEvents; import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Vec3d; import net.minecraft.world.World; import org.jetbrains.annotations.Nullable; public abstract class AbstractDisguisedExplosiveBlockEntity extends BlockEntity implements ExtendedScreenHandlerFactory, ImplementedInventory { protected static final String LAST_USER = "last.user"; protected static final Map PAYLOAD_TO_ENTITY = Map.of( - Items.TNT, "TNT" + Items.TNT, "TNT", + Items.TNT_MINECART, "TNT" ); protected Item disguiseBlockItem; protected @Nullable PlayerEntity lastUser; @@ -61,7 +64,31 @@ protected void setLastUser(PlayerEntity player) { this.lastUserUUID = player.getUuid(); } - public abstract void detonate(World world, BlockPos pos); + public void detonate(World world, BlockPos pos) { + if (!world.isClient()) { + this.handleDetonation(world, pos); + } + } + + protected abstract void handleDetonation(World world, BlockPos pos); + + protected void handlePayload(ItemStack stack, World world, BlockPos pos) { + Entity payload; + switch (PAYLOAD_TO_ENTITY.getOrDefault(stack.getItem(), "")) { + case "TNT" -> { + payload = new TntEntity(world, pos.getX() + 0.5, pos.getY(), pos.getZ() + 0.5, this.getLastUser()); + ((TntEntity) payload).setFuse(0); + } + default -> payload = null; + }; + if (payload != null) { + payload.setNoGravity(true); + payload.setPosition(Vec3d.ofCenter(pos)); + world.playSound(null, pos, SoundEvents.BLOCK_NOTE_BLOCK_HARP, SoundCategory.HOSTILE, 20.0F, 0.5F); + world.breakBlock(pos, false); + world.spawnEntity(payload); + } + } public PropertyDelegate getDelegate() { return this.delegate; diff --git a/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/HiddenExplosiveBlockEntity.java b/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/HiddenExplosiveBlockEntity.java index aa917bd..2dc3c40 100644 --- a/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/HiddenExplosiveBlockEntity.java +++ b/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/HiddenExplosiveBlockEntity.java @@ -12,6 +12,7 @@ import net.fabricmc.fabric.api.screenhandler.v1.ExtendedScreenHandlerFactory; import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; +import net.minecraft.entity.TntEntity; import net.minecraft.entity.player.PlayerEntity; import net.minecraft.entity.player.PlayerInventory; import net.minecraft.inventory.Inventories; @@ -104,21 +105,24 @@ public static void tick(World world, BlockPos pos, BlockState state, HiddenExplo } } - public void detonate(World world, BlockPos pos) { + @Override + protected void handleDetonation(World world, BlockPos pos) { ItemStack stack = this.getStack(0); - if (stack.getItem() instanceof AbstractGrenadeItem grenadeItem && this.getLastUser() != null) { + this.removeStack(0); + if (stack.getItem() instanceof AbstractGrenadeItem grenadeItem) { var grenadeEntity = grenadeItem.createGrenadeAt(world, this.getLastUser(), stack); grenadeEntity.setItem(stack); GrenadeItem.addNbtModifier(stack, grenadeEntity); - this.removeStack(0); grenadeEntity.setMaxAgeTicks(5); grenadeEntity.setNoGravity(true); BlockPos potentialPos = pos.offset(Direction.byId(this.directionID)); grenadeEntity.setPosition(Vec3d.ofCenter(this.directionID > 0 ? (!world.getBlockState(potentialPos).isSolidBlock(world, pos) ? potentialPos : pos) : pos)); grenadeEntity.setPower(grenadeEntity.getPower() * (INCREASED_POWER_BASE + (0.9F - (MathHelper.clamp(this.detectRange, 1, 4) * INCREASED_POWER_PER_RANGE)))); - world.playSound(null, pos, SoundEvents.BLOCK_NOTE_BLOCK_BASS, SoundCategory.HOSTILE, 20.0F, 0.5F); + world.playSound(null, pos, SoundEvents.BLOCK_NOTE_BLOCK_HARP, SoundCategory.HOSTILE, 20.0F, 0.5F); world.breakBlock(pos, false); world.spawnEntity(grenadeEntity); + } else { + this.handlePayload(stack, world, pos); } } diff --git a/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/RemoteExplosiveBlockEntity.java b/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/RemoteExplosiveBlockEntity.java index fb0562a..b649f20 100644 --- a/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/RemoteExplosiveBlockEntity.java +++ b/src/main/java/fenn7/grenadesandgadgets/commonside/block/entity/RemoteExplosiveBlockEntity.java @@ -77,10 +77,11 @@ public static void tick(World world, BlockPos pos, BlockState state, RemoteExplo } } - public void detonate(World world, BlockPos pos) { + @Override + protected void handleDetonation(World world, BlockPos pos) { ItemStack stack = this.getStack(0); this.removeStack(0); - if (stack.getItem() instanceof AbstractGrenadeItem grenadeItem && this.getLastUser() != null) { + if (stack.getItem() instanceof AbstractGrenadeItem grenadeItem) { var grenadeEntity = grenadeItem.createGrenadeAt(world, this.getLastUser(), stack); grenadeEntity.setItem(stack); GrenadeItem.addNbtModifier(stack, grenadeEntity); @@ -90,24 +91,8 @@ public void detonate(World world, BlockPos pos) { world.playSound(null, pos, SoundEvents.BLOCK_NOTE_BLOCK_HARP, SoundCategory.HOSTILE, 20.0F, 0.5F); world.breakBlock(pos, false); world.spawnEntity(grenadeEntity); - //world.setBlockState(pos, Blocks.AIR.getDefaultState()); } else { - Entity payload; - switch (PAYLOAD_TO_ENTITY.get(stack.getItem())) { - case "TNT" -> { - payload = new TntEntity(world, pos.getX() + 0.5, pos.getY(), pos.getZ() + 0.5, this.getLastUser()); - ((TntEntity) payload).setFuse(0); - } - default -> payload = null; - }; - if (payload != null) { - payload.setNoGravity(true); - payload.setPosition(Vec3d.ofCenter(pos)); - world.playSound(null, pos, SoundEvents.BLOCK_NOTE_BLOCK_HARP, SoundCategory.HOSTILE, 20.0F, 0.5F); - world.breakBlock(pos, false); - world.spawnEntity(payload); - //world.setBlockState(pos, Blocks.AIR.getDefaultState()); - } + this.handlePayload(stack, world, pos); } } diff --git a/src/main/java/fenn7/grenadesandgadgets/commonside/callback/GrenadesModCallbacks.java b/src/main/java/fenn7/grenadesandgadgets/commonside/callback/GrenadesModCallbacks.java index 1ff0741..17bbf69 100644 --- a/src/main/java/fenn7/grenadesandgadgets/commonside/callback/GrenadesModCallbacks.java +++ b/src/main/java/fenn7/grenadesandgadgets/commonside/callback/GrenadesModCallbacks.java @@ -2,10 +2,16 @@ import fenn7.grenadesandgadgets.commonside.GrenadesMod; import fenn7.grenadesandgadgets.commonside.block.custom.HiddenExplosiveBlock; +import fenn7.grenadesandgadgets.commonside.block.custom.RemoteExplosiveBlock; +import fenn7.grenadesandgadgets.commonside.block.entity.AbstractDisguisedExplosiveBlockEntity; import fenn7.grenadesandgadgets.commonside.block.entity.HiddenExplosiveBlockEntity; +import fenn7.grenadesandgadgets.commonside.block.entity.RemoteExplosiveBlockEntity; +import fenn7.grenadesandgadgets.commonside.item.GrenadesModItems; +import fenn7.grenadesandgadgets.commonside.item.custom.misc.RemoteDetonatorItem; import net.fabricmc.fabric.api.event.player.AttackBlockCallback; import net.minecraft.block.BlockState; import net.minecraft.block.entity.BlockEntity; +import net.minecraft.item.ItemStack; import net.minecraft.util.ActionResult; public class GrenadesModCallbacks { @@ -14,8 +20,15 @@ public static void registerCallbacks() { AttackBlockCallback.EVENT.register((player, world, hand, pos, direction) -> { BlockState state = world.getBlockState(pos); BlockEntity blockEntity = world.getBlockEntity(pos); - if (!player.isSpectator() && blockEntity instanceof HiddenExplosiveBlockEntity h && state.get(HiddenExplosiveBlock.ARMED)) { - h.detonate(world, pos); + ItemStack stack = player.getStackInHand(hand); + if (!player.isSpectator()) { + if (blockEntity instanceof AbstractDisguisedExplosiveBlockEntity h) { + if (state.get(HiddenExplosiveBlock.ARMED)) { + h.detonate(world, pos); + } else if (h instanceof RemoteExplosiveBlockEntity && stack.getItem() instanceof RemoteDetonatorItem r) { + r.removeExplosivePosFromNbt(pos, stack.getOrCreateNbt(), player); + } + } } return ActionResult.PASS; }); diff --git a/src/main/java/fenn7/grenadesandgadgets/commonside/item/custom/misc/RemoteDetonatorItem.java b/src/main/java/fenn7/grenadesandgadgets/commonside/item/custom/misc/RemoteDetonatorItem.java index d685de2..8baa5dd 100644 --- a/src/main/java/fenn7/grenadesandgadgets/commonside/item/custom/misc/RemoteDetonatorItem.java +++ b/src/main/java/fenn7/grenadesandgadgets/commonside/item/custom/misc/RemoteDetonatorItem.java @@ -27,6 +27,8 @@ public class RemoteDetonatorItem extends Item { private static final String ALREADY = "container.grenadesandgadgets.already"; private static final String ADDED = "container.grenadesandgadgets.added"; private static final String MAXSIZE = "container.grenadesandgadgets.maxsize"; + private static final String NOTFOUND = "container.grenadesandgadgets.notfound"; + private static final String REMOVED = "container.grenadesandgadgets.removed"; private static final int MAX_LINKED_EXPLOSIVES = 8; public RemoteDetonatorItem(Settings settings) { @@ -46,7 +48,7 @@ public ActionResult useOnBlock(ItemUsageContext context) { public void appendTooltip(ItemStack stack, @Nullable World world, List tooltip, TooltipContext context) { super.appendTooltip(stack, world, tooltip, context); var positions = stack.getOrCreateNbt().getLongArray(NBT_TAG); - tooltip.add(GrenadesModUtil.textOf("Linked Explosives: " + positions.length)); + tooltip.add(GrenadesModUtil.textOf("Linked Explosives: " + positions.length + "/" + MAX_LINKED_EXPLOSIVES)); } private void addExplosivePosToNbt(BlockPos explosivePos, NbtCompound nbt, PlayerEntity player) { @@ -64,22 +66,38 @@ private void addExplosivePosToNbt(BlockPos explosivePos, NbtCompound nbt, Player nbt.putLongArray(NBT_TAG, explosivePosList.stream().mapToLong(BlockPos::asLong).toArray()); } + public void removeExplosivePosFromNbt(BlockPos explosivePos, NbtCompound nbt, PlayerEntity player) { + var explosivePosList = new ArrayList<>(Arrays.stream(nbt.getLongArray(NBT_TAG)).mapToObj(BlockPos::fromLong).toList()); + if (!explosivePosList.contains(explosivePos)) { + player.sendMessage(GrenadesModUtil.translatableTextOf(NOTFOUND), false); + } else { + if (!player.world.isClient) { + player.sendMessage(GrenadesModUtil.translatableTextOf(REMOVED).append(explosivePos.toShortString()), false); + } + explosivePosList.remove(explosivePos); + } + nbt.putLongArray(NBT_TAG, explosivePosList.stream().mapToLong(BlockPos::asLong).toArray()); + } + @Override public TypedActionResult use(World world, PlayerEntity user, Hand hand) { - NbtCompound nbt = user.getStackInHand(hand).getOrCreateNbt(); - var explosivePosList = new ArrayList<>(Arrays.stream(nbt.getLongArray(NBT_TAG)).mapToObj(BlockPos::fromLong).toList()); - var usedPosList = new ArrayList(); - explosivePosList.forEach(pos -> { + if (user.isSneaking()) { + NbtCompound nbt = user.getStackInHand(hand).getOrCreateNbt(); + var explosivePosList = new ArrayList<>(Arrays.stream(nbt.getLongArray(NBT_TAG)).mapToObj(BlockPos::fromLong).toList()); + var usedPosList = new ArrayList(); + explosivePosList.forEach(pos -> { + if (world.getBlockEntity(pos) instanceof RemoteExplosiveBlockEntity) { + world.setBlockState(pos, world.getBlockState(pos).with(RemoteExplosiveBlock.ARMED, true)); + usedPosList.add(pos); + } + }); if (!world.isClient) { - user.sendMessage(Text.of(pos.toShortString()), false); + user.sendMessage(GrenadesModUtil.textOf("Detonating " + usedPosList.size() + " explosives!"), false); } - if (world.getBlockEntity(pos) instanceof RemoteExplosiveBlockEntity) { - world.setBlockState(pos, world.getBlockState(pos).with(RemoteExplosiveBlock.ARMED, true)); - usedPosList.add(pos); - } - }); - explosivePosList.removeAll(usedPosList); - nbt.putLongArray(NBT_TAG, explosivePosList.stream().mapToLong(BlockPos::asLong).toArray()); - return TypedActionResult.consume(user.getStackInHand(hand)); + explosivePosList.removeAll(usedPosList); + nbt.putLongArray(NBT_TAG, explosivePosList.stream().mapToLong(BlockPos::asLong).toArray()); + return TypedActionResult.consume(user.getStackInHand(hand)); + } + return super.use(world, user, hand); } } diff --git a/src/main/resources/assets/grenadesandgadgets/geo/bbmodel/grenade_launcher.bbmodel b/src/main/resources/assets/grenadesandgadgets/geo/bbmodel/grenade_launcher.bbmodel index c048c7f..a11612f 100644 --- a/src/main/resources/assets/grenadesandgadgets/geo/bbmodel/grenade_launcher.bbmodel +++ b/src/main/resources/assets/grenadesandgadgets/geo/bbmodel/grenade_launcher.bbmodel @@ -1 +1 @@ -{"meta":{"format_version":"4.0","model_format":"java_block","box_uv":false},"name":"grenade_launcher","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"resolution":{"width":32,"height":32},"elements":[{"name":"cube","rescale":false,"locked":false,"from":[6,0,6.5],"to":[6.5,11,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[3,0,3.5,5.5],"texture":2},"east":{"uv":[3.5,0,4,5.5],"texture":2},"south":{"uv":[0,4,0.5,9.5],"texture":2},"west":{"uv":[4,0,4.5,5.5],"texture":2},"up":{"uv":[19.5,14,19,13.5],"texture":2},"down":{"uv":[19.5,14,19,14.5],"texture":2}},"type":"cube","uuid":"8b53daa8-9584-82a2-08e1-7212e1f91c99"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,1.5,4],"to":[8.5,10.5,5],"autouv":1,"color":6,"origin":[10,0.5,8],"faces":{"north":{"uv":[0,0,4,36],"texture":0},"east":{"uv":[0,0,4,36],"texture":0},"south":{"uv":[0,0,4,36],"texture":0},"west":{"uv":[0,0,4,36],"texture":0},"up":{"uv":[0,0,4,4],"rotation":90,"texture":0},"down":{"uv":[0,0,4,4],"rotation":270,"texture":0}},"type":"cube","uuid":"65ee8b0b-a58b-361f-ec15-a7bfa00f4dac"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,2.5,3],"to":[8.5,10.5,4],"autouv":1,"color":6,"origin":[10,0.5,8],"faces":{"north":{"uv":[0,0,4,32],"texture":0},"east":{"uv":[0,0,4,32],"texture":0},"south":{"uv":[0,0,4,32],"texture":0},"west":{"uv":[0,0,4,32],"texture":0},"up":{"uv":[0,0,4,4],"rotation":90,"texture":0},"down":{"uv":[0,0,4,4],"rotation":270,"texture":0}},"type":"cube","uuid":"4bc2b90a-f51f-7a0f-812c-ba3ac25cd5bd"},{"name":"cube","rescale":false,"locked":false,"from":[7,0,5.25],"to":[7.5,11,5.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[0.5,4,1,9.5],"texture":2},"east":{"uv":[1,4,1.5,9.5],"texture":2},"south":{"uv":[1.5,4,2,9.5],"texture":2},"west":{"uv":[2,4,2.5,9.5],"texture":2},"up":{"uv":[19.5,15,19,14.5],"texture":2},"down":{"uv":[19.5,15,19,15.5],"texture":2}},"type":"cube","uuid":"e4dea0e2-a7bc-c935-0e00-2a33a4d5cf09"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,0,5.5],"to":[7,11,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[2.5,4,3,9.5],"texture":2},"east":{"uv":[4.5,0,5,5.5],"texture":2},"south":{"uv":[5,0,5.5,5.5],"texture":2},"west":{"uv":[5.5,0,6,5.5],"texture":2},"up":{"uv":[19.5,16,19,15.5],"texture":2},"down":{"uv":[19.5,16,19,16.5],"texture":2}},"type":"cube","uuid":"b868d7c8-b28c-43cc-0e61-34ba6da772d8"},{"name":"cube","rescale":false,"locked":false,"from":[6.25,0,6],"to":[6.75,11,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[3,5.5,3.5,11],"texture":2},"east":{"uv":[3.5,5.5,4,11],"texture":2},"south":{"uv":[4,5.5,4.5,11],"texture":2},"west":{"uv":[4.5,5.5,5,11],"texture":2},"up":{"uv":[19.5,17,19,16.5],"texture":2},"down":{"uv":[19.5,17,19,17.5],"texture":2}},"type":"cube","uuid":"6cca4618-0c43-28a6-1fdc-899fb2e5c9dd"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,0,5],"to":[8.5,11,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[8.5,0,9,5.5],"texture":2},"east":{"uv":[8.5,5.5,9,11],"texture":2},"south":{"uv":[9,0,9.5,5.5],"texture":2},"west":{"uv":[9,5.5,9.5,11],"texture":2},"up":{"uv":[20,1.5,19.5,1],"texture":2},"down":{"uv":[20,1.5,19.5,2],"texture":2}},"type":"cube","uuid":"c8d61798-73e2-1034-9cff-1b281cb4abac"},{"name":"cube","rescale":false,"locked":false,"from":[9.25,0,6],"to":[9.75,11,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[7.5,0,8,5.5],"texture":2},"east":{"uv":[7.5,5.5,8,11],"texture":2},"south":{"uv":[8,0,8.5,5.5],"texture":2},"west":{"uv":[8,5.5,8.5,11],"texture":2},"up":{"uv":[20,0.5,19.5,0],"texture":2},"down":{"uv":[20,0.5,19.5,1],"texture":2}},"type":"cube","uuid":"5edfe1ac-5fe5-4073-d8a2-7f0f8d1c3823"},{"name":"cube","rescale":false,"locked":false,"from":[9,0,5.5],"to":[9.5,11,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[6.5,0,7,5.5],"texture":2},"east":{"uv":[6.5,5.5,7,11],"texture":2},"south":{"uv":[7,0,7.5,5.5],"texture":2},"west":{"uv":[7,5.5,7.5,11],"texture":2},"up":{"uv":[19.5,19,19,18.5],"texture":2},"down":{"uv":[19.5,19,19,19.5],"texture":2}},"type":"cube","uuid":"723a9f3d-508a-ce0d-d919-4d78db46743e"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,0,5.25],"to":[9,11,5.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[5,5.5,5.5,11],"texture":2},"east":{"uv":[5.5,5.5,6,11],"texture":2},"south":{"uv":[6,0,6.5,5.5],"texture":2},"west":{"uv":[6,5.5,6.5,11],"texture":2},"up":{"uv":[19.5,18,19,17.5],"texture":2},"down":{"uv":[19.5,18,19,18.5],"texture":2}},"type":"cube","uuid":"33c76f9d-5f71-62a6-1c89-6414ad81b7a0"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,0,6.5],"to":[10,11,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[11,0,11.5,5.5],"texture":2},"east":{"uv":[3,11,3.5,16.5],"texture":2},"south":{"uv":[3.5,11,4,16.5],"texture":2},"west":{"uv":[4,11,4.5,16.5],"texture":2},"up":{"uv":[20,5.5,19.5,5],"texture":2},"down":{"uv":[20,7.5,19.5,8],"texture":2}},"type":"cube","uuid":"e1914e7b-6e82-e4ef-71d0-787e7a6785f1"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,0,8.25],"to":[9,11,8.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[10,0,10.5,5.5],"texture":2},"east":{"uv":[10,5.5,10.5,11],"texture":2},"south":{"uv":[10.5,0,11,5.5],"texture":2},"west":{"uv":[10.5,5.5,11,11],"texture":2},"up":{"uv":[20,4.5,19.5,4],"texture":2},"down":{"uv":[20,4.5,19.5,5],"texture":2}},"type":"cube","uuid":"a0610043-899f-f806-e05a-9dda4ca9f307"},{"name":"cube","rescale":false,"locked":false,"from":[9,0,8],"to":[9.5,11,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[1.5,9.5,2,15],"texture":2},"east":{"uv":[2,9.5,2.5,15],"texture":2},"south":{"uv":[2.5,9.5,3,15],"texture":2},"west":{"uv":[9.5,5.5,10,11],"texture":2},"up":{"uv":[20,3.5,19.5,3],"texture":2},"down":{"uv":[20,3.5,19.5,4],"texture":2}},"type":"cube","uuid":"263b96b1-c7f5-368d-5171-0deeb8555969"},{"name":"cube","rescale":false,"locked":false,"from":[9.25,0,7.5],"to":[9.75,11,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[0,9.5,0.5,15],"texture":2},"east":{"uv":[9.5,0,10,5.5],"texture":2},"south":{"uv":[0.5,9.5,1,15],"texture":2},"west":{"uv":[1,9.5,1.5,15],"texture":2},"up":{"uv":[20,2.5,19.5,2],"texture":2},"down":{"uv":[20,2.5,19.5,3],"texture":2}},"type":"cube","uuid":"03fd5df8-8fc1-ce05-654b-15b836e5e598"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,0,8.5],"to":[8.5,11,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[10,11,10.5,16.5],"texture":2},"east":{"uv":[10.5,11,11,16.5],"texture":2},"south":{"uv":[11,11,11.5,16.5],"texture":2},"west":{"uv":[11.5,0,12,5.5],"texture":2},"up":{"uv":[13.5,20,13,19.5],"texture":2},"down":{"uv":[14,19.5,13.5,20],"texture":2}},"type":"cube","uuid":"305d3f9d-8d9a-1d2c-3da4-5f9e3da031b8"},{"name":"cube","rescale":false,"locked":false,"from":[6.25,0,7.5],"to":[6.75,11,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[8,11,8.5,16.5],"texture":2},"east":{"uv":[8.5,11,9,16.5],"texture":2},"south":{"uv":[9,11,9.5,16.5],"texture":2},"west":{"uv":[9.5,11,10,16.5],"texture":2},"up":{"uv":[20,10.5,19.5,10],"texture":2},"down":{"uv":[13,19.5,12.5,20],"texture":2}},"type":"cube","uuid":"2a92565d-2296-e854-2c59-a9c91704ed77"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,0,8],"to":[7,11,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[6,11,6.5,16.5],"texture":2},"east":{"uv":[6.5,11,7,16.5],"texture":2},"south":{"uv":[7,11,7.5,16.5],"texture":2},"west":{"uv":[7.5,11,8,16.5],"texture":2},"up":{"uv":[20,9.5,19.5,9],"texture":2},"down":{"uv":[20,9.5,19.5,10],"texture":2}},"type":"cube","uuid":"268f3e54-6221-be8d-2825-3aa6f098052e"},{"name":"cube","rescale":false,"locked":false,"from":[7,0,8.25],"to":[7.5,11,8.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[4.5,11,5,16.5],"texture":2},"east":{"uv":[5,11,5.5,16.5],"texture":2},"south":{"uv":[5.5,11,6,16.5],"texture":2},"west":{"uv":[11,5.5,11.5,11],"texture":2},"up":{"uv":[20,8.5,19.5,8],"texture":2},"down":{"uv":[20,8.5,19.5,9],"texture":2}},"type":"cube","uuid":"9313a4fd-0d0f-7f56-95c6-93273a26ef36"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,14,7.5],"to":[8.5,18,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12,3.5,12.5,5.5],"texture":2},"east":{"uv":[12,10,12.5,12],"texture":2},"south":{"uv":[12,12,12.5,14],"texture":2},"west":{"uv":[12.5,1,13,3],"texture":2},"up":{"uv":[21,15.5,20.5,15],"texture":2},"down":{"uv":[16,20.5,15.5,21],"texture":2}},"type":"cube","uuid":"d8f614ad-1ade-caa9-c82b-131fc7b2c7e5"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,14,8],"to":[9,18,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12.5,3,13,5],"texture":2},"east":{"uv":[12.5,7.5,13,9.5],"texture":2},"south":{"uv":[12.5,9.5,13,11.5],"texture":2},"west":{"uv":[11.5,12.5,12,14.5],"texture":2},"up":{"uv":[21,16,20.5,15.5],"texture":2},"down":{"uv":[16.5,20.5,16,21],"texture":2}},"type":"cube","uuid":"d70fd6e5-9109-c662-0a8d-0325bf585861"},{"name":"cube","rescale":false,"locked":false,"from":[9,14,8.5],"to":[9.5,18,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12.5,11.5,13,13.5],"texture":2},"east":{"uv":[13,1,13.5,3],"texture":2},"south":{"uv":[13,3,13.5,5],"texture":2},"west":{"uv":[13,7.5,13.5,9.5],"texture":2},"up":{"uv":[21,16.5,20.5,16],"texture":2},"down":{"uv":[17,20.5,16.5,21],"texture":2}},"type":"cube","uuid":"c5dfbe01-7329-a1ab-3a2c-11ae66ff776e"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,14,9.5],"to":[9,18,10],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13,9.5,13.5,11.5],"texture":2},"east":{"uv":[13,11.5,13.5,13.5],"texture":2},"south":{"uv":[13.5,1,14,3],"texture":2},"west":{"uv":[13.5,3,14,5],"texture":2},"up":{"uv":[21,17,20.5,16.5],"texture":2},"down":{"uv":[17.5,20.5,17,21],"texture":2}},"type":"cube","uuid":"be574ec3-44cc-b0fe-9350-1e54ccc8b531"},{"name":"cube","rescale":false,"locked":false,"from":[7,14,8],"to":[7.5,18,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13.5,7.5,14,9.5],"texture":2},"east":{"uv":[13.5,9.5,14,11.5],"texture":2},"south":{"uv":[13.5,11.5,14,13.5],"texture":2},"west":{"uv":[12.5,13.5,13,15.5],"texture":2},"up":{"uv":[21,17.5,20.5,17],"texture":2},"down":{"uv":[18,20.5,17.5,21],"texture":2}},"type":"cube","uuid":"d64dc413-586a-4e58-bfcd-e7703ce81ad3"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,14,8.5],"to":[7,18,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13,13.5,13.5,15.5],"texture":2},"east":{"uv":[13.5,13.5,14,15.5],"texture":2},"south":{"uv":[14,1,14.5,3],"texture":2},"west":{"uv":[14,3,14.5,5],"texture":2},"up":{"uv":[21,18,20.5,17.5],"texture":2},"down":{"uv":[18.5,20.5,18,21],"texture":2}},"type":"cube","uuid":"aa02415c-23e3-c0bf-fc7d-98679b22e4c2"},{"name":"cube","rescale":false,"locked":false,"from":[7,14,9.5],"to":[7.5,18,10],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,6.5,14.5,8.5],"texture":2},"east":{"uv":[14,8.5,14.5,10.5],"texture":2},"south":{"uv":[14,10.5,14.5,12.5],"texture":2},"west":{"uv":[12,14,12.5,16],"texture":2},"up":{"uv":[21,18.5,20.5,18],"texture":2},"down":{"uv":[19,20.5,18.5,21],"texture":2}},"type":"cube","uuid":"17779524-6e13-088a-0201-6905773d7e9c"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,14,10],"to":[8.5,18,10.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,12.5,14.5,14.5],"texture":2},"east":{"uv":[14.5,0,15,2],"texture":2},"south":{"uv":[14.5,2,15,4],"texture":2},"west":{"uv":[14.5,6.5,15,8.5],"texture":2},"up":{"uv":[21,19,20.5,18.5],"texture":2},"down":{"uv":[19.5,20.5,19,21],"texture":2}},"type":"cube","uuid":"2d218f20-ceda-459b-0b2d-f59f79b6c3e6"},{"name":"cube","rescale":false,"locked":false,"from":[6,12,2.5],"to":[10,13,10.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,11,21,12],"texture":3},"east":{"uv":[11,2,19,3],"texture":3},"south":{"uv":[17,12,21,13],"texture":3},"west":{"uv":[11,3,19,4],"texture":3},"up":{"uv":[4,8,0,0],"texture":3},"down":{"uv":[8,0,4,8],"texture":3}},"type":"cube","uuid":"f70ab9c0-8ed4-41de-e3ed-45be35c55954"},{"name":"cube","rescale":false,"locked":false,"from":[5,12,3.5],"to":[6,13,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[6,28,7,29],"texture":3},"east":{"uv":[5,15,11,16],"texture":3},"south":{"uv":[28,6,29,7],"texture":3},"west":{"uv":[15,5,21,6],"texture":3},"up":{"uv":[16,12,15,6],"texture":3},"down":{"uv":[16,12,15,18],"texture":3}},"type":"cube","uuid":"ae1ca423-7afc-c33b-0177-020b12c33209"},{"name":"cube","rescale":false,"locked":false,"from":[4,12,4.5],"to":[5,13,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[7,28,8,29],"texture":3},"east":{"uv":[17,13,21,14],"texture":3},"south":{"uv":[28,7,29,8],"texture":3},"west":{"uv":[17,14,21,15],"texture":3},"up":{"uv":[15,21,14,17],"texture":3},"down":{"uv":[17,17,16,21],"texture":3}},"type":"cube","uuid":"6106195e-ce97-e5f5-c1eb-65e4a78cc98b"},{"name":"cube","rescale":false,"locked":false,"from":[10,12,3.5],"to":[11,13,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[5,28,6,29],"texture":3},"east":{"uv":[14,4,20,5],"texture":3},"south":{"uv":[28,5,29,6],"texture":3},"west":{"uv":[5,14,11,15],"texture":3},"up":{"uv":[15,11,14,5],"texture":3},"down":{"uv":[15,11,14,17],"texture":3}},"type":"cube","uuid":"c6ffba98-6dc9-f970-5548-a4c992ffa264"},{"name":"cube","rescale":false,"locked":false,"from":[11,12,4.5],"to":[12,13,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[4,28,5,29],"texture":3},"east":{"uv":[16,16,20,17],"texture":3},"south":{"uv":[28,4,29,5],"texture":3},"west":{"uv":[5,17,9,18],"texture":3},"up":{"uv":[10,21,9,17],"texture":3},"down":{"uv":[11,17,10,21],"texture":3}},"type":"cube","uuid":"7797f956-9cb2-3690-0b9b-36f3f825dfa6"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,6.25],"to":[6,18,6.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14.5,8.5,15,10.5],"texture":2},"east":{"uv":[14.5,10.5,15,12.5],"texture":2},"south":{"uv":[11.5,14.5,12,16.5],"texture":2},"west":{"uv":[14.5,12.5,15,14.5],"texture":2},"up":{"uv":[21,19.5,20.5,19],"texture":2},"down":{"uv":[20,20.5,19.5,21],"texture":2}},"type":"cube","uuid":"b1e37af1-5322-b269-5f39-3fc3b767bcc3"},{"name":"cube","rescale":false,"locked":false,"from":[6,14,6.75],"to":[6.5,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,14.5,14.5,16.5],"texture":2},"east":{"uv":[14.5,14.5,15,16.5],"texture":2},"south":{"uv":[0,15,0.5,17],"texture":2},"west":{"uv":[15,0,15.5,2],"texture":2},"up":{"uv":[21,20,20.5,19.5],"texture":2},"down":{"uv":[20.5,20.5,20,21],"texture":2}},"type":"cube","uuid":"aa1bcc13-744b-e33d-cfdc-712a1debd507"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,14,7.25],"to":[7,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0.5,15,1,17],"texture":2},"east":{"uv":[1,15,1.5,17],"texture":2},"south":{"uv":[1.5,15,2,17],"texture":2},"west":{"uv":[2,15,2.5,17],"texture":2},"up":{"uv":[21,20.5,20.5,20],"texture":2},"down":{"uv":[21,20.5,20.5,21],"texture":2}},"type":"cube","uuid":"859dc7a7-3a01-ed34-ba2a-dc4e58b0123a"},{"name":"cube","rescale":false,"locked":false,"from":[6,14,8.25],"to":[6.5,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15,2,15.5,4],"texture":2},"east":{"uv":[2.5,15,3,17],"texture":2},"south":{"uv":[15,6.5,15.5,8.5],"texture":2},"west":{"uv":[15,8.5,15.5,10.5],"texture":2},"up":{"uv":[0.5,21.5,0,21],"texture":2},"down":{"uv":[21.5,0,21,0.5],"texture":2}},"type":"cube","uuid":"a0564f5d-898e-dd2e-30c0-9cedbb3313c8"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,14,6.75],"to":[5,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15,10.5,15.5,12.5],"texture":2},"east":{"uv":[15,12.5,15.5,14.5],"texture":2},"south":{"uv":[15,14.5,15.5,16.5],"texture":2},"west":{"uv":[15.5,0,16,2],"texture":2},"up":{"uv":[1,21.5,0.5,21],"texture":2},"down":{"uv":[21.5,0.5,21,1],"texture":2}},"type":"cube","uuid":"29a6b1d8-61cb-f5f2-2ce7-ccfaf0619c3e"},{"name":"cube","rescale":false,"locked":false,"from":[4,14,7.25],"to":[4.5,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15.5,2,16,4],"texture":2},"east":{"uv":[15.5,4,16,6],"texture":2},"south":{"uv":[15.5,6,16,8],"texture":2},"west":{"uv":[15.5,8,16,10],"texture":2},"up":{"uv":[1.5,21.5,1,21],"texture":2},"down":{"uv":[21.5,1,21,1.5],"texture":2}},"type":"cube","uuid":"c473daae-978d-2d0d-5101-68afda719f03"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,14,8.25],"to":[5,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15.5,10,16,12],"texture":2},"east":{"uv":[15.5,12,16,14],"texture":2},"south":{"uv":[12.5,15.5,13,17.5],"texture":2},"west":{"uv":[13,15.5,13.5,17.5],"texture":2},"up":{"uv":[2,21.5,1.5,21],"texture":2},"down":{"uv":[21.5,1.5,21,2],"texture":2}},"type":"cube","uuid":"48780337-0bef-f592-2071-fa571a641fc8"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,8.75],"to":[6,18,9.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13.5,15.5,14,17.5],"texture":2},"east":{"uv":[15.5,14,16,16],"texture":2},"south":{"uv":[16,0,16.5,2],"texture":2},"west":{"uv":[16,2,16.5,4],"texture":2},"up":{"uv":[2.5,21.5,2,21],"texture":2},"down":{"uv":[21.5,2,21,2.5],"texture":2}},"type":"cube","uuid":"571eb247-6cb0-2f30-7801-6e0950fe2322"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,3.75],"to":[6,18,4.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,4,16.5,6],"texture":2},"east":{"uv":[16,6,16.5,8],"texture":2},"south":{"uv":[16,8,16.5,10],"texture":2},"west":{"uv":[16,10,16.5,12],"texture":2},"up":{"uv":[3,21.5,2.5,21],"texture":2},"down":{"uv":[21.5,2.5,21,3],"texture":2}},"type":"cube","uuid":"db5b3a51-9ec1-5f33-1229-f06f488a8431"},{"name":"cube","rescale":false,"locked":false,"from":[6,14,4.25],"to":[6.5,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12,16,12.5,18],"texture":2},"east":{"uv":[16,12,16.5,14],"texture":2},"south":{"uv":[16,14,16.5,16],"texture":2},"west":{"uv":[15.5,16,16,18],"texture":2},"up":{"uv":[3.5,21.5,3,21],"texture":2},"down":{"uv":[21.5,3,21,3.5],"texture":2}},"type":"cube","uuid":"cda42d92-754d-eb33-d20c-5436d647944c"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,14,4.75],"to":[7,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,16,16.5,18],"texture":2},"east":{"uv":[16.5,0,17,2],"texture":2},"south":{"uv":[16.5,2,17,4],"texture":2},"west":{"uv":[3,16.5,3.5,18.5],"texture":2},"up":{"uv":[4,21.5,3.5,21],"texture":2},"down":{"uv":[21.5,3.5,21,4],"texture":2}},"type":"cube","uuid":"a348ec56-5f2e-79c9-9f1f-12dc84382ec3"},{"name":"cube","rescale":false,"locked":false,"from":[6,14,5.75],"to":[6.5,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[3.5,16.5,4,18.5],"texture":2},"east":{"uv":[4,16.5,4.5,18.5],"texture":2},"south":{"uv":[16.5,4,17,6],"texture":2},"west":{"uv":[4.5,16.5,5,18.5],"texture":2},"up":{"uv":[4.5,21.5,4,21],"texture":2},"down":{"uv":[21.5,4,21,4.5],"texture":2}},"type":"cube","uuid":"891c582c-2746-44fb-7515-ed69ccfe4f68"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,14,4.25],"to":[5,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[5,16.5,5.5,18.5],"texture":2},"east":{"uv":[5.5,16.5,6,18.5],"texture":2},"south":{"uv":[6,16.5,6.5,18.5],"texture":2},"west":{"uv":[16.5,6,17,8],"texture":2},"up":{"uv":[5,21.5,4.5,21],"texture":2},"down":{"uv":[21.5,4.5,21,5],"texture":2}},"type":"cube","uuid":"398b3156-1c63-3eb0-be90-5c98e0b4b8be"},{"name":"cube","rescale":false,"locked":false,"from":[4,14,4.75],"to":[4.5,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[6.5,16.5,7,18.5],"texture":2},"east":{"uv":[7,16.5,7.5,18.5],"texture":2},"south":{"uv":[7.5,16.5,8,18.5],"texture":2},"west":{"uv":[8,16.5,8.5,18.5],"texture":2},"up":{"uv":[5.5,21.5,5,21],"texture":2},"down":{"uv":[21.5,5,21,5.5],"texture":2}},"type":"cube","uuid":"ca322da9-7ac1-614f-e0ac-08b4abd5b3a9"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,14,5.75],"to":[5,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16.5,8,17,10],"texture":2},"east":{"uv":[8.5,16.5,9,18.5],"texture":2},"south":{"uv":[9,16.5,9.5,18.5],"texture":2},"west":{"uv":[9.5,16.5,10,18.5],"texture":2},"up":{"uv":[6,21.5,5.5,21],"texture":2},"down":{"uv":[21.5,5.5,21,6],"texture":2}},"type":"cube","uuid":"1bcf6434-155a-0acb-2c62-ef8b3fbae2dc"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,6.25],"to":[11,18,6.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[4.5,18.5,5,20.5],"texture":2},"east":{"uv":[5,18.5,5.5,20.5],"texture":2},"south":{"uv":[5.5,18.5,6,20.5],"texture":2},"west":{"uv":[6,18.5,6.5,20.5],"texture":2},"up":{"uv":[14,21.5,13.5,21],"texture":2},"down":{"uv":[21.5,13.5,21,14],"texture":2}},"type":"cube","uuid":"8cfab8d1-be30-790e-dd77-d34be7ccd30c"},{"name":"cube","rescale":false,"locked":false,"from":[11,14,6.75],"to":[11.5,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18.5,6,19,8],"texture":2},"east":{"uv":[6.5,18.5,7,20.5],"texture":2},"south":{"uv":[7,18.5,7.5,20.5],"texture":2},"west":{"uv":[7.5,18.5,8,20.5],"texture":2},"up":{"uv":[14.5,21.5,14,21],"texture":2},"down":{"uv":[21.5,14,21,14.5],"texture":2}},"type":"cube","uuid":"06448771-119f-d4e9-d633-e78191cf791c"},{"name":"cube","rescale":false,"locked":false,"from":[11.5,14,7.25],"to":[12,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[8,18.5,8.5,20.5],"texture":2},"east":{"uv":[18.5,8,19,10],"texture":2},"south":{"uv":[8.5,18.5,9,20.5],"texture":2},"west":{"uv":[9,18.5,9.5,20.5],"texture":2},"up":{"uv":[15,21.5,14.5,21],"texture":2},"down":{"uv":[21.5,14.5,21,15],"texture":2}},"type":"cube","uuid":"a14cf836-1ee9-67ec-4c48-7c0d949fdfb1"},{"name":"cube","rescale":false,"locked":false,"from":[11,14,8.25],"to":[11.5,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[9.5,18.5,10,20.5],"texture":2},"east":{"uv":[10,18.5,10.5,20.5],"texture":2},"south":{"uv":[18.5,10,19,12],"texture":2},"west":{"uv":[10.5,18.5,11,20.5],"texture":2},"up":{"uv":[15.5,21.5,15,21],"texture":2},"down":{"uv":[21.5,15,21,15.5],"texture":2}},"type":"cube","uuid":"62e2ac94-6000-e6a9-56d5-3c4404c876f0"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,14,6.75],"to":[10,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[11,18.5,11.5,20.5],"texture":2},"east":{"uv":[11.5,18.5,12,20.5],"texture":2},"south":{"uv":[18.5,12,19,14],"texture":2},"west":{"uv":[14,18.5,14.5,20.5],"texture":2},"up":{"uv":[16,21.5,15.5,21],"texture":2},"down":{"uv":[21.5,15.5,21,16],"texture":2}},"type":"cube","uuid":"3a5cab6d-31dc-51e2-48f4-4888813767c2"},{"name":"cube","rescale":false,"locked":false,"from":[9,14,7.25],"to":[9.5,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18.5,14,19,16],"texture":2},"east":{"uv":[14.5,18.5,15,20.5],"texture":2},"south":{"uv":[15,18.5,15.5,20.5],"texture":2},"west":{"uv":[18.5,16,19,18],"texture":2},"up":{"uv":[16.5,21.5,16,21],"texture":2},"down":{"uv":[21.5,16,21,16.5],"texture":2}},"type":"cube","uuid":"d7cb1699-1818-8264-8006-b604a312310a"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,14,8.25],"to":[10,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18.5,18,19,20],"texture":2},"east":{"uv":[0,19,0.5,21],"texture":2},"south":{"uv":[19,0,19.5,2],"texture":2},"west":{"uv":[0.5,19,1,21],"texture":2},"up":{"uv":[17,21.5,16.5,21],"texture":2},"down":{"uv":[21.5,16.5,21,17],"texture":2}},"type":"cube","uuid":"73a660ad-65a6-302a-6517-ceccb02dfdb2"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,8.75],"to":[11,18,9.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[1,19,1.5,21],"texture":2},"east":{"uv":[1.5,19,2,21],"texture":2},"south":{"uv":[2,19,2.5,21],"texture":2},"west":{"uv":[19,2,19.5,4],"texture":2},"up":{"uv":[17.5,21.5,17,21],"texture":2},"down":{"uv":[21.5,17,21,17.5],"texture":2}},"type":"cube","uuid":"980915cf-b217-2d80-b071-d78c11124a25"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,3.75],"to":[11,18,4.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17.5,12,18,14],"texture":2},"east":{"uv":[12.5,17.5,13,19.5],"texture":2},"south":{"uv":[13,17.5,13.5,19.5],"texture":2},"west":{"uv":[13.5,17.5,14,19.5],"texture":2},"up":{"uv":[10.5,21.5,10,21],"texture":2},"down":{"uv":[21.5,10,21,10.5],"texture":2}},"type":"cube","uuid":"d76b237e-94e8-0200-5035-612e2cbb95c5"},{"name":"cube","rescale":false,"locked":false,"from":[11,14,4.25],"to":[11.5,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17.5,14,18,16],"texture":2},"east":{"uv":[17.5,16,18,18],"texture":2},"south":{"uv":[18,0,18.5,2],"texture":2},"west":{"uv":[18,2,18.5,4],"texture":2},"up":{"uv":[11,21.5,10.5,21],"texture":2},"down":{"uv":[21.5,10.5,21,11],"texture":2}},"type":"cube","uuid":"90635316-063b-a9fc-5a9a-88f3375cf075"},{"name":"cube","rescale":false,"locked":false,"from":[11.5,14,4.75],"to":[12,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18,4,18.5,6],"texture":2},"east":{"uv":[18,6,18.5,8],"texture":2},"south":{"uv":[18,8,18.5,10],"texture":2},"west":{"uv":[18,10,18.5,12],"texture":2},"up":{"uv":[11.5,21.5,11,21],"texture":2},"down":{"uv":[21.5,11,21,11.5],"texture":2}},"type":"cube","uuid":"ea87e214-dfd8-2b0d-2330-c4e066bce96e"},{"name":"cube","rescale":false,"locked":false,"from":[11,14,5.75],"to":[11.5,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12,18,12.5,20],"texture":2},"east":{"uv":[18,12,18.5,14],"texture":2},"south":{"uv":[18,14,18.5,16],"texture":2},"west":{"uv":[15.5,18,16,20],"texture":2},"up":{"uv":[12,21.5,11.5,21],"texture":2},"down":{"uv":[21.5,11.5,21,12],"texture":2}},"type":"cube","uuid":"d262c61d-1e34-bdd5-6aa5-6cc9ed74220e"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,14,4.25],"to":[10,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,18,16.5,20],"texture":2},"east":{"uv":[18,16,18.5,18],"texture":2},"south":{"uv":[16.5,18,17,20],"texture":2},"west":{"uv":[17,18,17.5,20],"texture":2},"up":{"uv":[12.5,21.5,12,21],"texture":2},"down":{"uv":[21.5,12,21,12.5],"texture":2}},"type":"cube","uuid":"4bd5767d-b842-4c2b-b5b6-462a842142d2"},{"name":"cube","rescale":false,"locked":false,"from":[9,14,4.75],"to":[9.5,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17.5,18,18,20],"texture":2},"east":{"uv":[18,18,18.5,20],"texture":2},"south":{"uv":[18.5,0,19,2],"texture":2},"west":{"uv":[18.5,2,19,4],"texture":2},"up":{"uv":[13,21.5,12.5,21],"texture":2},"down":{"uv":[21.5,12.5,21,13],"texture":2}},"type":"cube","uuid":"9caf9bf3-0d49-d2ee-7da6-8130766a2670"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,14,5.75],"to":[10,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[3,18.5,3.5,20.5],"texture":2},"east":{"uv":[3.5,18.5,4,20.5],"texture":2},"south":{"uv":[4,18.5,4.5,20.5],"texture":2},"west":{"uv":[18.5,4,19,6],"texture":2},"up":{"uv":[13.5,21.5,13,21],"texture":2},"down":{"uv":[21.5,13,21,13.5],"texture":2}},"type":"cube","uuid":"2a5627a9-a28f-67ce-3e69-ab4fb93edb49"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,14,2.5],"to":[8.5,18,3],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[10,16.5,10.5,18.5],"texture":2},"east":{"uv":[16.5,10,17,12],"texture":2},"south":{"uv":[10.5,16.5,11,18.5],"texture":2},"west":{"uv":[11,16.5,11.5,18.5],"texture":2},"up":{"uv":[6.5,21.5,6,21],"texture":2},"down":{"uv":[21.5,6,21,6.5],"texture":2}},"type":"cube","uuid":"a269081e-1d0f-a078-740e-59b902e73ee6"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,14,3],"to":[9,18,3.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[11.5,16.5,12,18.5],"texture":2},"east":{"uv":[16.5,12,17,14],"texture":2},"south":{"uv":[14,16.5,14.5,18.5],"texture":2},"west":{"uv":[16.5,14,17,16],"texture":2},"up":{"uv":[7,21.5,6.5,21],"texture":2},"down":{"uv":[21.5,6.5,21,7],"texture":2}},"type":"cube","uuid":"cde11b35-dbda-e4a2-25e0-665eef1cb32f"},{"name":"cube","rescale":false,"locked":false,"from":[9,14,3.5],"to":[9.5,18,4.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14.5,16.5,15,18.5],"texture":2},"east":{"uv":[15,16.5,15.5,18.5],"texture":2},"south":{"uv":[16.5,16,17,18],"texture":2},"west":{"uv":[0,17,0.5,19],"texture":2},"up":{"uv":[7.5,21.5,7,21],"texture":2},"down":{"uv":[21.5,7,21,7.5],"texture":2}},"type":"cube","uuid":"431af857-12d1-734f-99a6-787be978e953"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,14,4.5],"to":[9,18,5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,0,17.5,2],"texture":2},"east":{"uv":[0.5,17,1,19],"texture":2},"south":{"uv":[1,17,1.5,19],"texture":2},"west":{"uv":[1.5,17,2,19],"texture":2},"up":{"uv":[8,21.5,7.5,21],"texture":2},"down":{"uv":[21.5,7.5,21,8],"texture":2}},"type":"cube","uuid":"c59c865a-2725-3534-ae8c-b17e27330d7d"},{"name":"cube","rescale":false,"locked":false,"from":[7,14,3],"to":[7.5,18,3.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[2,17,2.5,19],"texture":2},"east":{"uv":[17,2,17.5,4],"texture":2},"south":{"uv":[2.5,17,3,19],"texture":2},"west":{"uv":[17,4,17.5,6],"texture":2},"up":{"uv":[8.5,21.5,8,21],"texture":2},"down":{"uv":[21.5,8,21,8.5],"texture":2}},"type":"cube","uuid":"ee28745c-8838-08b1-5f82-d2a0de139e17"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,14,3.5],"to":[7,18,4.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,6,17.5,8],"texture":2},"east":{"uv":[17,8,17.5,10],"texture":2},"south":{"uv":[17,10,17.5,12],"texture":2},"west":{"uv":[17,12,17.5,14],"texture":2},"up":{"uv":[9,21.5,8.5,21],"texture":2},"down":{"uv":[21.5,8.5,21,9],"texture":2}},"type":"cube","uuid":"126bb4c4-f955-a0b3-c3be-a1cbd0659634"},{"name":"cube","rescale":false,"locked":false,"from":[7,14,4.5],"to":[7.5,18,5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,14,17.5,16],"texture":2},"east":{"uv":[17,16,17.5,18],"texture":2},"south":{"uv":[17.5,0,18,2],"texture":2},"west":{"uv":[17.5,2,18,4],"texture":2},"up":{"uv":[9.5,21.5,9,21],"texture":2},"down":{"uv":[21.5,9,21,9.5],"texture":2}},"type":"cube","uuid":"94f85714-28e1-973b-9f77-8140e1b1769a"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,14,5],"to":[8.5,18,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17.5,4,18,6],"texture":2},"east":{"uv":[17.5,6,18,8],"texture":2},"south":{"uv":[17.5,8,18,10],"texture":2},"west":{"uv":[17.5,10,18,12],"texture":2},"up":{"uv":[10,21.5,9.5,21],"texture":2},"down":{"uv":[21.5,9.5,21,10],"texture":2}},"type":"cube","uuid":"a062934d-994a-47e4-6535-088a89402613"},{"name":"cube","rescale":false,"locked":false,"from":[10,18,4.5],"to":[11,19,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[9,28,10,29],"texture":3},"east":{"uv":[19,1,23,2],"texture":3},"south":{"uv":[28,9,29,10],"texture":3},"west":{"uv":[19,2,23,3],"texture":3},"up":{"uv":[8,22,7,18],"texture":3},"down":{"uv":[9,18,8,22],"texture":3}},"type":"cube","uuid":"1a9c507f-3998-46a9-997c-e9a7d5801ac9"},{"name":"cube","rescale":false,"locked":false,"from":[6,18,3.5],"to":[10,19,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,18,21,19],"texture":3},"east":{"uv":[5,16,11,17],"texture":3},"south":{"uv":[19,0,23,1],"texture":3},"west":{"uv":[16,6,22,7],"texture":3},"up":{"uv":[7,14,3,8],"texture":3},"down":{"uv":[11,8,7,14],"texture":3}},"type":"cube","uuid":"a5e92a52-386a-4954-1622-97ec20abd2ea"},{"name":"cube","rescale":false,"locked":false,"from":[5,18,4.5],"to":[6,19,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[8,28,9,29],"texture":3},"east":{"uv":[17,15,21,16],"texture":3},"south":{"uv":[28,8,29,9],"texture":3},"west":{"uv":[17,17,21,18],"texture":3},"up":{"uv":[6,22,5,18],"texture":3},"down":{"uv":[7,18,6,22],"texture":3}},"type":"cube","uuid":"e794d1ce-a280-a9e3-44f2-36cf07c70b9e"},{"name":"cube","rescale":false,"locked":false,"from":[7,12,10.5],"to":[9,13,11],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[24,17,26,18],"texture":3},"east":{"uv":[27,23,28,24],"texture":3},"south":{"uv":[24,18,26,19],"texture":3},"west":{"uv":[24,27,25,28],"texture":3},"up":{"uv":[26,20,24,19],"texture":3},"down":{"uv":[26,20,24,21],"texture":3}},"type":"cube","uuid":"eba16b35-6474-d61a-e3db-bc26b27667e7"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,12,11],"to":[8.5,19,11.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[11,4,12,11],"texture":3},"east":{"uv":[11,11,12,18],"texture":3},"south":{"uv":[12,4,13,11],"texture":3},"west":{"uv":[12,11,13,18],"texture":3},"up":{"uv":[28,25,27,24],"texture":3},"down":{"uv":[26,27,25,28],"texture":3}},"type":"cube","uuid":"fedd16e3-49c9-9ec8-d996-643d84b96cd6"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,18,9.5],"to":[8.5,19,11],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,26,28,27],"texture":3},"east":{"uv":[24,21,26,22],"texture":3},"south":{"uv":[27,27,28,28],"texture":3},"west":{"uv":[24,22,26,23],"texture":3},"up":{"uv":[21,26,20,24],"texture":3},"down":{"uv":[24,24,23,26],"texture":3}},"type":"cube","uuid":"d38f716a-6ca2-8985-b7f2-c8e605b59184"},{"name":"cube","rescale":false,"locked":false,"from":[7,12,2],"to":[9,13,2.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[25,2,27,3],"texture":3},"east":{"uv":[3,28,4,29],"texture":3},"south":{"uv":[25,3,27,4],"texture":3},"west":{"uv":[28,3,29,4],"texture":3},"up":{"uv":[27,5,25,4],"texture":3},"down":{"uv":[27,5,25,6],"texture":3}},"type":"cube","uuid":"ab665418-dea2-4053-7ce1-b30718b92b69"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,12,1.5],"to":[8.5,19,2],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13,4,14,11],"texture":3},"east":{"uv":[13,11,14,18],"texture":3},"south":{"uv":[3,14,4,21],"texture":3},"west":{"uv":[4,14,5,21],"texture":3},"up":{"uv":[2,29,1,28],"texture":3},"down":{"uv":[29,1,28,2],"texture":3}},"type":"cube","uuid":"ec70cc32-9810-917a-95e8-75cfb44e0982"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,18,2],"to":[8.5,19,3.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,28,1,29],"texture":3},"east":{"uv":[24,23,26,24],"texture":3},"south":{"uv":[28,0,29,1],"texture":3},"west":{"uv":[24,24,26,25],"texture":3},"up":{"uv":[26,2,25,0],"texture":3},"down":{"uv":[3,25,2,27],"texture":3}},"type":"cube","uuid":"7449045b-8ea2-a1b7-b880-3bc2d0cead4d"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,13,1],"to":[8.25,16,1.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[3,21,4,24],"texture":3},"east":{"uv":[4,21,5,24],"texture":3},"south":{"uv":[21,7,22,10],"texture":3},"west":{"uv":[9,21,10,24],"texture":3},"up":{"uv":[3,29,2,28],"texture":3},"down":{"uv":[29,2,28,3],"texture":3}},"type":"cube","uuid":"8651b80f-372a-d7ae-7a5c-50b3e3a43210"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,15,11.5],"to":[8.25,18,12],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[20,19,21,22],"texture":3},"east":{"uv":[0,21,1,24],"texture":3},"south":{"uv":[1,21,2,24],"texture":3},"west":{"uv":[2,21,3,24],"texture":3},"up":{"uv":[28,26,27,25],"texture":3},"down":{"uv":[27,27,26,28],"texture":3}},"type":"cube","uuid":"456612a9-3ca3-8187-916b-6d70ea8b1eb1"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,18,4.75],"to":[6.5,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,2,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[13,25,11,24],"texture":2},"down":{"uv":[26,12,24,13],"texture":2}},"type":"cube","uuid":"8e3e2f7f-2c30-d1d6-f535-443ccc1941fc"},{"name":"cube","rescale":false,"locked":false,"from":[5,18,4.25],"to":[6,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,12,27,11],"texture":2},"down":{"uv":[13,27,12,28],"texture":2}},"type":"cube","uuid":"6c3d3467-4e7b-157a-f2d2-34cc98eb6b7e"},{"name":"cube","rescale":false,"locked":false,"from":[5,18,5.75],"to":[6,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,13,27,12],"texture":2},"down":{"uv":[14,27,13,28],"texture":2}},"type":"cube","uuid":"cc8956c4-0a6a-a562-5fa1-5b92c1479af9"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,18,7.25],"to":[6.5,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,2,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[15,25,13,24],"texture":2},"down":{"uv":[26,13,24,14],"texture":2}},"type":"cube","uuid":"410e3fbb-e168-c52a-5813-6a3fc1b8b9f6"},{"name":"cube","rescale":false,"locked":false,"from":[5,18,6.75],"to":[6,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,15,27,14],"texture":2},"down":{"uv":[16,27,15,28],"texture":2}},"type":"cube","uuid":"55172053-7eda-e631-b5af-c86fbd9288c8"},{"name":"cube","rescale":false,"locked":false,"from":[5,18,8.25],"to":[6,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,14,27,13],"texture":2},"down":{"uv":[15,27,14,28],"texture":2}},"type":"cube","uuid":"a58762cd-efd8-b38d-b5c5-2a989a6f2430"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,18,4.75],"to":[11.5,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,2,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[26,16,24,15],"texture":2},"down":{"uv":[26,16,24,17],"texture":2}},"type":"cube","uuid":"8ef6fd96-cbc5-ff42-42a5-206272756884"},{"name":"cube","rescale":false,"locked":false,"from":[10,18,4.25],"to":[11,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,19,27,18],"texture":2},"down":{"uv":[20,27,19,28],"texture":2}},"type":"cube","uuid":"4b0fea8b-997c-35d3-1f2d-e6d25729bc4a"},{"name":"cube","rescale":false,"locked":false,"from":[10,18,5.75],"to":[11,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,18,27,17],"texture":2},"down":{"uv":[19,27,18,28],"texture":2}},"type":"cube","uuid":"41106c0c-1f94-17c1-3276-abc5d69c7588"},{"name":"cube","rescale":false,"locked":false,"from":[10,18,8.25],"to":[11,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,17,27,16],"texture":2},"down":{"uv":[18,27,17,28],"texture":2}},"type":"cube","uuid":"41b352af-0723-10d0-b84d-1e3780e7024d"},{"name":"cube","rescale":false,"locked":false,"from":[10,18,6.75],"to":[11,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,16,27,15],"texture":2},"down":{"uv":[17,27,16,28],"texture":2}},"type":"cube","uuid":"c1872c73-53b3-6ee6-dbbf-1b43e0bf2d2f"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,18,7.25],"to":[11.5,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,2,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[26,15,24,14],"texture":2},"down":{"uv":[17,24,15,25],"texture":2}},"type":"cube","uuid":"7a5d8c10-7258-3ec2-e006-4850a30d323e"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,19,6],"to":[8.5,21,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[10,21,11,23],"texture":3},"east":{"uv":[17,21,18,23],"texture":3},"south":{"uv":[21,17,22,19],"texture":3},"west":{"uv":[18,21,19,23],"texture":3},"up":{"uv":[23,4,22,3],"texture":3},"down":{"uv":[4,25,3,26],"texture":3}},"type":"cube","uuid":"5d68268c-5373-0b05-fb01-cd61b0ea4190"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,19,6.5],"to":[9,21,7],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,21,20,23],"texture":3},"east":{"uv":[21,19,22,21],"texture":3},"south":{"uv":[21,21,22,23],"texture":3},"west":{"uv":[5,22,6,24],"texture":3},"up":{"uv":[4,27,3,26],"texture":3},"down":{"uv":[5,26,4,27],"texture":3}},"type":"cube","uuid":"c727a53f-2edd-2ed5-ca2f-ef0e6044a94c"},{"name":"cube","rescale":false,"locked":false,"from":[9,19,7],"to":[9.5,21,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[6,22,7,24],"texture":3},"east":{"uv":[22,6,23,8],"texture":3},"south":{"uv":[7,22,8,24],"texture":3},"west":{"uv":[8,22,9,24],"texture":3},"up":{"uv":[6,27,5,26],"texture":3},"down":{"uv":[7,26,6,27],"texture":3}},"type":"cube","uuid":"415e9c62-4f95-b6ae-ee6d-0be6271b7a0a"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,19,8],"to":[9,21,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[22,8,23,10],"texture":3},"east":{"uv":[11,22,12,24],"texture":3},"south":{"uv":[12,22,13,24],"texture":3},"west":{"uv":[13,22,14,24],"texture":3},"up":{"uv":[8,27,7,26],"texture":3},"down":{"uv":[27,7,26,8],"texture":3}},"type":"cube","uuid":"cf989dad-9f8b-2eda-503a-44b382fc3c3f"},{"name":"cube","rescale":false,"locked":false,"from":[7,19,6.5],"to":[7.5,21,7],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,22,15,24],"texture":3},"east":{"uv":[15,22,16,24],"texture":3},"south":{"uv":[16,22,17,24],"texture":3},"west":{"uv":[22,17,23,19],"texture":3},"up":{"uv":[9,27,8,26],"texture":3},"down":{"uv":[10,26,9,27],"texture":3}},"type":"cube","uuid":"19190e0c-52e2-3486-cf86-1148d839f536"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,19,7],"to":[7,21,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[22,19,23,21],"texture":3},"east":{"uv":[20,22,21,24],"texture":3},"south":{"uv":[22,21,23,23],"texture":3},"west":{"uv":[23,0,24,2],"texture":3},"up":{"uv":[11,27,10,26],"texture":3},"down":{"uv":[12,26,11,27],"texture":3}},"type":"cube","uuid":"8693c878-87f4-48b7-8a9b-cc74fd5814b3"},{"name":"cube","rescale":false,"locked":false,"from":[7,19,8],"to":[7.5,21,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[23,2,24,4],"texture":3},"east":{"uv":[23,6,24,8],"texture":3},"south":{"uv":[23,8,24,10],"texture":3},"west":{"uv":[10,23,11,25],"texture":3},"up":{"uv":[13,27,12,26],"texture":3},"down":{"uv":[27,12,26,13],"texture":3}},"type":"cube","uuid":"5d315c86-e5dc-03a1-c6f6-2dc2265db845"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,19,8.5],"to":[8.5,21,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[23,16,24,18],"texture":3},"east":{"uv":[17,23,18,25],"texture":3},"south":{"uv":[18,23,19,25],"texture":3},"west":{"uv":[23,18,24,20],"texture":3},"up":{"uv":[14,27,13,26],"texture":3},"down":{"uv":[27,13,26,14],"texture":3}},"type":"cube","uuid":"5e956acb-2658-264f-74b5-686734647b4f"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,19,9.5],"to":[8.25,20,10],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15,26,16,27],"texture":3},"east":{"uv":[26,15,27,16],"texture":3},"south":{"uv":[16,26,17,27],"texture":3},"west":{"uv":[26,16,27,17],"texture":3},"up":{"uv":[18,27,17,26],"texture":3},"down":{"uv":[27,17,26,18],"texture":3}},"type":"cube","uuid":"dc63c3f7-1b6d-36fc-7de6-ecf46e5dcec1"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,19,9],"to":[8.25,20.5,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,23,20,25],"texture":3},"east":{"uv":[23,20,24,22],"texture":3},"south":{"uv":[21,23,22,25],"texture":3},"west":{"uv":[22,23,23,25],"texture":3},"up":{"uv":[15,27,14,26],"texture":3},"down":{"uv":[27,14,26,15],"texture":3}},"type":"cube","uuid":"93932a8b-a7d4-0b61-2382-d64daf444049"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,20,5.5],"to":[8.25,22,6],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[23,22,24,24],"texture":3},"east":{"uv":[0,24,1,26],"texture":3},"south":{"uv":[24,0,25,2],"texture":3},"west":{"uv":[1,24,2,26],"texture":3},"up":{"uv":[25,27,24,26],"texture":3},"down":{"uv":[27,24,26,25],"texture":3}},"type":"cube","uuid":"e61acc4d-3983-e18a-91e3-15afb17a46fc"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,19,5.5],"to":[8.25,20,6],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18,26,19,27],"texture":3},"east":{"uv":[26,18,27,19],"texture":3},"south":{"uv":[19,26,20,27],"texture":3},"west":{"uv":[26,19,27,20],"texture":3},"up":{"uv":[21,27,20,26],"texture":3},"down":{"uv":[27,20,26,21],"texture":3}},"type":"cube","uuid":"a3bc3128-5f51-8585-53fc-3dd405510488"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,19,5],"to":[8.25,19.5,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[21,26,22,27],"texture":3},"east":{"uv":[26,21,27,22],"texture":3},"south":{"uv":[22,26,23,27],"texture":3},"west":{"uv":[26,22,27,23],"texture":3},"up":{"uv":[24,27,23,26],"texture":3},"down":{"uv":[27,23,26,24],"texture":3}},"type":"cube","uuid":"be45b3e9-f965-b177-0fbe-40070c25ebc3"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,22,3.5],"to":[8.25,22.5,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[25,26,26,27],"texture":3},"east":{"uv":[23,4,25,5],"texture":3},"south":{"uv":[26,25,27,26],"texture":3},"west":{"uv":[2,24,4,25],"texture":3},"up":{"uv":[25,4,24,2],"texture":3},"down":{"uv":[5,24,4,26],"texture":3}},"type":"cube","uuid":"9bdea789-37a8-a2d2-483a-3ec3ec275be6"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,20,3],"to":[8.25,22,3.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[5,24,6,26],"texture":3},"east":{"uv":[24,5,25,7],"texture":3},"south":{"uv":[6,24,7,26],"texture":3},"west":{"uv":[7,24,8,26],"texture":3},"up":{"uv":[27,27,26,26],"texture":3},"down":{"uv":[1,27,0,28],"texture":3}},"type":"cube","uuid":"638aee7e-2abb-d41b-5637-bf96c96dc7e8"},{"name":"cube","rescale":false,"locked":false,"from":[7.75,19.5,3.5],"to":[8.25,20,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[1,27,2,28],"texture":3},"east":{"uv":[24,7,26,8],"texture":3},"south":{"uv":[2,27,3,28],"texture":3},"west":{"uv":[8,24,10,25],"texture":3},"up":{"uv":[25,10,24,8],"texture":3},"down":{"uv":[25,10,24,12],"texture":3}},"type":"cube","uuid":"09710376-d077-9d7f-9910-9052ea3a180e"},{"name":"cube","rescale":false,"locked":false,"from":[7.900000000000001,21.5,5],"to":[8.100000000000001,22,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,2,28,3],"texture":3},"east":{"uv":[3,27,4,28],"texture":3},"south":{"uv":[27,3,28,4],"texture":3},"west":{"uv":[4,27,5,28],"texture":3},"up":{"uv":[28,5,27,4],"texture":3},"down":{"uv":[6,27,5,28],"texture":3}},"type":"cube","uuid":"8e706f92-71ef-9034-a356-3eb7a54ecbb9"},{"name":"cube","rescale":false,"locked":false,"from":[7.9,21.25,4.5],"to":[8.1,21.75,5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,5,28,6],"texture":3},"east":{"uv":[6,27,7,28],"texture":3},"south":{"uv":[27,6,28,7],"texture":3},"west":{"uv":[7,27,8,28],"texture":3},"up":{"uv":[28,8,27,7],"texture":3},"down":{"uv":[9,27,8,28],"texture":3}},"type":"cube","uuid":"ae31f797-d653-c6dd-5d12-0b1acad3bbcc"},{"name":"cube","rescale":false,"locked":false,"from":[7.900000000000001,21,4],"to":[8.100000000000001,21.5,4.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,8,28,9],"texture":3},"east":{"uv":[9,27,10,28],"texture":3},"south":{"uv":[27,9,28,10],"texture":3},"west":{"uv":[10,27,11,28],"texture":3},"up":{"uv":[28,11,27,10],"texture":3},"down":{"uv":[12,27,11,28],"texture":3}},"type":"cube","uuid":"b4c4fa39-82c2-f5ff-6257-4af422a84513"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,21,6],"to":[8.5,22,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[9,17,10,18],"texture":0},"east":{"uv":[10,17,11,18],"texture":0},"south":{"uv":[17,10,18,11],"texture":0},"west":{"uv":[11,17,12,18],"texture":0},"up":{"uv":[13,18,12,17],"texture":0},"down":{"uv":[18,12,17,13],"texture":0}},"type":"cube","uuid":"6424a059-a163-8d30-e08f-d502485e0578"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,21,6.5],"to":[9,22,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,13,18,14],"texture":0},"east":{"uv":[4,13,6,14],"texture":0},"south":{"uv":[14,17,15,18],"texture":0},"west":{"uv":[13,5,15,6],"texture":0},"up":{"uv":[7,15,6,13],"texture":0},"down":{"uv":[8,13,7,15],"texture":0}},"type":"cube","uuid":"4d6f6b70-6bd0-6a8b-5e3b-153bddcb4044"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,21,8.5],"to":[8.5,22,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15,17,16,18],"texture":0},"east":{"uv":[17,15,18,16],"texture":0},"south":{"uv":[17,16,18,17],"texture":0},"west":{"uv":[17,17,18,18],"texture":0},"up":{"uv":[1,19,0,18],"texture":0},"down":{"uv":[19,0,18,1],"texture":0}},"type":"cube","uuid":"e12eae89-aca5-3660-3e12-c0cfc7529cfe"},{"name":"cube","rescale":false,"locked":false,"from":[7,21,6.5],"to":[7.5,22,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[1,18,2,19],"texture":0},"east":{"uv":[13,7,15,8],"texture":0},"south":{"uv":[18,1,19,2],"texture":0},"west":{"uv":[13,8,15,9],"texture":0},"up":{"uv":[10,15,9,13],"texture":0},"down":{"uv":[14,9,13,11],"texture":0}},"type":"cube","uuid":"42af1794-60f5-0671-1168-5ea76a075af9"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,22,6],"to":[9,23,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[7,18,8,19],"texture":0},"east":{"uv":[13,11,15,12],"texture":0},"south":{"uv":[18,7,19,8],"texture":0},"west":{"uv":[13,12,15,13],"texture":0},"up":{"uv":[14,15,13,13],"texture":0},"down":{"uv":[1,14,0,16],"texture":0}},"type":"cube","uuid":"8ef58fc6-c903-be22-4511-20efdd3cc293"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,22,8],"to":[8.5,23,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[8,18,9,19],"texture":0},"east":{"uv":[18,8,19,9],"texture":0},"south":{"uv":[9,18,10,19],"texture":0},"west":{"uv":[18,9,19,10],"texture":0},"up":{"uv":[11,19,10,18],"texture":0},"down":{"uv":[19,10,18,11],"texture":0}},"type":"cube","uuid":"56809c45-e108-a8b0-8f0d-3e1b0c75b61f"},{"name":"cube","rescale":false,"locked":false,"from":[7,22,6],"to":[7.5,23,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[11,18,12,19],"texture":0},"east":{"uv":[14,2,16,3],"texture":0},"south":{"uv":[18,11,19,12],"texture":0},"west":{"uv":[14,3,16,4],"texture":0},"up":{"uv":[2,16,1,14],"texture":0},"down":{"uv":[5,14,4,16],"texture":0}},"type":"cube","uuid":"accb2157-32d3-5fde-e24e-f0d5b2557333"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,22,5.5],"to":[8.5,23,6],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[2,18,3,19],"texture":0},"east":{"uv":[18,2,19,3],"texture":0},"south":{"uv":[3,18,4,19],"texture":0},"west":{"uv":[18,5,19,6],"texture":0},"up":{"uv":[7,19,6,18],"texture":0},"down":{"uv":[19,6,18,7],"texture":0}},"type":"cube","uuid":"7d95444e-7c5d-5d27-f967-cc50ffd086ac"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,23,5],"to":[8.5,24,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,6,20,7],"texture":0},"east":{"uv":[7,19,8,20],"texture":0},"south":{"uv":[19,7,20,8],"texture":0},"west":{"uv":[8,19,9,20],"texture":0},"up":{"uv":[20,9,19,8],"texture":0},"down":{"uv":[10,19,9,20],"texture":0}},"type":"cube","uuid":"fb8c4e95-5f7a-6e03-fc07-dd26dff7da82"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,23,5.5],"to":[9,24,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,5,20,6],"texture":0},"east":{"uv":[15,8,17,9],"texture":0},"south":{"uv":[6,19,7,20],"texture":0},"west":{"uv":[10,15,12,16],"texture":0},"up":{"uv":[16,13,15,11],"texture":0},"down":{"uv":[13,15,12,17],"texture":0}},"type":"cube","uuid":"60bf1dce-b6b9-3ee7-a6e7-b43b9e67c8ee"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,23,7.5],"to":[8.5,24,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,2,20,3],"texture":0},"east":{"uv":[3,19,4,20],"texture":0},"south":{"uv":[19,3,20,4],"texture":0},"west":{"uv":[4,19,5,20],"texture":0},"up":{"uv":[20,5,19,4],"texture":0},"down":{"uv":[6,19,5,20],"texture":0}},"type":"cube","uuid":"1a49c0d1-add6-f635-aefe-980cb5f4d4ab"},{"name":"cube","rescale":false,"locked":false,"from":[7,23,5.5],"to":[7.5,24,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,1,20,2],"texture":0},"east":{"uv":[15,6,17,7],"texture":0},"south":{"uv":[2,19,3,20],"texture":0},"west":{"uv":[15,7,17,8],"texture":0},"up":{"uv":[8,17,7,15],"texture":0},"down":{"uv":[10,15,9,17],"texture":0}},"type":"cube","uuid":"649f6333-09c3-1fd7-2b91-a3fcbd449824"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,24,4.5],"to":[8.5,25,5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,18,18,19],"texture":0},"east":{"uv":[18,17,19,18],"texture":0},"south":{"uv":[18,18,19,19],"texture":0},"west":{"uv":[0,19,1,20],"texture":0},"up":{"uv":[20,1,19,0],"texture":0},"down":{"uv":[2,19,1,20],"texture":0}},"type":"cube","uuid":"2b00e9ea-7e14-cf30-32c6-d1456d88ec7a"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,24,5],"to":[9,25,7],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,18,17,19],"texture":0},"east":{"uv":[14,13,16,14],"texture":0},"south":{"uv":[18,16,19,17],"texture":0},"west":{"uv":[14,14,16,15],"texture":0},"up":{"uv":[16,6,15,4],"texture":0},"down":{"uv":[7,15,6,17],"texture":0}},"type":"cube","uuid":"c5bb2e34-5ac0-18e9-b112-3f1f214fa0a3"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,24,7],"to":[8.5,25,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13,18,14,19],"texture":0},"east":{"uv":[18,13,19,14],"texture":0},"south":{"uv":[14,18,15,19],"texture":0},"west":{"uv":[18,14,19,15],"texture":0},"up":{"uv":[16,19,15,18],"texture":0},"down":{"uv":[19,15,18,16],"texture":0}},"type":"cube","uuid":"2164b1b1-3dcc-ccab-bbda-b03ff1f1aa19"},{"name":"cube","rescale":false,"locked":false,"from":[7,24,5],"to":[7.5,25,7],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12,18,13,19],"texture":0},"east":{"uv":[14,9,16,10],"texture":0},"south":{"uv":[18,12,19,13],"texture":0},"west":{"uv":[14,10,16,11],"texture":0},"up":{"uv":[6,16,5,14],"texture":0},"down":{"uv":[9,14,8,16],"texture":0}},"type":"cube","uuid":"bc2c9857-e694-f0dd-32b1-21fe612aedf2"},{"name":"cube","rescale":false,"locked":false,"from":[7,25,4.5],"to":[7.5,27,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,12,20,13],"texture":0},"east":{"uv":[11,3,14,4],"texture":0},"south":{"uv":[13,19,14,20],"texture":0},"west":{"uv":[10,11,13,12],"texture":0},"up":{"uv":[9,14,8,11],"texture":0},"down":{"uv":[11,12,10,15],"texture":0}},"type":"cube","uuid":"4b24fb8f-4565-bde1-0c9a-3bab144f8908"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,25,5.5],"to":[8.5,27,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,11,20,12],"texture":0},"east":{"uv":[10,10,13,11],"texture":0},"south":{"uv":[12,19,13,20],"texture":0},"west":{"uv":[11,2,14,3],"texture":0},"up":{"uv":[1,14,0,11],"texture":0},"down":{"uv":[2,11,1,14],"texture":0}},"type":"cube","uuid":"2909e86f-a25e-175d-7f5c-3b74fb50d07e"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,25,4.5],"to":[9,27,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,10,20,11],"texture":0},"east":{"uv":[10,5,13,6],"texture":0},"south":{"uv":[11,19,12,20],"texture":0},"west":{"uv":[10,9,13,10],"texture":0},"up":{"uv":[7,13,6,10],"texture":0},"down":{"uv":[8,10,7,13],"texture":0}},"type":"cube","uuid":"5f1106bc-382f-0ea6-f390-6853e12722b8"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,25,4],"to":[8.5,27,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,9,20,10],"texture":0},"east":{"uv":[13,15,15,16],"texture":0},"south":{"uv":[10,19,11,20],"texture":0},"west":{"uv":[15,15,17,16],"texture":0},"up":{"uv":[1,18,0,16],"texture":0},"down":{"uv":[17,0,16,2],"texture":0}},"type":"cube","uuid":"18afe468-da8a-c8f7-b866-6a6ffb9f42fd"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,27,4.5],"to":[8.5,28,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,16,20,17],"texture":0},"east":{"uv":[4,16,6,17],"texture":0},"south":{"uv":[17,19,18,20],"texture":0},"west":{"uv":[16,5,18,6],"texture":0},"up":{"uv":[9,18,8,16],"texture":0},"down":{"uv":[17,9,16,11],"texture":0}},"type":"cube","uuid":"55e0c36e-4193-1385-e0a2-946852933a16"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,27,5],"to":[9,28,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,15,20,16],"texture":0},"east":{"uv":[5,1,9,2],"texture":0},"south":{"uv":[16,19,17,20],"texture":0},"west":{"uv":[6,5,10,6],"texture":0},"up":{"uv":[7,10,6,6],"texture":0},"down":{"uv":[1,7,0,11],"texture":0}},"type":"cube","uuid":"f2a0b2d2-2dc3-3553-ca90-3e7fce3d4fd5"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,27,7],"to":[8.5,28,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,14,20,15],"texture":0},"east":{"uv":[1,16,3,17],"texture":0},"south":{"uv":[15,19,16,20],"texture":0},"west":{"uv":[16,2,18,3],"texture":0},"up":{"uv":[4,18,3,16],"texture":0},"down":{"uv":[17,3,16,5],"texture":0}},"type":"cube","uuid":"2ec07916-970d-113d-c707-3df421a02abe"},{"name":"cube","rescale":false,"locked":false,"from":[7,27,5],"to":[7.5,28,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,13,20,14],"texture":0},"east":{"uv":[4,4,8,5],"texture":0},"south":{"uv":[14,19,15,20],"texture":0},"west":{"uv":[5,0,9,1],"texture":0},"up":{"uv":[5,9,4,5],"texture":0},"down":{"uv":[6,5,5,9],"texture":0}},"type":"cube","uuid":"1afd9464-d386-c92d-e1a2-0c61bdb60cf6"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,28,4.5],"to":[8.5,29,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[1,20,2,21],"texture":0},"east":{"uv":[14,16,16,17],"texture":0},"south":{"uv":[20,1,21,2],"texture":0},"west":{"uv":[16,14,18,15],"texture":0},"up":{"uv":[17,18,16,16],"texture":0},"down":{"uv":[18,0,17,2],"texture":0}},"type":"cube","uuid":"c6acfb5a-50c0-c139-92a3-4460cb815359"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,28,5],"to":[9,29,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,20,1,21],"texture":0},"east":{"uv":[8,4,12,5],"texture":0},"south":{"uv":[20,0,21,1],"texture":0},"west":{"uv":[8,6,12,7],"texture":0},"up":{"uv":[9,11,8,7],"texture":0},"down":{"uv":[3,9,2,13],"texture":0}},"type":"cube","uuid":"f59cdd49-f0e1-d883-8bec-ed994e9d5fc8"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,28,7],"to":[8.5,29,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,18,20,19],"texture":0},"east":{"uv":[10,16,12,17],"texture":0},"south":{"uv":[19,19,20,20],"texture":0},"west":{"uv":[16,11,18,12],"texture":0},"up":{"uv":[17,14,16,12],"texture":0},"down":{"uv":[14,16,13,18],"texture":0}},"type":"cube","uuid":"d85d8105-10f7-2ce4-73b4-60ec3ea48eb8"},{"name":"cube","rescale":false,"locked":false,"from":[7,28,5],"to":[7.5,29,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,17,20,18],"texture":0},"east":{"uv":[7,2,11,3],"texture":0},"south":{"uv":[18,19,19,20],"texture":0},"west":{"uv":[7,3,11,4],"texture":0},"up":{"uv":[2,11,1,7],"texture":0},"down":{"uv":[8,6,7,10],"texture":0}},"type":"cube","uuid":"da83b2e7-97c3-5e76-35e8-08612a812fda"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,29,4.5],"to":[8.5,30,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[5,20,6,21],"texture":0},"east":{"uv":[17,4,19,5],"texture":0},"south":{"uv":[20,5,21,6],"texture":0},"west":{"uv":[6,17,8,18],"texture":0},"up":{"uv":[18,8,17,6],"texture":0},"down":{"uv":[18,8,17,10],"texture":0}},"type":"cube","uuid":"cdd15042-9cf0-92c1-f24c-71527c20a6ee"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,29,5],"to":[9,30,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[4,20,5,21],"texture":0},"east":{"uv":[9,7,13,8],"texture":0},"south":{"uv":[20,4,21,5],"texture":0},"west":{"uv":[9,8,13,9],"texture":0},"up":{"uv":[6,13,5,9],"texture":0},"down":{"uv":[10,9,9,13],"texture":0}},"type":"cube","uuid":"47830dc1-6389-2780-fb61-ea7bb61bf9b4"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,29,7],"to":[8.5,30,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[3,20,4,21],"texture":0},"east":{"uv":[1,17,3,18],"texture":0},"south":{"uv":[20,3,21,4],"texture":0},"west":{"uv":[17,3,19,4],"texture":0},"up":{"uv":[5,19,4,17],"texture":0},"down":{"uv":[6,17,5,19],"texture":0}},"type":"cube","uuid":"6ea9654e-a865-99b5-bf67-266b8a898f3e"},{"name":"cube","rescale":false,"locked":false,"from":[7,29,5],"to":[7.5,30,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[2,20,3,21],"texture":0},"east":{"uv":[9,0,13,1],"texture":0},"south":{"uv":[20,2,21,3],"texture":0},"west":{"uv":[9,1,13,2],"texture":0},"up":{"uv":[4,13,3,9],"texture":0},"down":{"uv":[5,9,4,13],"texture":0}},"type":"cube","uuid":"1b5ce2db-b063-0929-9694-85602e4befdb"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,30.5,4.5],"to":[9,32,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,4,16,6],"texture":1},"east":{"uv":[4,4,14,6],"texture":1},"south":{"uv":[14,6,16,8],"texture":1},"west":{"uv":[4,6,14,8],"texture":1},"up":{"uv":[6,18,4,8],"texture":1},"down":{"uv":[8,8,6,18],"texture":1}},"type":"cube","uuid":"eff65476-38fd-97cc-1678-7f0eab58c796"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,30.5,4],"to":[8.5,32,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,16,2,18],"texture":1},"east":{"uv":[0,0,12,2],"texture":1},"south":{"uv":[2,16,4,18],"texture":1},"west":{"uv":[0,2,12,4],"texture":1},"up":{"uv":[2,16,0,4],"texture":1},"down":{"uv":[4,4,2,16],"texture":1}},"type":"cube","uuid":"76737977-c76f-a2f8-0238-c470c68716a1"},{"name":"cube","rescale":false,"locked":false,"from":[7,30.5,4.5],"to":[7.5,32,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,4,18,6],"texture":1},"east":{"uv":[8,8,18,10],"texture":1},"south":{"uv":[16,6,18,8],"texture":1},"west":{"uv":[8,10,18,12],"texture":1},"up":{"uv":[10,22,8,12],"texture":1},"down":{"uv":[12,12,10,22],"texture":1}},"type":"cube","uuid":"a8fcc1f1-22ef-f521-13e4-e1a0f53a8cf4"},{"name":"cube","rescale":false,"locked":false,"from":[7,2.5,4.75],"to":[7.5,3.5,5.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[26,28,27,29],"texture":3},"east":{"uv":[28,26,29,27],"texture":3},"south":{"uv":[27,28,28,29],"texture":3},"west":{"uv":[28,27,29,28],"texture":3},"up":{"uv":[29,29,28,28],"texture":3},"down":{"uv":[1,29,0,30],"texture":3}},"type":"cube","uuid":"b112a22b-67bd-fd74-576f-1c9b70b0f6b3"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,2.5,5],"to":[7,3.5,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,0,30,1],"texture":3},"east":{"uv":[1,29,2,30],"texture":3},"south":{"uv":[29,1,30,2],"texture":3},"west":{"uv":[2,29,3,30],"texture":3},"up":{"uv":[30,3,29,2],"texture":3},"down":{"uv":[4,29,3,30],"texture":3}},"type":"cube","uuid":"1ba85fcc-9621-abb5-0d4b-15c285342cc0"},{"name":"cube","rescale":false,"locked":false,"from":[6,2.5,5.5],"to":[6.5,3.5,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,3,30,4],"texture":3},"east":{"uv":[4,29,5,30],"texture":3},"south":{"uv":[29,4,30,5],"texture":3},"west":{"uv":[5,29,6,30],"texture":3},"up":{"uv":[30,6,29,5],"texture":3},"down":{"uv":[7,29,6,30],"texture":3}},"type":"cube","uuid":"4cebb813-02a0-2408-5170-1a3a8f2bade5"},{"name":"cube","rescale":false,"locked":false,"from":[5.75,2.5,6],"to":[6.25,3.5,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,6,30,7],"texture":3},"east":{"uv":[7,29,8,30],"texture":3},"south":{"uv":[29,7,30,8],"texture":3},"west":{"uv":[8,29,9,30],"texture":3},"up":{"uv":[30,9,29,8],"texture":3},"down":{"uv":[10,29,9,30],"texture":3}},"type":"cube","uuid":"9ad0a987-a1b3-c747-8011-73f684882845"},{"name":"cube","rescale":false,"locked":false,"from":[5.5,2.5,6.5],"to":[6,3.5,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,9,30,10],"texture":3},"east":{"uv":[10,29,11,30],"texture":3},"south":{"uv":[29,10,30,11],"texture":3},"west":{"uv":[11,29,12,30],"texture":3},"up":{"uv":[30,12,29,11],"texture":3},"down":{"uv":[13,29,12,30],"texture":3}},"type":"cube","uuid":"c0d9bb1f-86cd-4264-5914-4e248b02d57b"},{"name":"cube","rescale":false,"locked":false,"from":[5.75,2.5,7.5],"to":[6.25,3.5,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,24,30,25],"texture":3},"east":{"uv":[25,29,26,30],"texture":3},"south":{"uv":[29,25,30,26],"texture":3},"west":{"uv":[26,29,27,30],"texture":3},"up":{"uv":[30,27,29,26],"texture":3},"down":{"uv":[28,29,27,30],"texture":3}},"type":"cube","uuid":"46fda13b-6ce3-1f64-4aa0-8f59db38fa16"},{"name":"cube","rescale":false,"locked":false,"from":[6,2.5,8],"to":[6.5,3.5,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,21,30,22],"texture":3},"east":{"uv":[22,29,23,30],"texture":3},"south":{"uv":[29,22,30,23],"texture":3},"west":{"uv":[23,29,24,30],"texture":3},"up":{"uv":[30,24,29,23],"texture":3},"down":{"uv":[25,29,24,30],"texture":3}},"type":"cube","uuid":"4ddf5aeb-2b76-26b4-f310-1f3c5601714f"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,2.5,8.5],"to":[7,3.5,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,18,30,19],"texture":3},"east":{"uv":[19,29,20,30],"texture":3},"south":{"uv":[29,19,30,20],"texture":3},"west":{"uv":[20,29,21,30],"texture":3},"up":{"uv":[30,21,29,20],"texture":3},"down":{"uv":[22,29,21,30],"texture":3}},"type":"cube","uuid":"dc8e0212-efad-fd39-5e5f-e41ad8c8660b"},{"name":"cube","rescale":false,"locked":false,"from":[7,2.5,8.75],"to":[7.5,3.5,9.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,15,30,16],"texture":3},"east":{"uv":[16,29,17,30],"texture":3},"south":{"uv":[29,16,30,17],"texture":3},"west":{"uv":[17,29,18,30],"texture":3},"up":{"uv":[30,18,29,17],"texture":3},"down":{"uv":[19,29,18,30],"texture":3}},"type":"cube","uuid":"398fedba-b65c-ec22-ca51-acc2aeb80f50"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,2.5,9],"to":[8.5,3.5,10],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,12,30,13],"texture":3},"east":{"uv":[13,29,14,30],"texture":3},"south":{"uv":[29,13,30,14],"texture":3},"west":{"uv":[14,29,15,30],"texture":3},"up":{"uv":[30,15,29,14],"texture":3},"down":{"uv":[16,29,15,30],"texture":3}},"type":"cube","uuid":"3a4f573e-2c13-874c-86a3-c0ae32e7e72d"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,2.5,8.75],"to":[9,3.5,9.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[10,30,11,31],"texture":3},"east":{"uv":[30,10,31,11],"texture":3},"south":{"uv":[11,30,12,31],"texture":3},"west":{"uv":[30,11,31,12],"texture":3},"up":{"uv":[13,31,12,30],"texture":3},"down":{"uv":[31,12,30,13],"texture":3}},"type":"cube","uuid":"f60d56c6-12de-1bfb-e629-de5c4d70e063"},{"name":"cube","rescale":false,"locked":false,"from":[9,2.5,8.5],"to":[9.5,3.5,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[7,30,8,31],"texture":3},"east":{"uv":[30,7,31,8],"texture":3},"south":{"uv":[8,30,9,31],"texture":3},"west":{"uv":[30,8,31,9],"texture":3},"up":{"uv":[10,31,9,30],"texture":3},"down":{"uv":[31,9,30,10],"texture":3}},"type":"cube","uuid":"4d5f3d9c-e21c-bc09-89be-10296f0e9bca"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,2.5,8],"to":[10,3.5,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[4,30,5,31],"texture":3},"east":{"uv":[30,4,31,5],"texture":3},"south":{"uv":[5,30,6,31],"texture":3},"west":{"uv":[30,5,31,6],"texture":3},"up":{"uv":[7,31,6,30],"texture":3},"down":{"uv":[31,6,30,7],"texture":3}},"type":"cube","uuid":"469f1a22-2158-7cef-03e1-856a969ed655"},{"name":"cube","rescale":false,"locked":false,"from":[9.75,2.5,7.5],"to":[10.25,3.5,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[1,30,2,31],"texture":3},"east":{"uv":[30,1,31,2],"texture":3},"south":{"uv":[2,30,3,31],"texture":3},"west":{"uv":[30,2,31,3],"texture":3},"up":{"uv":[4,31,3,30],"texture":3},"down":{"uv":[31,3,30,4],"texture":3}},"type":"cube","uuid":"f1e26158-beca-80b6-65fd-1ab24f2fdc67"},{"name":"cube","rescale":false,"locked":false,"from":[10,2.5,6.5],"to":[10.5,3.5,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,27,30,28],"texture":3},"east":{"uv":[28,29,29,30],"texture":3},"south":{"uv":[29,28,30,29],"texture":3},"west":{"uv":[29,29,30,30],"texture":3},"up":{"uv":[1,31,0,30],"texture":3},"down":{"uv":[31,0,30,1],"texture":3}},"type":"cube","uuid":"46e8f018-a4e2-2fd7-14aa-dbae5c512f0e"},{"name":"cube","rescale":false,"locked":false,"from":[9.75,2.5,6],"to":[10.25,3.5,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[22,30,23,31],"texture":3},"east":{"uv":[30,22,31,23],"texture":3},"south":{"uv":[23,30,24,31],"texture":3},"west":{"uv":[30,23,31,24],"texture":3},"up":{"uv":[25,31,24,30],"texture":3},"down":{"uv":[31,24,30,25],"texture":3}},"type":"cube","uuid":"1d238ecf-7ec6-ad42-d017-ee04512de1ec"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,2.5,5.5],"to":[10,3.5,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[19,30,20,31],"texture":3},"east":{"uv":[30,19,31,20],"texture":3},"south":{"uv":[20,30,21,31],"texture":3},"west":{"uv":[30,20,31,21],"texture":3},"up":{"uv":[22,31,21,30],"texture":3},"down":{"uv":[31,21,30,22],"texture":3}},"type":"cube","uuid":"0b31e7c9-1210-7601-14de-504193d38537"},{"name":"cube","rescale":false,"locked":false,"from":[9,2.5,5],"to":[9.5,3.5,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[16,30,17,31],"texture":3},"east":{"uv":[30,16,31,17],"texture":3},"south":{"uv":[17,30,18,31],"texture":3},"west":{"uv":[30,17,31,18],"texture":3},"up":{"uv":[19,31,18,30],"texture":3},"down":{"uv":[31,18,30,19],"texture":3}},"type":"cube","uuid":"6a3502ad-094f-6aaa-7998-90ca9acadfe9"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,2.5,4.75],"to":[9,3.5,5.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[13,30,14,31],"texture":3},"east":{"uv":[30,13,31,14],"texture":3},"south":{"uv":[14,30,15,31],"texture":3},"west":{"uv":[30,14,31,15],"texture":3},"up":{"uv":[16,31,15,30],"texture":3},"down":{"uv":[31,15,30,16],"texture":3}},"type":"cube","uuid":"e8ab0327-6e26-0958-4ee8-3d5cb5f69a2a"},{"name":"cube","rescale":false,"locked":false,"from":[7,2.9,9.75],"to":[7.5,3.1,11.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[25,30,26,31],"texture":3},"east":{"uv":[30,25,31,26],"texture":3},"south":{"uv":[26,30,27,31],"texture":3},"west":{"uv":[30,26,31,27],"texture":3},"up":{"uv":[28,31,27,30],"texture":3},"down":{"uv":[31,27,30,28],"texture":3}},"type":"cube","uuid":"a76c8bb7-397e-cfa8-0a87-5bb6329e9138"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,2.9,9.75],"to":[9,3.1,11.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[28,30,29,31],"texture":3},"east":{"uv":[30,28,31,29],"texture":3},"south":{"uv":[29,30,30,31],"texture":3},"west":{"uv":[30,29,31,30],"texture":3},"up":{"uv":[31,31,30,30],"texture":3},"down":{"uv":[1,31,0,32],"texture":3}},"type":"cube","uuid":"89688973-2638-217c-b6ac-0754d36f00f4"},{"name":"cube","rescale":false,"locked":false,"from":[6.75,2.85,11.25],"to":[9.25,3.15,11.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[21,5,24,6],"texture":3},"east":{"uv":[31,0,32,1],"texture":3},"south":{"uv":[21,10,24,11],"texture":3},"west":{"uv":[1,31,2,32],"texture":3},"up":{"uv":[24,12,21,11],"texture":3},"down":{"uv":[24,12,21,13],"texture":3}},"type":"cube","uuid":"9459550e-0025-920d-9efb-72ddd07dfe2f"},{"name":"cube","rescale":false,"locked":false,"from":[7,2.9,11.75],"to":[7.5,3.15,13.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[31,5,32,6],"texture":3},"east":{"uv":[6,31,7,32],"texture":3},"south":{"uv":[31,6,32,7],"texture":3},"west":{"uv":[7,31,8,32],"texture":3},"up":{"uv":[32,8,31,7],"texture":3},"down":{"uv":[9,31,8,32],"texture":3}},"type":"cube","uuid":"6bb63954-2186-d68a-52a4-cfe9ae8d3638"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,2.9,11.75],"to":[9,3.15,13.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[31,2,32,3],"texture":3},"east":{"uv":[3,31,4,32],"texture":3},"south":{"uv":[31,3,32,4],"texture":3},"west":{"uv":[4,31,5,32],"texture":3},"up":{"uv":[32,5,31,4],"texture":3},"down":{"uv":[6,31,5,32],"texture":3}},"type":"cube","uuid":"b211ff1b-e91f-194e-52b4-ec2a9e5d7f0b"},{"name":"cube","rescale":false,"locked":false,"from":[6.75,2.8,13.25],"to":[9.25,3.1999999999999997,13.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[21,13,24,14],"texture":3},"east":{"uv":[31,1,32,2],"texture":3},"south":{"uv":[14,21,17,22],"texture":3},"west":{"uv":[2,31,3,32],"texture":3},"up":{"uv":[24,15,21,14],"texture":3},"down":{"uv":[24,15,21,16],"texture":3}},"type":"cube","uuid":"1eff1d87-19c4-f670-34f7-e59751413f39"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,14,4.75],"to":[6.5,14,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[27,7,25,6],"texture":3},"down":{"uv":[10,25,8,26],"texture":3}},"type":"cube","uuid":"d89a4343-f9dd-c81e-20f4-119992e24678"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,4.25],"to":[6,14,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[11,29,10,28],"texture":3},"down":{"uv":[29,10,28,11],"texture":3}},"type":"cube","uuid":"7eb9caba-bd0a-7f14-74e7-78e087087924"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,5.75],"to":[6,14,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[12,29,11,28],"texture":3},"down":{"uv":[29,11,28,12],"texture":3}},"type":"cube","uuid":"7f264e7a-2434-c8f2-e410-4fe1f7470821"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,8.25],"to":[6,14,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[13,29,12,28],"texture":3},"down":{"uv":[29,12,28,13],"texture":3}},"type":"cube","uuid":"49ac18f3-f5e0-333d-2a51-02a20b2a9bb3"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,6.75],"to":[6,14,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[14,29,13,28],"texture":3},"down":{"uv":[29,13,28,14],"texture":3}},"type":"cube","uuid":"c6f0b2f3-78b8-0ff8-a467-ee6032737f18"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,14,7.25],"to":[6.5,14,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[27,9,25,8],"texture":3},"down":{"uv":[27,9,25,10],"texture":3}},"type":"cube","uuid":"e40f243e-b8d3-7a87-36a1-1cb1cbec6e74"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,14,7.25],"to":[11.5,14,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[12,26,10,25],"texture":3},"down":{"uv":[27,10,25,11],"texture":3}},"type":"cube","uuid":"c5115ca2-f67e-0ed5-d966-f1ca887d28bc"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,6.75],"to":[11,14,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[15,29,14,28],"texture":3},"down":{"uv":[29,14,28,15],"texture":3}},"type":"cube","uuid":"81279b7f-cbd4-cd4c-dd71-9ec2453ea785"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,8.25],"to":[11,14,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[16,29,15,28],"texture":3},"down":{"uv":[29,15,28,16],"texture":3}},"type":"cube","uuid":"01ad688f-5df9-be54-c306-ad21805c48a2"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,5.75],"to":[11,14,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[17,29,16,28],"texture":3},"down":{"uv":[29,16,28,17],"texture":3}},"type":"cube","uuid":"ac0e565f-1959-a09f-7e4e-2f4d776a4b24"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,4.25],"to":[11,14,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[18,29,17,28],"texture":3},"down":{"uv":[29,17,28,18],"texture":3}},"type":"cube","uuid":"d4269ced-c53d-651c-be11-fe8adce7481d"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,14,4.75],"to":[11.5,14,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[27,12,25,11],"texture":3},"down":{"uv":[14,25,12,26],"texture":3}},"type":"cube","uuid":"4bcd491f-b92d-3e11-5dcc-59d6e9b91b01"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,30,4],"to":[8.5,31.5,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,12,18,14],"texture":1},"east":{"uv":[12,0,18,2],"texture":1},"south":{"uv":[16,14,18,16],"texture":1},"west":{"uv":[12,2,18,4],"texture":1},"up":{"uv":[14,18,12,12],"texture":1},"down":{"uv":[16,12,14,18],"texture":1}},"type":"cube","uuid":"22c124a8-6709-297e-8322-0e2364dbc330"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,30,4.5],"to":[9,30.5,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[8,20,9,21],"texture":0},"east":{"uv":[2,2,7,3],"texture":0},"south":{"uv":[20,8,21,9],"texture":0},"west":{"uv":[2,3,7,4],"texture":0},"up":{"uv":[3,9,2,4],"texture":0},"down":{"uv":[4,4,3,9],"texture":0}},"type":"cube","uuid":"96d4d03e-2c63-5c11-d9ca-9aa70d663e86"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,30,6.5],"to":[8.5,30.5,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[7,20,8,21],"texture":0},"east":{"uv":[12,4,15,5],"texture":0},"south":{"uv":[20,7,21,8],"texture":0},"west":{"uv":[12,6,15,7],"texture":0},"up":{"uv":[12,15,11,12],"texture":0},"down":{"uv":[13,12,12,15],"texture":0}},"type":"cube","uuid":"8cac6dba-2c7d-bb9f-6573-85260bd24efc"},{"name":"cube","rescale":false,"locked":false,"from":[7,30,4.5],"to":[7.5,30.5,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[6,20,7,21],"texture":0},"east":{"uv":[0,0,5,1],"texture":0},"south":{"uv":[20,6,21,7],"texture":0},"west":{"uv":[0,1,5,2],"texture":0},"up":{"uv":[1,7,0,2],"texture":0},"down":{"uv":[2,2,1,7],"texture":0}},"type":"cube","uuid":"eb454a04-09a7-d8e9-6ff4-4d6e79e9e9c6"},{"name":"cube","rescale":false,"locked":false,"from":[4.25,13,5],"to":[5.25,14,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,19,28,20],"texture":2},"east":{"uv":[11,18,14,19],"texture":2},"south":{"uv":[20,27,21,28],"texture":2},"west":{"uv":[19,3,22,4],"texture":2},"up":{"uv":[16,21,15,18],"texture":2},"down":{"uv":[12,19,11,22],"texture":2}},"type":"cube","uuid":"8f7e7434-9e21-fca2-0f6c-e5d0481e8b38"},{"name":"cube","rescale":false,"locked":false,"from":[5.25,13,4],"to":[6.5,14,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,20,28,21],"texture":2},"east":{"uv":[16,7,21,8],"texture":2},"south":{"uv":[21,27,22,28],"texture":2},"west":{"uv":[16,8,21,9],"texture":2},"up":{"uv":[1,21,0,16],"texture":2},"down":{"uv":[2,16,1,21],"texture":2}},"type":"cube","uuid":"5bbe6ea6-00c8-d820-8169-3f5187c31144"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,13,2.75],"to":[9.5,14,10.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,19,20,20],"texture":2},"east":{"uv":[11,0,19,1],"texture":2},"south":{"uv":[20,4,23,5],"texture":2},"west":{"uv":[11,1,19,2],"texture":2},"up":{"uv":[3,16,0,8],"texture":2},"down":{"uv":[11,0,8,8],"texture":2}},"type":"cube","uuid":"4dff0fb7-964b-38a9-21f4-33a432e03f63"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,13,4],"to":[10.75,14,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,21,28,22],"texture":2},"east":{"uv":[16,9,21,10],"texture":2},"south":{"uv":[22,27,23,28],"texture":2},"west":{"uv":[16,10,21,11],"texture":2},"up":{"uv":[3,21,2,16],"texture":2},"down":{"uv":[17,11,16,16],"texture":2}},"type":"cube","uuid":"534a0293-ac8b-7cae-b247-68bd0250dc7c"},{"name":"cube","rescale":false,"locked":false,"from":[10.75,13,5],"to":[11.75,14,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,22,28,23],"texture":2},"east":{"uv":[20,16,23,17],"texture":2},"south":{"uv":[23,27,24,28],"texture":2},"west":{"uv":[17,20,20,21],"texture":2},"up":{"uv":[13,22,12,19],"texture":2},"down":{"uv":[14,19,13,22],"texture":2}},"type":"cube","uuid":"2acd481b-cd8a-f385-84ec-08e1a436da00"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,14,4.75],"to":[11.5,14,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[28,1,26,0],"texture":3},"down":{"uv":[28,1,26,2],"texture":3}},"type":"cube","uuid":"2759333f-661a-61e7-e906-1dce8e29d5b0"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,4.25],"to":[11,14,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[26,29,25,28],"texture":3},"down":{"uv":[29,25,28,26],"texture":3}},"type":"cube","uuid":"82958236-c2c9-a329-1218-4a4f05879f9b"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,5.75],"to":[11,14,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[25,29,24,28],"texture":3},"down":{"uv":[29,24,28,25],"texture":3}},"type":"cube","uuid":"1a9abfee-dc1b-e94a-9d64-36ca247144e0"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,8.25],"to":[11,14,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[24,29,23,28],"texture":3},"down":{"uv":[29,23,28,24],"texture":3}},"type":"cube","uuid":"f88ac62a-9ce4-34e4-7ca2-c68f219b85cb"},{"name":"cube","rescale":false,"locked":false,"from":[10,14,6.75],"to":[11,14,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[23,29,22,28],"texture":3},"down":{"uv":[29,22,28,23],"texture":3}},"type":"cube","uuid":"c1bc4926-0e84-14a1-d77e-fcdbdd7a7aa4"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,14,7.25],"to":[11.5,14,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[26,26,24,25],"texture":3},"down":{"uv":[2,26,0,27],"texture":3}},"type":"cube","uuid":"078bf81b-52bf-14f4-dd4a-53d029b0dc63"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,14,7.25],"to":[6.5,14,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[20,26,18,25],"texture":3},"down":{"uv":[23,25,21,26],"texture":3}},"type":"cube","uuid":"6a834756-a47c-ecb3-e8d3-2a9420899df1"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,6.75],"to":[6,14,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[22,29,21,28],"texture":3},"down":{"uv":[29,21,28,22],"texture":3}},"type":"cube","uuid":"ec83b6c1-d6bc-b7a9-cf5c-a0273479bb63"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,8.25],"to":[6,14,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[21,29,20,28],"texture":3},"down":{"uv":[29,20,28,21],"texture":3}},"type":"cube","uuid":"549fe4f3-6839-9932-b462-d61c2b2c0bc2"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,5.75],"to":[6,14,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[20,29,19,28],"texture":3},"down":{"uv":[29,19,28,20],"texture":3}},"type":"cube","uuid":"5b45c39f-73b8-db01-ceff-1d7ff191eafc"},{"name":"cube","rescale":false,"locked":false,"from":[5,14,4.25],"to":[6,14,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[19,29,18,28],"texture":3},"down":{"uv":[29,18,28,19],"texture":3}},"type":"cube","uuid":"3f82d037-4d2f-6460-8b88-499246586db3"},{"name":"cube","rescale":false,"locked":false,"from":[4.5,14,4.75],"to":[6.5,14,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[16,26,14,25],"texture":3},"down":{"uv":[18,25,16,26],"texture":3}},"type":"cube","uuid":"137e76f3-ea50-71d0-762d-b5e6f3a1b40a"},{"name":"cube","rescale":false,"locked":false,"from":[9.75,11,6],"to":[10.25,12,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[19.5,13.5,20,14],"texture":2},"east":{"uv":[19.5,14,20,14.5],"texture":2},"south":{"uv":[19.5,14.5,20,15],"texture":2},"west":{"uv":[19.5,15,20,15.5],"texture":2},"up":{"uv":[20,16,19.5,15.5],"texture":2},"down":{"uv":[20,16,19.5,16.5],"texture":2}},"type":"cube","uuid":"50b32161-5a4c-0e99-bd79-21e3522c15c7"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,11,5.5],"to":[10,12,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[19.5,16.5,20,17],"texture":2},"east":{"uv":[19.5,17,20,17.5],"texture":2},"south":{"uv":[19.5,17.5,20,18],"texture":2},"west":{"uv":[19.5,18,20,18.5],"texture":2},"up":{"uv":[20,19,19.5,18.5],"texture":2},"down":{"uv":[19.5,19.5,19,20],"texture":2}},"type":"cube","uuid":"d1a5a83b-765b-1942-5a28-a072468bd16e"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,11,8.75],"to":[9,12,9.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[19.5,19,20,19.5],"texture":2},"east":{"uv":[19.5,19.5,20,20],"texture":2},"south":{"uv":[20,0,20.5,0.5],"texture":2},"west":{"uv":[20,0.5,20.5,1],"texture":2},"up":{"uv":[20.5,1.5,20,1],"texture":2},"down":{"uv":[20.5,1.5,20,2],"texture":2}},"type":"cube","uuid":"2c3de6c6-0d11-29de-cbf9-6578f69597e3"},{"name":"cube","rescale":false,"locked":false,"from":[8.5,11,4.75],"to":[9,12,5.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,2,20.5,2.5],"texture":2},"east":{"uv":[20,2.5,20.5,3],"texture":2},"south":{"uv":[20,3,20.5,3.5],"texture":2},"west":{"uv":[20,3.5,20.5,4],"texture":2},"up":{"uv":[20.5,4.5,20,4],"texture":2},"down":{"uv":[20.5,4.5,20,5],"texture":2}},"type":"cube","uuid":"53875594-cd99-d0bd-2cb0-080f2847df1c"},{"name":"cube","rescale":false,"locked":false,"from":[9,11,5],"to":[9.5,12,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,5,20.5,5.5],"texture":2},"east":{"uv":[20,7.5,20.5,8],"texture":2},"south":{"uv":[20,8,20.5,8.5],"texture":2},"west":{"uv":[20,8.5,20.5,9],"texture":2},"up":{"uv":[20.5,9.5,20,9],"texture":2},"down":{"uv":[20.5,9.5,20,10],"texture":2}},"type":"cube","uuid":"554d6a10-01a8-3748-fd3e-5430bb36b5f0"},{"name":"cube","rescale":false,"locked":false,"from":[9,11,8.5],"to":[9.5,12,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,10,20.5,10.5],"texture":2},"east":{"uv":[20,10.5,20.5,11],"texture":2},"south":{"uv":[20,11,20.5,11.5],"texture":2},"west":{"uv":[20,11.5,20.5,12],"texture":2},"up":{"uv":[12.5,20.5,12,20],"texture":2},"down":{"uv":[20.5,12,20,12.5],"texture":2}},"type":"cube","uuid":"ed76f4bd-afa5-4e68-75a4-0d9a3b92ec45"},{"name":"cube","rescale":false,"locked":false,"from":[9.5,11,8],"to":[10,12,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[12.5,20,13,20.5],"texture":2},"east":{"uv":[20,12.5,20.5,13],"texture":2},"south":{"uv":[13,20,13.5,20.5],"texture":2},"west":{"uv":[20,13,20.5,13.5],"texture":2},"up":{"uv":[14,20.5,13.5,20],"texture":2},"down":{"uv":[20.5,13.5,20,14],"texture":2}},"type":"cube","uuid":"f8b9c62a-1ecf-cf22-4066-77f8f2bfc09f"},{"name":"cube","rescale":false,"locked":false,"from":[9.75,11,7.5],"to":[10.25,12,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,14,20.5,14.5],"texture":2},"east":{"uv":[20,14.5,20.5,15],"texture":2},"south":{"uv":[20,15,20.5,15.5],"texture":2},"west":{"uv":[15.5,20,16,20.5],"texture":2},"up":{"uv":[20.5,16,20,15.5],"texture":2},"down":{"uv":[16.5,20,16,20.5],"texture":2}},"type":"cube","uuid":"aaa53df2-e9da-085c-b95c-d050ed9c407e"},{"name":"cube","rescale":false,"locked":false,"from":[10,11,6.5],"to":[10.5,12,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,16,20.5,16.5],"texture":2},"east":{"uv":[16.5,20,17,20.5],"texture":2},"south":{"uv":[20,16.5,20.5,17],"texture":2},"west":{"uv":[17,20,17.5,20.5],"texture":2},"up":{"uv":[20.5,17.5,20,17],"texture":2},"down":{"uv":[18,20,17.5,20.5],"texture":2}},"type":"cube","uuid":"d1ec83ed-cd83-f16e-0390-0cbf372e5ae1"},{"name":"cube","rescale":false,"locked":false,"from":[5.75,11,7.5],"to":[6.25,12,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,17.5,20.5,18],"texture":2},"east":{"uv":[18,20,18.5,20.5],"texture":2},"south":{"uv":[20,18,20.5,18.5],"texture":2},"west":{"uv":[18.5,20,19,20.5],"texture":2},"up":{"uv":[20.5,19,20,18.5],"texture":2},"down":{"uv":[19.5,20,19,20.5],"texture":2}},"type":"cube","uuid":"0b962282-c0fb-eae3-90bb-93165126476c"},{"name":"cube","rescale":false,"locked":false,"from":[6,11,8],"to":[6.5,12,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,19,20.5,19.5],"texture":2},"east":{"uv":[19.5,20,20,20.5],"texture":2},"south":{"uv":[20,19.5,20.5,20],"texture":2},"west":{"uv":[20,20,20.5,20.5],"texture":2},"up":{"uv":[21,0.5,20.5,0],"texture":2},"down":{"uv":[21,0.5,20.5,1],"texture":2}},"type":"cube","uuid":"77a76ac4-83d8-4c28-0a7b-ecf0883d9705"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,11,8.5],"to":[7,12,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,1,21,1.5],"texture":2},"east":{"uv":[20.5,1.5,21,2],"texture":2},"south":{"uv":[20.5,2,21,2.5],"texture":2},"west":{"uv":[2.5,20.5,3,21],"texture":2},"up":{"uv":[21,3,20.5,2.5],"texture":2},"down":{"uv":[3.5,20.5,3,21],"texture":2}},"type":"cube","uuid":"b8e6d00c-b05a-93ab-3746-fd7f7663127a"},{"name":"cube","rescale":false,"locked":false,"from":[7,11,8.75],"to":[7.5,12,9.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,3,21,3.5],"texture":2},"east":{"uv":[3.5,20.5,4,21],"texture":2},"south":{"uv":[20.5,3.5,21,4],"texture":2},"west":{"uv":[4,20.5,4.5,21],"texture":2},"up":{"uv":[21,4.5,20.5,4],"texture":2},"down":{"uv":[5,20.5,4.5,21],"texture":2}},"type":"cube","uuid":"aa217bd3-2ca1-d8e1-057f-7fb36dcb1ffe"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,11,9],"to":[8.5,12,9.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,4.5,21,5],"texture":2},"east":{"uv":[5,20.5,5.5,21],"texture":2},"south":{"uv":[20.5,5,21,5.5],"texture":2},"west":{"uv":[5.5,20.5,6,21],"texture":2},"up":{"uv":[21,6,20.5,5.5],"texture":2},"down":{"uv":[6.5,20.5,6,21],"texture":2}},"type":"cube","uuid":"73efe3d4-3fdc-6cb6-0b71-0e40f0068e91"},{"name":"cube","rescale":false,"locked":false,"from":[5.5,11,6.5],"to":[6,12,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,6,21,6.5],"texture":2},"east":{"uv":[6.5,20.5,7,21],"texture":2},"south":{"uv":[20.5,6.5,21,7],"texture":2},"west":{"uv":[7,20.5,7.5,21],"texture":2},"up":{"uv":[21,7.5,20.5,7],"texture":2},"down":{"uv":[8,20.5,7.5,21],"texture":2}},"type":"cube","uuid":"1e952719-e1c2-a1be-e127-a6e81a422ccc"},{"name":"cube","rescale":false,"locked":false,"from":[5.75,11,6],"to":[6.25,12,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,7.5,21,8],"texture":2},"east":{"uv":[8,20.5,8.5,21],"texture":2},"south":{"uv":[20.5,8,21,8.5],"texture":2},"west":{"uv":[8.5,20.5,9,21],"texture":2},"up":{"uv":[21,9,20.5,8.5],"texture":2},"down":{"uv":[9.5,20.5,9,21],"texture":2}},"type":"cube","uuid":"0a8b503d-d77b-42c0-be56-edcd2be43b15"},{"name":"cube","rescale":false,"locked":false,"from":[6,11,5.5],"to":[6.5,12,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,9,21,9.5],"texture":2},"east":{"uv":[9.5,20.5,10,21],"texture":2},"south":{"uv":[20.5,9.5,21,10],"texture":2},"west":{"uv":[10,20.5,10.5,21],"texture":2},"up":{"uv":[21,10.5,20.5,10],"texture":2},"down":{"uv":[11,20.5,10.5,21],"texture":2}},"type":"cube","uuid":"a1812b03-60b4-9f97-9a13-fe69910d0017"},{"name":"cube","rescale":false,"locked":false,"from":[6.5,11,5],"to":[7,12,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,10.5,21,11],"texture":2},"east":{"uv":[11,20.5,11.5,21],"texture":2},"south":{"uv":[20.5,11,21,11.5],"texture":2},"west":{"uv":[11.5,20.5,12,21],"texture":2},"up":{"uv":[21,12,20.5,11.5],"texture":2},"down":{"uv":[12.5,20.5,12,21],"texture":2}},"type":"cube","uuid":"c02d841a-1ed8-3f52-e9e8-272191a3eae3"},{"name":"cube","rescale":false,"locked":false,"from":[7,11,4.75],"to":[7.5,12,5.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,12,21,12.5],"texture":2},"east":{"uv":[12.5,20.5,13,21],"texture":2},"south":{"uv":[20.5,12.5,21,13],"texture":2},"west":{"uv":[13,20.5,13.5,21],"texture":2},"up":{"uv":[21,13.5,20.5,13],"texture":2},"down":{"uv":[14,20.5,13.5,21],"texture":2}},"type":"cube","uuid":"5a28d30a-e0c1-16f9-ff5b-c2a9c0714204"},{"name":"cube","rescale":false,"locked":false,"from":[7.5,11,4.5],"to":[8.5,12,5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,13.5,21,14],"texture":2},"east":{"uv":[14,20.5,14.5,21],"texture":2},"south":{"uv":[20.5,14,21,14.5],"texture":2},"west":{"uv":[14.5,20.5,15,21],"texture":2},"up":{"uv":[21,15,20.5,14.5],"texture":2},"down":{"uv":[15.5,20.5,15,21],"texture":2}},"type":"cube","uuid":"6b51eebb-26d3-053e-5ca2-aaba39b870d7"}],"outliner":[{"name":"Barrel","origin":[8,8,8],"color":0,"uuid":"8c48afe2-8c47-1df1-18f0-65d698206d74","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["8b53daa8-9584-82a2-08e1-7212e1f91c99","e4dea0e2-a7bc-c935-0e00-2a33a4d5cf09","b868d7c8-b28c-43cc-0e61-34ba6da772d8","6cca4618-0c43-28a6-1fdc-899fb2e5c9dd","33c76f9d-5f71-62a6-1c89-6414ad81b7a0","723a9f3d-508a-ce0d-d919-4d78db46743e","5edfe1ac-5fe5-4073-d8a2-7f0f8d1c3823","c8d61798-73e2-1034-9cff-1b281cb4abac","03fd5df8-8fc1-ce05-654b-15b836e5e598","263b96b1-c7f5-368d-5171-0deeb8555969","a0610043-899f-f806-e05a-9dda4ca9f307","e1914e7b-6e82-e4ef-71d0-787e7a6785f1","9313a4fd-0d0f-7f56-95c6-93273a26ef36","268f3e54-6221-be8d-2825-3aa6f098052e","2a92565d-2296-e854-2c59-a9c91704ed77","305d3f9d-8d9a-1d2c-3da4-5f9e3da031b8",{"name":"Top","origin":[8,8,8],"color":0,"uuid":"0663199e-89a6-4898-b4ad-66d8fd0de10f","export":true,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["50b32161-5a4c-0e99-bd79-21e3522c15c7","d1a5a83b-765b-1942-5a28-a072468bd16e","2c3de6c6-0d11-29de-cbf9-6578f69597e3","53875594-cd99-d0bd-2cb0-080f2847df1c","554d6a10-01a8-3748-fd3e-5430bb36b5f0","ed76f4bd-afa5-4e68-75a4-0d9a3b92ec45","f8b9c62a-1ecf-cf22-4066-77f8f2bfc09f","aaa53df2-e9da-085c-b95c-d050ed9c407e","d1ec83ed-cd83-f16e-0390-0cbf372e5ae1","0b962282-c0fb-eae3-90bb-93165126476c","77a76ac4-83d8-4c28-0a7b-ecf0883d9705","b8e6d00c-b05a-93ab-3746-fd7f7663127a","aa217bd3-2ca1-d8e1-057f-7fb36dcb1ffe","73efe3d4-3fdc-6cb6-0b71-0e40f0068e91","1e952719-e1c2-a1be-e127-a6e81a422ccc","0a8b503d-d77b-42c0-be56-edcd2be43b15","a1812b03-60b4-9f97-9a13-fe69910d0017","c02d841a-1ed8-3f52-e9e8-272191a3eae3","5a28d30a-e0c1-16f9-ff5b-c2a9c0714204","6b51eebb-26d3-053e-5ca2-aaba39b870d7"]}]},{"name":"Barrel Details","origin":[8,8,8],"color":0,"uuid":"fb782982-75bd-9c80-023e-95ca9914c351","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Scope","origin":[8,8,8],"color":0,"uuid":"aa410614-fe3b-730b-d534-1ab695401aec","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["b112a22b-67bd-fd74-576f-1c9b70b0f6b3","1ba85fcc-9621-abb5-0d4b-15c285342cc0","4cebb813-02a0-2408-5170-1a3a8f2bade5","9ad0a987-a1b3-c747-8011-73f684882845","c0d9bb1f-86cd-4264-5914-4e248b02d57b","3a4f573e-2c13-874c-86a3-c0ae32e7e72d","398fedba-b65c-ec22-ca51-acc2aeb80f50","dc8e0212-efad-fd39-5e5f-e41ad8c8660b","4ddf5aeb-2b76-26b4-f310-1f3c5601714f","46fda13b-6ce3-1f64-4aa0-8f59db38fa16","46e8f018-a4e2-2fd7-14aa-dbae5c512f0e","f1e26158-beca-80b6-65fd-1ab24f2fdc67","469f1a22-2158-7cef-03e1-856a969ed655","4d5f3d9c-e21c-bc09-89be-10296f0e9bca","f60d56c6-12de-1bfb-e629-de5c4d70e063","e8ab0327-6e26-0958-4ee8-3d5cb5f69a2a","6a3502ad-094f-6aaa-7998-90ca9acadfe9","0b31e7c9-1210-7601-14de-504193d38537","1d238ecf-7ec6-ad42-d017-ee04512de1ec",{"name":"Net","origin":[8,8,8],"color":0,"uuid":"a365703f-c34c-3673-629b-49754db95c90","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["a76c8bb7-397e-cfa8-0a87-5bb6329e9138","89688973-2638-217c-b6ac-0754d36f00f4","9459550e-0025-920d-9efb-72ddd07dfe2f","1eff1d87-19c4-f670-34f7-e59751413f39","b211ff1b-e91f-194e-52b4-ec2a9e5d7f0b","6bb63954-2186-d68a-52a4-cfe9ae8d3638"]}]},{"name":"Solid Ends","origin":[8,6,8],"color":0,"uuid":"99022c48-4ca4-05dc-e0fd-c8f7329e7d88","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["d89a4343-f9dd-c81e-20f4-119992e24678","7eb9caba-bd0a-7f14-74e7-78e087087924","7f264e7a-2434-c8f2-e410-4fe1f7470821","49ac18f3-f5e0-333d-2a51-02a20b2a9bb3","c6f0b2f3-78b8-0ff8-a467-ee6032737f18","e40f243e-b8d3-7a87-36a1-1cb1cbec6e74","c5115ca2-f67e-0ed5-d966-f1ca887d28bc","81279b7f-cbd4-cd4c-dd71-9ec2453ea785","01ad688f-5df9-be54-c306-ad21805c48a2","ac0e565f-1959-a09f-7e4e-2f4d776a4b24","d4269ced-c53d-651c-be11-fe8adce7481d","4bcd491f-b92d-3e11-5dcc-59d6e9b91b01","137e76f3-ea50-71d0-762d-b5e6f3a1b40a","3f82d037-4d2f-6460-8b88-499246586db3","5b45c39f-73b8-db01-ceff-1d7ff191eafc","549fe4f3-6839-9932-b462-d61c2b2c0bc2","ec83b6c1-d6bc-b7a9-cf5c-a0273479bb63","6a834756-a47c-ecb3-e8d3-2a9420899df1","078bf81b-52bf-14f4-dd4a-53d029b0dc63","c1bc4926-0e84-14a1-d77e-fcdbdd7a7aa4","f88ac62a-9ce4-34e4-7ca2-c68f219b85cb","1a9abfee-dc1b-e94a-9d64-36ca247144e0","82958236-c2c9-a329-1218-4a4f05879f9b","2759333f-661a-61e7-e906-1dce8e29d5b0"]},{"name":"Stock","origin":[8,8,8],"color":0,"uuid":"6e4c00b4-5ed8-9f0a-2c99-45c4cb197b73","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["4bc2b90a-f51f-7a0f-812c-ba3ac25cd5bd","65ee8b0b-a58b-361f-ec15-a7bfa00f4dac"]}]},{"name":"Drum","origin":[8,6,8],"color":0,"uuid":"79cf0495-eab6-d60b-dd0b-f8e6a0ad4aaf","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Ends","origin":[8,6,8],"color":0,"uuid":"f3c07ab2-32b9-231d-ba6d-c696edbb8c63","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["7797f956-9cb2-3690-0b9b-36f3f825dfa6","c6ffba98-6dc9-f970-5548-a4c992ffa264","f70ab9c0-8ed4-41de-e3ed-45be35c55954","ae1ca423-7afc-c33b-0177-020b12c33209","6106195e-ce97-e5f5-c1eb-65e4a78cc98b","e794d1ce-a280-a9e3-44f2-36cf07c70b9e","a5e92a52-386a-4954-1622-97ec20abd2ea","1a9c507f-3998-46a9-997c-e9a7d5801ac9"]},{"name":"Joins","origin":[8,6,8],"color":0,"uuid":"87e621c6-0a39-0256-1b8b-4c2f66db0caa","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["eba16b35-6474-d61a-e3db-bc26b27667e7","fedd16e3-49c9-9ec8-d996-643d84b96cd6","456612a9-3ca3-8187-916b-6d70ea8b1eb1","d38f716a-6ca2-8985-b7f2-c8e605b59184","7449045b-8ea2-a1b7-b880-3bc2d0cead4d","ec70cc32-9810-917a-95e8-75cfb44e0982","8651b80f-372a-d7ae-7a5c-50b3e3a43210","ab665418-dea2-4053-7ce1-b30718b92b69"]},{"name":"Barrels","origin":[8,6,8],"color":0,"uuid":"275269b5-f4b3-f2c5-2d71-bb79f6fb3f75","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"1","origin":[8,6,8],"color":0,"uuid":"7bf1a4fd-3e51-7667-7887-0dbc1eb5faa3","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["d8f614ad-1ade-caa9-c82b-131fc7b2c7e5","d70fd6e5-9109-c662-0a8d-0325bf585861","c5dfbe01-7329-a1ab-3a2c-11ae66ff776e","be574ec3-44cc-b0fe-9350-1e54ccc8b531","d64dc413-586a-4e58-bfcd-e7703ce81ad3","aa02415c-23e3-c0bf-fc7d-98679b22e4c2","17779524-6e13-088a-0201-6905773d7e9c","2d218f20-ceda-459b-0b2d-f59f79b6c3e6"]},{"name":"2","origin":[8,6,8],"color":0,"uuid":"3084252e-c337-7094-9a55-4c765ae3c746","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["b1e37af1-5322-b269-5f39-3fc3b767bcc3","aa1bcc13-744b-e33d-cfdc-712a1debd507","859dc7a7-3a01-ed34-ba2a-dc4e58b0123a","a0564f5d-898e-dd2e-30c0-9cedbb3313c8","29a6b1d8-61cb-f5f2-2ce7-ccfaf0619c3e","c473daae-978d-2d0d-5101-68afda719f03","48780337-0bef-f592-2071-fa571a641fc8","571eb247-6cb0-2f30-7801-6e0950fe2322"]},{"name":"3","origin":[8,6,8],"color":0,"uuid":"826b8f82-b248-8958-95a1-fae9ef0f7c5d","export":true,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["db5b3a51-9ec1-5f33-1229-f06f488a8431","cda42d92-754d-eb33-d20c-5436d647944c","a348ec56-5f2e-79c9-9f1f-12dc84382ec3","891c582c-2746-44fb-7515-ed69ccfe4f68","398b3156-1c63-3eb0-be90-5c98e0b4b8be","ca322da9-7ac1-614f-e0ac-08b4abd5b3a9","1bcf6434-155a-0acb-2c62-ef8b3fbae2dc"]},{"name":"4","origin":[8,6,8],"color":0,"uuid":"db29136d-23b7-82e6-8c7f-d43e271fbbd1","export":true,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["a269081e-1d0f-a078-740e-59b902e73ee6","cde11b35-dbda-e4a2-25e0-665eef1cb32f","431af857-12d1-734f-99a6-787be978e953","c59c865a-2725-3534-ae8c-b17e27330d7d","ee28745c-8838-08b1-5f82-d2a0de139e17","126bb4c4-f955-a0b3-c3be-a1cbd0659634","94f85714-28e1-973b-9f77-8140e1b1769a","a062934d-994a-47e4-6535-088a89402613"]},{"name":"5","origin":[8,6,8],"color":0,"uuid":"c138973b-77d2-a711-c2dd-da7115f8ca9e","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["d76b237e-94e8-0200-5035-612e2cbb95c5","90635316-063b-a9fc-5a9a-88f3375cf075","ea87e214-dfd8-2b0d-2330-c4e066bce96e","d262c61d-1e34-bdd5-6aa5-6cc9ed74220e","4bd5767d-b842-4c2b-b5b6-462a842142d2","9caf9bf3-0d49-d2ee-7da6-8130766a2670","2a5627a9-a28f-67ce-3e69-ab4fb93edb49"]},{"name":"6","origin":[8,6,8],"color":0,"uuid":"9994f304-2aad-931e-785c-f381a5309dbf","export":true,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["8cfab8d1-be30-790e-dd77-d34be7ccd30c","06448771-119f-d4e9-d633-e78191cf791c","a14cf836-1ee9-67ec-4c48-7c0d949fdfb1","62e2ac94-6000-e6a9-56d5-3c4404c876f0","3a5cab6d-31dc-51e2-48f4-4888813767c2","d7cb1699-1818-8264-8006-b604a312310a","73a660ad-65a6-302a-6517-ceccb02dfdb2","980915cf-b217-2d80-b071-d78c11124a25"]},{"name":"Solid Ends","origin":[8,6,8],"color":0,"uuid":"2f010cfb-6d25-57f5-da79-5a90ec6a95af","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["8e3e2f7f-2c30-d1d6-f535-443ccc1941fc","6c3d3467-4e7b-157a-f2d2-34cc98eb6b7e","cc8956c4-0a6a-a562-5fa1-5b92c1479af9","a58762cd-efd8-b38d-b5c5-2a989a6f2430","55172053-7eda-e631-b5af-c86fbd9288c8","410e3fbb-e168-c52a-5813-6a3fc1b8b9f6","7a5d8c10-7258-3ec2-e006-4850a30d323e","c1872c73-53b3-6ee6-dbbf-1b43e0bf2d2f","41b352af-0723-10d0-b84d-1e3780e7024d","41106c0c-1f94-17c1-3276-abc5d69c7588","4b0fea8b-997c-35d3-1f2d-e6d25729bc4a","8ef6fd96-cbc5-ff42-42a5-206272756884","8f7e7434-9e21-fca2-0f6c-e5d0481e8b38","5bbe6ea6-00c8-d820-8169-3f5187c31144","4dff0fb7-964b-38a9-21f4-33a432e03f63","534a0293-ac8b-7cae-b247-68bd0250dc7c","2acd481b-cd8a-f385-84ec-08e1a436da00"]}]}]},{"name":"Trigger","origin":[8,8,8],"color":0,"uuid":"7a401894-96f3-41f8-26d2-466b07c9327d","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Ring","origin":[8,6,8],"color":0,"uuid":"4422efd3-e879-f113-fcc2-31c88f826615","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["5d68268c-5373-0b05-fb01-cd61b0ea4190","c727a53f-2edd-2ed5-ca2f-ef0e6044a94c","415e9c62-4f95-b6ae-ee6d-0be6271b7a0a","cf989dad-9f8b-2eda-503a-44b382fc3c3f","19190e0c-52e2-3486-cf86-1148d839f536","8693c878-87f4-48b7-8a9b-cc74fd5814b3","5d315c86-e5dc-03a1-c6f6-2dc2265db845","5e956acb-2658-264f-74b5-686734647b4f","93932a8b-a7d4-0b61-2382-d64daf444049","dc63c3f7-1b6d-36fc-7de6-ecf46e5dcec1","a3bc3128-5f51-8585-53fc-3dd405510488","be45b3e9-f965-b177-0fbe-40070c25ebc3"]},"e61acc4d-3983-e18a-91e3-15afb17a46fc","9bdea789-37a8-a2d2-483a-3ec3ec275be6","638aee7e-2abb-d41b-5637-bf96c96dc7e8","09710376-d077-9d7f-9910-9052ea3a180e","8e706f92-71ef-9034-a356-3eb7a54ecbb9","ae31f797-d653-c6dd-5d12-0b1acad3bbcc","b4c4fa39-82c2-f5ff-6257-4af422a84513"]},{"name":"Shoulder Stock","origin":[8,8,8],"color":0,"uuid":"3f4ffaa3-0026-fda8-7e22-968725d015e4","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["6424a059-a163-8d30-e08f-d502485e0578","4d6f6b70-6bd0-6a8b-5e3b-153bddcb4044","e12eae89-aca5-3660-3e12-c0cfc7529cfe","42af1794-60f5-0671-1168-5ea76a075af9","7d95444e-7c5d-5d27-f967-cc50ffd086ac","8ef58fc6-c903-be22-4511-20efdd3cc293","56809c45-e108-a8b0-8f0d-3e1b0c75b61f","accb2157-32d3-5fde-e24e-f0d5b2557333","bc2c9857-e694-f0dd-32b1-21fe612aedf2","2164b1b1-3dcc-ccab-bbda-b03ff1f1aa19","c5bb2e34-5ac0-18e9-b112-3f1f214fa0a3","2b00e9ea-7e14-cf30-32c6-d1456d88ec7a","649f6333-09c3-1fd7-2b91-a3fcbd449824","1a49c0d1-add6-f635-aefe-980cb5f4d4ab","60bf1dce-b6b9-3ee7-a6e7-b43b9e67c8ee","fb8c4e95-5f7a-6e03-fc07-dd26dff7da82","18afe468-da8a-c8f7-b866-6a6ffb9f42fd","5f1106bc-382f-0ea6-f390-6853e12722b8","2909e86f-a25e-175d-7f5c-3b74fb50d07e","4b24fb8f-4565-bde1-0c9a-3bab144f8908","1afd9464-d386-c92d-e1a2-0c61bdb60cf6","2ec07916-970d-113d-c707-3df421a02abe","f2a0b2d2-2dc3-3553-ca90-3e7fce3d4fd5","55e0c36e-4193-1385-e0a2-946852933a16","da83b2e7-97c3-5e76-35e8-08612a812fda","d85d8105-10f7-2ce4-73b4-60ec3ea48eb8","f59cdd49-f0e1-d883-8bec-ed994e9d5fc8","c6acfb5a-50c0-c139-92a3-4460cb815359","1b5ce2db-b063-0929-9694-85602e4befdb","6ea9654e-a865-99b5-bf67-266b8a898f3e","47830dc1-6389-2780-fb61-ea7bb61bf9b4","cdd15042-9cf0-92c1-f24c-71527c20a6ee","eb454a04-09a7-d8e9-6ff4-4d6e79e9e9c6","8cac6dba-2c7d-bb9f-6573-85260bd24efc","96d4d03e-2c63-5c11-d9ca-9aa70d663e86",{"name":"Ends","origin":[8,8,8],"color":0,"uuid":"e486efe5-61e4-0f61-b2d8-12135e14e66d","export":true,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["eff65476-38fd-97cc-1678-7f0eab58c796","76737977-c76f-a2f8-0238-c470c68716a1","a8fcc1f1-22ef-f521-13e4-e1a0f53a8cf4","22c124a8-6709-297e-8322-0e2364dbc330"]}]}],"textures":[{"path":"C:\\Users\\amazi\\Documents\\McDonald's Projects\\Thatcher\\src\\main\\resources\\assets\\thatchermod\\textures\\item\\grenade3d\\grenade_launcher_stock_texture.png","name":"grenade_launcher_stock_texture.png","folder":"item/grenade3d","namespace":"thatchermod","id":"0","particle":true,"render_mode":"default","visible":true,"mode":"bitmap","saved":true,"uuid":"a208d519-5456-62eb-9533-2df57559c8a0","relative_path":"../../../textures/item/grenade3d/grenade_launcher_stock_texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAeVJREFUWEftVklSwzAQHC1x4lDwBp7Anf8/CCjixNZCtZQWchwOVm6UdVJsj6bV09MZ9f72Gl96K85Hee6tYH0NruxPo5djZ8T5IKOPaT+MXpQS+Ti59P0j8QoAcAgOxgIIJPU+ijEqPcO78+QlRJHOKJl8nAF4JD4BQAJrVGHhLwBIdNhlMFhk4JH4BAAU9p1J1PedFg1+ReTsQrrx6KJoLWK1Emt0+g6AP4ffErTGFwDISYqR8LDTorXK1AdJAHB7auQWQGt8KQFrzxsf9znZ6ZLp9iGLFGIcxpDfjfkdStAaPwMAarFQBlCdyjD5RD2SQpQAyDLcAmiJLwCQlDfbWZXoDiHKeQrS2QwAzwEGC52A1mWbtsbPALgQZXKxMMD61wDqVrwF0BJfANTUo87oBHTB9cKJkZpy0k0GWuNnPgBHgqDYjnQ+MEEAMCgIDt/UgNAVLfGlDWnFVHntgngG4dGgkgiqLqiteG38AgCpBQDaM50P9T9YLd8XvzAiXmBt/F0A7GkAYI1x8NPeJHO654Q1gDXxCxGi7ux1uh5rjt/1vtYARbg2fibCHXz/CgAHYg/Rof9T77ssQPwdswXphBBhS/yiBPWtKbRtHuBAAka2eWCbB7Z5YJsHtnlgmwf+3TzwA3yL1A82PqouAAAAAElFTkSuQmCC"},{"path":"C:\\Users\\amazi\\Documents\\McDonald's Projects\\Thatcher\\src\\main\\resources\\assets\\thatchermod\\textures\\item\\grenade3d\\grenade_launcher_end_texture.png","name":"grenade_launcher_end_texture.png","folder":"item/grenade3d","namespace":"thatchermod","id":"2","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":true,"uuid":"0e239e42-62d5-5f6b-0c23-5b51c383aeef","relative_path":"../../../textures/item/grenade3d/grenade_launcher_end_texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAEFJREFUOE9jZGBg+M9AGDDiUgKSGDVgRIQBzjQAShvI6QCmEDld4NUMMwA9kcEMIKgZlwGEEzaSCqJswWfiMDAAAFccDBFYaJCcAAAAAElFTkSuQmCC"},{"path":"C:\\Users\\amazi\\Documents\\McDonald's Projects\\Thatcher\\src\\main\\resources\\assets\\thatchermod\\textures\\item\\grenade3d\\grenade_launcher_barrel_texture.png","name":"grenade_launcher_barrel_texture.png","folder":"item/grenade3d","namespace":"thatchermod","id":"3","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":true,"uuid":"d4d73b39-93e5-8f18-e06b-761ab4a107f3","relative_path":"../../../textures/item/grenade3d/grenade_launcher_barrel_texture.png","source":"data:image/png;base64,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"},{"path":"C:\\Users\\amazi\\Documents\\McDonald's Projects\\Thatcher\\src\\main\\resources\\assets\\thatchermod\\textures\\item\\grenade3d\\grenade_launcher_metal_texture.png","name":"grenade_launcher_metal_texture.png","folder":"item/grenade3d","namespace":"thatchermod","id":"4","particle":false,"render_mode":"default","visible":true,"mode":"bitmap","saved":true,"uuid":"2853a01c-b08c-5d52-875c-e0430b3f8806","relative_path":"../../../textures/item/grenade3d/grenade_launcher_metal_texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAv5JREFUWEeFlguOwkAMQzv8bwZC3P8siF9XHu0buSbbrVRBhzJxHMeZdrvd5un3aq1Nm82m37r0udvtxrO+n06nvlZdn89ner1ekz518aw1bq3N8wg5NQeggNvttgcEjD8r8OFw6O/o0ka+mTZ/v99jjWetAUDfAag9BgCCK4gCVEB8jQw9YALiOZlwEAsACs5NsKoU0J8Z94xa6zcM6R1uZ0KMCOCiBE6xb5RaAEBmrP84cAV8PB4dgPbQ+wr8fD7H+gKA/rzf7/smAEgtpPgcKAD0qWBrAARCwBYloAPQQ2oBar1rPGNKQHCnn3KJATQwSqCNvd08a1/PGiflqQ1aToG8IwAwGFDG2V79xwJYlXEy4+pXMISMMMXC/X7vemjX63XWpg6AFtMnetCmLsZUu/uBM4Ha8Rb9BgDpoF0ul9lr7jogCDWFEcqCY1bt6E7oXsH6EKEAeC0RnmeOkcAIZkVWAISFLIGLET3ghr0EZK2gZOetpAzIwgUKWN5dE6F+Yx90Maw4N83MMoO1LkmLdlfEF/4EkEOIzKA2a+2MuUFRAkpL9jigT8wvI6JlfPCQRY5b1447J+8nAAWWNQsIXvA1jmGhsuAEgDFVzuluSf8zjGBCz12EIM4W9POB19YdDhBMUWYJQSkH6udc8NWG1RxwNnxDtIA4aU8FPx6P48SU9ksX+P/a+XzuDCSAnAEASCawbCapO+raQWSUKAGkCFPdoKczAJ7m5E7oE9D36+X7CwA265n7jKD2lXNm2+Y50B2zLIEHz1Os/5bDqToH5KmJhNi3A4B26PQh5ABcK14q9wkXGnR7xg5glMB7luBZAoYHBpUd4trI0UwLJpB/AaSPcyaAiWTqS2BxOq7KsVoCp9AHEgIESAamPH5S8hHtDC0AOL0E8ZrlMHImHARa8gT+BZD970cob6uFi/1S7Jlm8BzlqY/BAGjd/32q8bt3RXUO9LOEn34QcWlEuQgIB1AZEwEqDfjAqoAurLhSr1OZ/e9spFHhltV6BfQHVDE69FPeuIUAAAAASUVORK5CYII="}],"display":{"thirdperson_righthand":{"rotation":[90,180,0],"translation":[0,1.6,-7.3],"scale":[0.6,0.6,0.6]},"thirdperson_lefthand":{"rotation":[90,180,0],"translation":[0,1.6,-7.3],"scale":[0.6,0.6,0.6]},"firstperson_righthand":{"rotation":[100,180,4],"translation":[0,4.5,-5.5],"scale":[0.75,0.75,0.75]},"firstperson_lefthand":{"rotation":[100,180,0],"translation":[0,4.5,-5.5],"scale":[0.75,0.75,0.75]},"ground":{"rotation":[90,180,0],"translation":[0,0,-6],"scale":[0.7,0.7,0.7]},"gui":{"rotation":[-90,-45,90],"translation":[2.5,3.5,0],"scale":[0.55,0.55,0.55]},"head":{"rotation":[90,180,0],"translation":[0,10.5,-4.5],"scale":[0.6,0.6,0.6]},"fixed":{"rotation":[90,135,90],"translation":[-3.5,4.5,0],"scale":[0.7,0.7,0.7]}}} \ No newline at end of file +{"meta":{"format_version":"4.5","model_format":"java_block","box_uv":false},"name":"grenade_launcher","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":32,"height":32},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,0,6.5],"to":[6.5,11,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[3,0,3.5,5.5],"texture":2},"east":{"uv":[3.5,0,4,5.5],"texture":2},"south":{"uv":[0,4,0.5,9.5],"texture":2},"west":{"uv":[4,0,4.5,5.5],"texture":2},"up":{"uv":[19.5,14,19,13.5],"texture":2},"down":{"uv":[19.5,14,19,14.5],"texture":2}},"type":"cube","uuid":"8b53daa8-9584-82a2-08e1-7212e1f91c99"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,1.5,4],"to":[8.5,10.5,5],"autouv":1,"color":6,"origin":[10,0.5,8],"faces":{"north":{"uv":[0,0,4,36],"texture":0},"east":{"uv":[0,0,4,36],"texture":0},"south":{"uv":[0,0,4,36],"texture":0},"west":{"uv":[0,0,4,36],"texture":0},"up":{"uv":[0,0,4,4],"rotation":90,"texture":0},"down":{"uv":[0,0,4,4],"rotation":270,"texture":0}},"type":"cube","uuid":"65ee8b0b-a58b-361f-ec15-a7bfa00f4dac"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,2.5,3],"to":[8.5,10.5,4],"autouv":1,"color":6,"origin":[10,0.5,8],"faces":{"north":{"uv":[0,0,4,32],"texture":0},"east":{"uv":[0,0,4,32],"texture":0},"south":{"uv":[0,0,4,32],"texture":0},"west":{"uv":[0,0,4,32],"texture":0},"up":{"uv":[0,0,4,4],"rotation":90,"texture":0},"down":{"uv":[0,0,4,4],"rotation":270,"texture":0}},"type":"cube","uuid":"4bc2b90a-f51f-7a0f-812c-ba3ac25cd5bd"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,0,5.25],"to":[7.5,11,5.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[0.5,4,1,9.5],"texture":2},"east":{"uv":[1,4,1.5,9.5],"texture":2},"south":{"uv":[1.5,4,2,9.5],"texture":2},"west":{"uv":[2,4,2.5,9.5],"texture":2},"up":{"uv":[19.5,15,19,14.5],"texture":2},"down":{"uv":[19.5,15,19,15.5],"texture":2}},"type":"cube","uuid":"e4dea0e2-a7bc-c935-0e00-2a33a4d5cf09"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,0,5.5],"to":[7,11,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[2.5,4,3,9.5],"texture":2},"east":{"uv":[4.5,0,5,5.5],"texture":2},"south":{"uv":[5,0,5.5,5.5],"texture":2},"west":{"uv":[5.5,0,6,5.5],"texture":2},"up":{"uv":[19.5,16,19,15.5],"texture":2},"down":{"uv":[19.5,16,19,16.5],"texture":2}},"type":"cube","uuid":"b868d7c8-b28c-43cc-0e61-34ba6da772d8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.25,0,6],"to":[6.75,11,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[3,5.5,3.5,11],"texture":2},"east":{"uv":[3.5,5.5,4,11],"texture":2},"south":{"uv":[4,5.5,4.5,11],"texture":2},"west":{"uv":[4.5,5.5,5,11],"texture":2},"up":{"uv":[19.5,17,19,16.5],"texture":2},"down":{"uv":[19.5,17,19,17.5],"texture":2}},"type":"cube","uuid":"6cca4618-0c43-28a6-1fdc-899fb2e5c9dd"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,0,5],"to":[8.5,11,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[8.5,0,9,5.5],"texture":2},"east":{"uv":[8.5,5.5,9,11],"texture":2},"south":{"uv":[9,0,9.5,5.5],"texture":2},"west":{"uv":[9,5.5,9.5,11],"texture":2},"up":{"uv":[20,1.5,19.5,1],"texture":2},"down":{"uv":[20,1.5,19.5,2],"texture":2}},"type":"cube","uuid":"c8d61798-73e2-1034-9cff-1b281cb4abac"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.25,0,6],"to":[9.75,11,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[7.5,0,8,5.5],"texture":2},"east":{"uv":[7.5,5.5,8,11],"texture":2},"south":{"uv":[8,0,8.5,5.5],"texture":2},"west":{"uv":[8,5.5,8.5,11],"texture":2},"up":{"uv":[20,0.5,19.5,0],"texture":2},"down":{"uv":[20,0.5,19.5,1],"texture":2}},"type":"cube","uuid":"5edfe1ac-5fe5-4073-d8a2-7f0f8d1c3823"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,0,5.5],"to":[9.5,11,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[6.5,0,7,5.5],"texture":2},"east":{"uv":[6.5,5.5,7,11],"texture":2},"south":{"uv":[7,0,7.5,5.5],"texture":2},"west":{"uv":[7,5.5,7.5,11],"texture":2},"up":{"uv":[19.5,19,19,18.5],"texture":2},"down":{"uv":[19.5,19,19,19.5],"texture":2}},"type":"cube","uuid":"723a9f3d-508a-ce0d-d919-4d78db46743e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,0,5.25],"to":[9,11,5.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[5,5.5,5.5,11],"texture":2},"east":{"uv":[5.5,5.5,6,11],"texture":2},"south":{"uv":[6,0,6.5,5.5],"texture":2},"west":{"uv":[6,5.5,6.5,11],"texture":2},"up":{"uv":[19.5,18,19,17.5],"texture":2},"down":{"uv":[19.5,18,19,18.5],"texture":2}},"type":"cube","uuid":"33c76f9d-5f71-62a6-1c89-6414ad81b7a0"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,0,6.5],"to":[10,11,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[11,0,11.5,5.5],"texture":2},"east":{"uv":[3,11,3.5,16.5],"texture":2},"south":{"uv":[3.5,11,4,16.5],"texture":2},"west":{"uv":[4,11,4.5,16.5],"texture":2},"up":{"uv":[20,5.5,19.5,5],"texture":2},"down":{"uv":[20,7.5,19.5,8],"texture":2}},"type":"cube","uuid":"e1914e7b-6e82-e4ef-71d0-787e7a6785f1"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,0,8.25],"to":[9,11,8.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[10,0,10.5,5.5],"texture":2},"east":{"uv":[10,5.5,10.5,11],"texture":2},"south":{"uv":[10.5,0,11,5.5],"texture":2},"west":{"uv":[10.5,5.5,11,11],"texture":2},"up":{"uv":[20,4.5,19.5,4],"texture":2},"down":{"uv":[20,4.5,19.5,5],"texture":2}},"type":"cube","uuid":"a0610043-899f-f806-e05a-9dda4ca9f307"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,0,8],"to":[9.5,11,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[1.5,9.5,2,15],"texture":2},"east":{"uv":[2,9.5,2.5,15],"texture":2},"south":{"uv":[2.5,9.5,3,15],"texture":2},"west":{"uv":[9.5,5.5,10,11],"texture":2},"up":{"uv":[20,3.5,19.5,3],"texture":2},"down":{"uv":[20,3.5,19.5,4],"texture":2}},"type":"cube","uuid":"263b96b1-c7f5-368d-5171-0deeb8555969"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.25,0,7.5],"to":[9.75,11,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[0,9.5,0.5,15],"texture":2},"east":{"uv":[9.5,0,10,5.5],"texture":2},"south":{"uv":[0.5,9.5,1,15],"texture":2},"west":{"uv":[1,9.5,1.5,15],"texture":2},"up":{"uv":[20,2.5,19.5,2],"texture":2},"down":{"uv":[20,2.5,19.5,3],"texture":2}},"type":"cube","uuid":"03fd5df8-8fc1-ce05-654b-15b836e5e598"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,0,8.5],"to":[8.5,11,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[10,11,10.5,16.5],"texture":2},"east":{"uv":[10.5,11,11,16.5],"texture":2},"south":{"uv":[11,11,11.5,16.5],"texture":2},"west":{"uv":[11.5,0,12,5.5],"texture":2},"up":{"uv":[13.5,20,13,19.5],"texture":2},"down":{"uv":[14,19.5,13.5,20],"texture":2}},"type":"cube","uuid":"305d3f9d-8d9a-1d2c-3da4-5f9e3da031b8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.25,0,7.5],"to":[6.75,11,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[8,11,8.5,16.5],"texture":2},"east":{"uv":[8.5,11,9,16.5],"texture":2},"south":{"uv":[9,11,9.5,16.5],"texture":2},"west":{"uv":[9.5,11,10,16.5],"texture":2},"up":{"uv":[20,10.5,19.5,10],"texture":2},"down":{"uv":[13,19.5,12.5,20],"texture":2}},"type":"cube","uuid":"2a92565d-2296-e854-2c59-a9c91704ed77"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,0,8],"to":[7,11,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[6,11,6.5,16.5],"texture":2},"east":{"uv":[6.5,11,7,16.5],"texture":2},"south":{"uv":[7,11,7.5,16.5],"texture":2},"west":{"uv":[7.5,11,8,16.5],"texture":2},"up":{"uv":[20,9.5,19.5,9],"texture":2},"down":{"uv":[20,9.5,19.5,10],"texture":2}},"type":"cube","uuid":"268f3e54-6221-be8d-2825-3aa6f098052e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,0,8.25],"to":[7.5,11,8.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[4.5,11,5,16.5],"texture":2},"east":{"uv":[5,11,5.5,16.5],"texture":2},"south":{"uv":[5.5,11,6,16.5],"texture":2},"west":{"uv":[11,5.5,11.5,11],"texture":2},"up":{"uv":[20,8.5,19.5,8],"texture":2},"down":{"uv":[20,8.5,19.5,9],"texture":2}},"type":"cube","uuid":"9313a4fd-0d0f-7f56-95c6-93273a26ef36"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,14,7.5],"to":[8.5,18,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12,3.5,12.5,5.5],"texture":2},"east":{"uv":[12,10,12.5,12],"texture":2},"south":{"uv":[12,12,12.5,14],"texture":2},"west":{"uv":[12.5,1,13,3],"texture":2},"up":{"uv":[21,15.5,20.5,15],"texture":2},"down":{"uv":[16,20.5,15.5,21],"texture":2}},"type":"cube","uuid":"d8f614ad-1ade-caa9-c82b-131fc7b2c7e5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,14,8],"to":[9,18,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12.5,3,13,5],"texture":2},"east":{"uv":[12.5,7.5,13,9.5],"texture":2},"south":{"uv":[12.5,9.5,13,11.5],"texture":2},"west":{"uv":[11.5,12.5,12,14.5],"texture":2},"up":{"uv":[21,16,20.5,15.5],"texture":2},"down":{"uv":[16.5,20.5,16,21],"texture":2}},"type":"cube","uuid":"d70fd6e5-9109-c662-0a8d-0325bf585861"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,14,8.5],"to":[9.5,18,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12.5,11.5,13,13.5],"texture":2},"east":{"uv":[13,1,13.5,3],"texture":2},"south":{"uv":[13,3,13.5,5],"texture":2},"west":{"uv":[13,7.5,13.5,9.5],"texture":2},"up":{"uv":[21,16.5,20.5,16],"texture":2},"down":{"uv":[17,20.5,16.5,21],"texture":2}},"type":"cube","uuid":"c5dfbe01-7329-a1ab-3a2c-11ae66ff776e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,14,9.5],"to":[9,18,10],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13,9.5,13.5,11.5],"texture":2},"east":{"uv":[13,11.5,13.5,13.5],"texture":2},"south":{"uv":[13.5,1,14,3],"texture":2},"west":{"uv":[13.5,3,14,5],"texture":2},"up":{"uv":[21,17,20.5,16.5],"texture":2},"down":{"uv":[17.5,20.5,17,21],"texture":2}},"type":"cube","uuid":"be574ec3-44cc-b0fe-9350-1e54ccc8b531"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,14,8],"to":[7.5,18,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13.5,7.5,14,9.5],"texture":2},"east":{"uv":[13.5,9.5,14,11.5],"texture":2},"south":{"uv":[13.5,11.5,14,13.5],"texture":2},"west":{"uv":[12.5,13.5,13,15.5],"texture":2},"up":{"uv":[21,17.5,20.5,17],"texture":2},"down":{"uv":[18,20.5,17.5,21],"texture":2}},"type":"cube","uuid":"d64dc413-586a-4e58-bfcd-e7703ce81ad3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,14,8.5],"to":[7,18,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13,13.5,13.5,15.5],"texture":2},"east":{"uv":[13.5,13.5,14,15.5],"texture":2},"south":{"uv":[14,1,14.5,3],"texture":2},"west":{"uv":[14,3,14.5,5],"texture":2},"up":{"uv":[21,18,20.5,17.5],"texture":2},"down":{"uv":[18.5,20.5,18,21],"texture":2}},"type":"cube","uuid":"aa02415c-23e3-c0bf-fc7d-98679b22e4c2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,14,9.5],"to":[7.5,18,10],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,6.5,14.5,8.5],"texture":2},"east":{"uv":[14,8.5,14.5,10.5],"texture":2},"south":{"uv":[14,10.5,14.5,12.5],"texture":2},"west":{"uv":[12,14,12.5,16],"texture":2},"up":{"uv":[21,18.5,20.5,18],"texture":2},"down":{"uv":[19,20.5,18.5,21],"texture":2}},"type":"cube","uuid":"17779524-6e13-088a-0201-6905773d7e9c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,14,10],"to":[8.5,18,10.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,12.5,14.5,14.5],"texture":2},"east":{"uv":[14.5,0,15,2],"texture":2},"south":{"uv":[14.5,2,15,4],"texture":2},"west":{"uv":[14.5,6.5,15,8.5],"texture":2},"up":{"uv":[21,19,20.5,18.5],"texture":2},"down":{"uv":[19.5,20.5,19,21],"texture":2}},"type":"cube","uuid":"2d218f20-ceda-459b-0b2d-f59f79b6c3e6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,12,2.5],"to":[10,13,10.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,11,21,12],"texture":3},"east":{"uv":[11,2,19,3],"texture":3},"south":{"uv":[17,12,21,13],"texture":3},"west":{"uv":[11,3,19,4],"texture":3},"up":{"uv":[4,8,0,0],"texture":3},"down":{"uv":[8,0,4,8],"texture":3}},"type":"cube","uuid":"f70ab9c0-8ed4-41de-e3ed-45be35c55954"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,12,3.5],"to":[6,13,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[6,28,7,29],"texture":3},"east":{"uv":[5,15,11,16],"texture":3},"south":{"uv":[28,6,29,7],"texture":3},"west":{"uv":[15,5,21,6],"texture":3},"up":{"uv":[16,12,15,6],"texture":3},"down":{"uv":[16,12,15,18],"texture":3}},"type":"cube","uuid":"ae1ca423-7afc-c33b-0177-020b12c33209"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,12,4.5],"to":[5,13,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[7,28,8,29],"texture":3},"east":{"uv":[17,13,21,14],"texture":3},"south":{"uv":[28,7,29,8],"texture":3},"west":{"uv":[17,14,21,15],"texture":3},"up":{"uv":[15,21,14,17],"texture":3},"down":{"uv":[17,17,16,21],"texture":3}},"type":"cube","uuid":"6106195e-ce97-e5f5-c1eb-65e4a78cc98b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,12,3.5],"to":[11,13,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[5,28,6,29],"texture":3},"east":{"uv":[14,4,20,5],"texture":3},"south":{"uv":[28,5,29,6],"texture":3},"west":{"uv":[5,14,11,15],"texture":3},"up":{"uv":[15,11,14,5],"texture":3},"down":{"uv":[15,11,14,17],"texture":3}},"type":"cube","uuid":"c6ffba98-6dc9-f970-5548-a4c992ffa264"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11,12,4.5],"to":[12,13,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[4,28,5,29],"texture":3},"east":{"uv":[16,16,20,17],"texture":3},"south":{"uv":[28,4,29,5],"texture":3},"west":{"uv":[5,17,9,18],"texture":3},"up":{"uv":[10,21,9,17],"texture":3},"down":{"uv":[11,17,10,21],"texture":3}},"type":"cube","uuid":"7797f956-9cb2-3690-0b9b-36f3f825dfa6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,6.25],"to":[6,18,6.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14.5,8.5,15,10.5],"texture":2},"east":{"uv":[14.5,10.5,15,12.5],"texture":2},"south":{"uv":[11.5,14.5,12,16.5],"texture":2},"west":{"uv":[14.5,12.5,15,14.5],"texture":2},"up":{"uv":[21,19.5,20.5,19],"texture":2},"down":{"uv":[20,20.5,19.5,21],"texture":2}},"type":"cube","uuid":"b1e37af1-5322-b269-5f39-3fc3b767bcc3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,14,6.75],"to":[6.5,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,14.5,14.5,16.5],"texture":2},"east":{"uv":[14.5,14.5,15,16.5],"texture":2},"south":{"uv":[0,15,0.5,17],"texture":2},"west":{"uv":[15,0,15.5,2],"texture":2},"up":{"uv":[21,20,20.5,19.5],"texture":2},"down":{"uv":[20.5,20.5,20,21],"texture":2}},"type":"cube","uuid":"aa1bcc13-744b-e33d-cfdc-712a1debd507"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,14,7.25],"to":[7,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0.5,15,1,17],"texture":2},"east":{"uv":[1,15,1.5,17],"texture":2},"south":{"uv":[1.5,15,2,17],"texture":2},"west":{"uv":[2,15,2.5,17],"texture":2},"up":{"uv":[21,20.5,20.5,20],"texture":2},"down":{"uv":[21,20.5,20.5,21],"texture":2}},"type":"cube","uuid":"859dc7a7-3a01-ed34-ba2a-dc4e58b0123a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,14,8.25],"to":[6.5,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15,2,15.5,4],"texture":2},"east":{"uv":[2.5,15,3,17],"texture":2},"south":{"uv":[15,6.5,15.5,8.5],"texture":2},"west":{"uv":[15,8.5,15.5,10.5],"texture":2},"up":{"uv":[0.5,21.5,0,21],"texture":2},"down":{"uv":[21.5,0,21,0.5],"texture":2}},"type":"cube","uuid":"a0564f5d-898e-dd2e-30c0-9cedbb3313c8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,14,6.75],"to":[5,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15,10.5,15.5,12.5],"texture":2},"east":{"uv":[15,12.5,15.5,14.5],"texture":2},"south":{"uv":[15,14.5,15.5,16.5],"texture":2},"west":{"uv":[15.5,0,16,2],"texture":2},"up":{"uv":[1,21.5,0.5,21],"texture":2},"down":{"uv":[21.5,0.5,21,1],"texture":2}},"type":"cube","uuid":"29a6b1d8-61cb-f5f2-2ce7-ccfaf0619c3e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,14,7.25],"to":[4.5,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15.5,2,16,4],"texture":2},"east":{"uv":[15.5,4,16,6],"texture":2},"south":{"uv":[15.5,6,16,8],"texture":2},"west":{"uv":[15.5,8,16,10],"texture":2},"up":{"uv":[1.5,21.5,1,21],"texture":2},"down":{"uv":[21.5,1,21,1.5],"texture":2}},"type":"cube","uuid":"c473daae-978d-2d0d-5101-68afda719f03"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,14,8.25],"to":[5,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15.5,10,16,12],"texture":2},"east":{"uv":[15.5,12,16,14],"texture":2},"south":{"uv":[12.5,15.5,13,17.5],"texture":2},"west":{"uv":[13,15.5,13.5,17.5],"texture":2},"up":{"uv":[2,21.5,1.5,21],"texture":2},"down":{"uv":[21.5,1.5,21,2],"texture":2}},"type":"cube","uuid":"48780337-0bef-f592-2071-fa571a641fc8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,8.75],"to":[6,18,9.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13.5,15.5,14,17.5],"texture":2},"east":{"uv":[15.5,14,16,16],"texture":2},"south":{"uv":[16,0,16.5,2],"texture":2},"west":{"uv":[16,2,16.5,4],"texture":2},"up":{"uv":[2.5,21.5,2,21],"texture":2},"down":{"uv":[21.5,2,21,2.5],"texture":2}},"type":"cube","uuid":"571eb247-6cb0-2f30-7801-6e0950fe2322"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,3.75],"to":[6,18,4.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,4,16.5,6],"texture":2},"east":{"uv":[16,6,16.5,8],"texture":2},"south":{"uv":[16,8,16.5,10],"texture":2},"west":{"uv":[16,10,16.5,12],"texture":2},"up":{"uv":[3,21.5,2.5,21],"texture":2},"down":{"uv":[21.5,2.5,21,3],"texture":2}},"type":"cube","uuid":"db5b3a51-9ec1-5f33-1229-f06f488a8431"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,14,4.25],"to":[6.5,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12,16,12.5,18],"texture":2},"east":{"uv":[16,12,16.5,14],"texture":2},"south":{"uv":[16,14,16.5,16],"texture":2},"west":{"uv":[15.5,16,16,18],"texture":2},"up":{"uv":[3.5,21.5,3,21],"texture":2},"down":{"uv":[21.5,3,21,3.5],"texture":2}},"type":"cube","uuid":"cda42d92-754d-eb33-d20c-5436d647944c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,14,4.75],"to":[7,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,16,16.5,18],"texture":2},"east":{"uv":[16.5,0,17,2],"texture":2},"south":{"uv":[16.5,2,17,4],"texture":2},"west":{"uv":[3,16.5,3.5,18.5],"texture":2},"up":{"uv":[4,21.5,3.5,21],"texture":2},"down":{"uv":[21.5,3.5,21,4],"texture":2}},"type":"cube","uuid":"a348ec56-5f2e-79c9-9f1f-12dc84382ec3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,14,5.75],"to":[6.5,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[3.5,16.5,4,18.5],"texture":2},"east":{"uv":[4,16.5,4.5,18.5],"texture":2},"south":{"uv":[16.5,4,17,6],"texture":2},"west":{"uv":[4.5,16.5,5,18.5],"texture":2},"up":{"uv":[4.5,21.5,4,21],"texture":2},"down":{"uv":[21.5,4,21,4.5],"texture":2}},"type":"cube","uuid":"891c582c-2746-44fb-7515-ed69ccfe4f68"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,14,4.25],"to":[5,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[5,16.5,5.5,18.5],"texture":2},"east":{"uv":[5.5,16.5,6,18.5],"texture":2},"south":{"uv":[6,16.5,6.5,18.5],"texture":2},"west":{"uv":[16.5,6,17,8],"texture":2},"up":{"uv":[5,21.5,4.5,21],"texture":2},"down":{"uv":[21.5,4.5,21,5],"texture":2}},"type":"cube","uuid":"398b3156-1c63-3eb0-be90-5c98e0b4b8be"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,14,4.75],"to":[4.5,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[6.5,16.5,7,18.5],"texture":2},"east":{"uv":[7,16.5,7.5,18.5],"texture":2},"south":{"uv":[7.5,16.5,8,18.5],"texture":2},"west":{"uv":[8,16.5,8.5,18.5],"texture":2},"up":{"uv":[5.5,21.5,5,21],"texture":2},"down":{"uv":[21.5,5,21,5.5],"texture":2}},"type":"cube","uuid":"ca322da9-7ac1-614f-e0ac-08b4abd5b3a9"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,14,5.75],"to":[5,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16.5,8,17,10],"texture":2},"east":{"uv":[8.5,16.5,9,18.5],"texture":2},"south":{"uv":[9,16.5,9.5,18.5],"texture":2},"west":{"uv":[9.5,16.5,10,18.5],"texture":2},"up":{"uv":[6,21.5,5.5,21],"texture":2},"down":{"uv":[21.5,5.5,21,6],"texture":2}},"type":"cube","uuid":"1bcf6434-155a-0acb-2c62-ef8b3fbae2dc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,6.25],"to":[11,18,6.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[4.5,18.5,5,20.5],"texture":2},"east":{"uv":[5,18.5,5.5,20.5],"texture":2},"south":{"uv":[5.5,18.5,6,20.5],"texture":2},"west":{"uv":[6,18.5,6.5,20.5],"texture":2},"up":{"uv":[14,21.5,13.5,21],"texture":2},"down":{"uv":[21.5,13.5,21,14],"texture":2}},"type":"cube","uuid":"8cfab8d1-be30-790e-dd77-d34be7ccd30c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11,14,6.75],"to":[11.5,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18.5,6,19,8],"texture":2},"east":{"uv":[6.5,18.5,7,20.5],"texture":2},"south":{"uv":[7,18.5,7.5,20.5],"texture":2},"west":{"uv":[7.5,18.5,8,20.5],"texture":2},"up":{"uv":[14.5,21.5,14,21],"texture":2},"down":{"uv":[21.5,14,21,14.5],"texture":2}},"type":"cube","uuid":"06448771-119f-d4e9-d633-e78191cf791c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11.5,14,7.25],"to":[12,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[8,18.5,8.5,20.5],"texture":2},"east":{"uv":[18.5,8,19,10],"texture":2},"south":{"uv":[8.5,18.5,9,20.5],"texture":2},"west":{"uv":[9,18.5,9.5,20.5],"texture":2},"up":{"uv":[15,21.5,14.5,21],"texture":2},"down":{"uv":[21.5,14.5,21,15],"texture":2}},"type":"cube","uuid":"a14cf836-1ee9-67ec-4c48-7c0d949fdfb1"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11,14,8.25],"to":[11.5,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[9.5,18.5,10,20.5],"texture":2},"east":{"uv":[10,18.5,10.5,20.5],"texture":2},"south":{"uv":[18.5,10,19,12],"texture":2},"west":{"uv":[10.5,18.5,11,20.5],"texture":2},"up":{"uv":[15.5,21.5,15,21],"texture":2},"down":{"uv":[21.5,15,21,15.5],"texture":2}},"type":"cube","uuid":"62e2ac94-6000-e6a9-56d5-3c4404c876f0"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,14,6.75],"to":[10,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[11,18.5,11.5,20.5],"texture":2},"east":{"uv":[11.5,18.5,12,20.5],"texture":2},"south":{"uv":[18.5,12,19,14],"texture":2},"west":{"uv":[14,18.5,14.5,20.5],"texture":2},"up":{"uv":[16,21.5,15.5,21],"texture":2},"down":{"uv":[21.5,15.5,21,16],"texture":2}},"type":"cube","uuid":"3a5cab6d-31dc-51e2-48f4-4888813767c2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,14,7.25],"to":[9.5,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18.5,14,19,16],"texture":2},"east":{"uv":[14.5,18.5,15,20.5],"texture":2},"south":{"uv":[15,18.5,15.5,20.5],"texture":2},"west":{"uv":[18.5,16,19,18],"texture":2},"up":{"uv":[16.5,21.5,16,21],"texture":2},"down":{"uv":[21.5,16,21,16.5],"texture":2}},"type":"cube","uuid":"d7cb1699-1818-8264-8006-b604a312310a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,14,8.25],"to":[10,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18.5,18,19,20],"texture":2},"east":{"uv":[0,19,0.5,21],"texture":2},"south":{"uv":[19,0,19.5,2],"texture":2},"west":{"uv":[0.5,19,1,21],"texture":2},"up":{"uv":[17,21.5,16.5,21],"texture":2},"down":{"uv":[21.5,16.5,21,17],"texture":2}},"type":"cube","uuid":"73a660ad-65a6-302a-6517-ceccb02dfdb2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,8.75],"to":[11,18,9.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[1,19,1.5,21],"texture":2},"east":{"uv":[1.5,19,2,21],"texture":2},"south":{"uv":[2,19,2.5,21],"texture":2},"west":{"uv":[19,2,19.5,4],"texture":2},"up":{"uv":[17.5,21.5,17,21],"texture":2},"down":{"uv":[21.5,17,21,17.5],"texture":2}},"type":"cube","uuid":"980915cf-b217-2d80-b071-d78c11124a25"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,3.75],"to":[11,18,4.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17.5,12,18,14],"texture":2},"east":{"uv":[12.5,17.5,13,19.5],"texture":2},"south":{"uv":[13,17.5,13.5,19.5],"texture":2},"west":{"uv":[13.5,17.5,14,19.5],"texture":2},"up":{"uv":[10.5,21.5,10,21],"texture":2},"down":{"uv":[21.5,10,21,10.5],"texture":2}},"type":"cube","uuid":"d76b237e-94e8-0200-5035-612e2cbb95c5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11,14,4.25],"to":[11.5,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17.5,14,18,16],"texture":2},"east":{"uv":[17.5,16,18,18],"texture":2},"south":{"uv":[18,0,18.5,2],"texture":2},"west":{"uv":[18,2,18.5,4],"texture":2},"up":{"uv":[11,21.5,10.5,21],"texture":2},"down":{"uv":[21.5,10.5,21,11],"texture":2}},"type":"cube","uuid":"90635316-063b-a9fc-5a9a-88f3375cf075"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11.5,14,4.75],"to":[12,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18,4,18.5,6],"texture":2},"east":{"uv":[18,6,18.5,8],"texture":2},"south":{"uv":[18,8,18.5,10],"texture":2},"west":{"uv":[18,10,18.5,12],"texture":2},"up":{"uv":[11.5,21.5,11,21],"texture":2},"down":{"uv":[21.5,11,21,11.5],"texture":2}},"type":"cube","uuid":"ea87e214-dfd8-2b0d-2330-c4e066bce96e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11,14,5.75],"to":[11.5,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12,18,12.5,20],"texture":2},"east":{"uv":[18,12,18.5,14],"texture":2},"south":{"uv":[18,14,18.5,16],"texture":2},"west":{"uv":[15.5,18,16,20],"texture":2},"up":{"uv":[12,21.5,11.5,21],"texture":2},"down":{"uv":[21.5,11.5,21,12],"texture":2}},"type":"cube","uuid":"d262c61d-1e34-bdd5-6aa5-6cc9ed74220e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,14,4.25],"to":[10,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,18,16.5,20],"texture":2},"east":{"uv":[18,16,18.5,18],"texture":2},"south":{"uv":[16.5,18,17,20],"texture":2},"west":{"uv":[17,18,17.5,20],"texture":2},"up":{"uv":[12.5,21.5,12,21],"texture":2},"down":{"uv":[21.5,12,21,12.5],"texture":2}},"type":"cube","uuid":"4bd5767d-b842-4c2b-b5b6-462a842142d2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,14,4.75],"to":[9.5,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17.5,18,18,20],"texture":2},"east":{"uv":[18,18,18.5,20],"texture":2},"south":{"uv":[18.5,0,19,2],"texture":2},"west":{"uv":[18.5,2,19,4],"texture":2},"up":{"uv":[13,21.5,12.5,21],"texture":2},"down":{"uv":[21.5,12.5,21,13],"texture":2}},"type":"cube","uuid":"9caf9bf3-0d49-d2ee-7da6-8130766a2670"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,14,5.75],"to":[10,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[3,18.5,3.5,20.5],"texture":2},"east":{"uv":[3.5,18.5,4,20.5],"texture":2},"south":{"uv":[4,18.5,4.5,20.5],"texture":2},"west":{"uv":[18.5,4,19,6],"texture":2},"up":{"uv":[13.5,21.5,13,21],"texture":2},"down":{"uv":[21.5,13,21,13.5],"texture":2}},"type":"cube","uuid":"2a5627a9-a28f-67ce-3e69-ab4fb93edb49"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,14,2.5],"to":[8.5,18,3],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[10,16.5,10.5,18.5],"texture":2},"east":{"uv":[16.5,10,17,12],"texture":2},"south":{"uv":[10.5,16.5,11,18.5],"texture":2},"west":{"uv":[11,16.5,11.5,18.5],"texture":2},"up":{"uv":[6.5,21.5,6,21],"texture":2},"down":{"uv":[21.5,6,21,6.5],"texture":2}},"type":"cube","uuid":"a269081e-1d0f-a078-740e-59b902e73ee6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,14,3],"to":[9,18,3.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[11.5,16.5,12,18.5],"texture":2},"east":{"uv":[16.5,12,17,14],"texture":2},"south":{"uv":[14,16.5,14.5,18.5],"texture":2},"west":{"uv":[16.5,14,17,16],"texture":2},"up":{"uv":[7,21.5,6.5,21],"texture":2},"down":{"uv":[21.5,6.5,21,7],"texture":2}},"type":"cube","uuid":"cde11b35-dbda-e4a2-25e0-665eef1cb32f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,14,3.5],"to":[9.5,18,4.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14.5,16.5,15,18.5],"texture":2},"east":{"uv":[15,16.5,15.5,18.5],"texture":2},"south":{"uv":[16.5,16,17,18],"texture":2},"west":{"uv":[0,17,0.5,19],"texture":2},"up":{"uv":[7.5,21.5,7,21],"texture":2},"down":{"uv":[21.5,7,21,7.5],"texture":2}},"type":"cube","uuid":"431af857-12d1-734f-99a6-787be978e953"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,14,4.5],"to":[9,18,5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,0,17.5,2],"texture":2},"east":{"uv":[0.5,17,1,19],"texture":2},"south":{"uv":[1,17,1.5,19],"texture":2},"west":{"uv":[1.5,17,2,19],"texture":2},"up":{"uv":[8,21.5,7.5,21],"texture":2},"down":{"uv":[21.5,7.5,21,8],"texture":2}},"type":"cube","uuid":"c59c865a-2725-3534-ae8c-b17e27330d7d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,14,3],"to":[7.5,18,3.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[2,17,2.5,19],"texture":2},"east":{"uv":[17,2,17.5,4],"texture":2},"south":{"uv":[2.5,17,3,19],"texture":2},"west":{"uv":[17,4,17.5,6],"texture":2},"up":{"uv":[8.5,21.5,8,21],"texture":2},"down":{"uv":[21.5,8,21,8.5],"texture":2}},"type":"cube","uuid":"ee28745c-8838-08b1-5f82-d2a0de139e17"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,14,3.5],"to":[7,18,4.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,6,17.5,8],"texture":2},"east":{"uv":[17,8,17.5,10],"texture":2},"south":{"uv":[17,10,17.5,12],"texture":2},"west":{"uv":[17,12,17.5,14],"texture":2},"up":{"uv":[9,21.5,8.5,21],"texture":2},"down":{"uv":[21.5,8.5,21,9],"texture":2}},"type":"cube","uuid":"126bb4c4-f955-a0b3-c3be-a1cbd0659634"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,14,4.5],"to":[7.5,18,5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,14,17.5,16],"texture":2},"east":{"uv":[17,16,17.5,18],"texture":2},"south":{"uv":[17.5,0,18,2],"texture":2},"west":{"uv":[17.5,2,18,4],"texture":2},"up":{"uv":[9.5,21.5,9,21],"texture":2},"down":{"uv":[21.5,9,21,9.5],"texture":2}},"type":"cube","uuid":"94f85714-28e1-973b-9f77-8140e1b1769a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,14,5],"to":[8.5,18,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17.5,4,18,6],"texture":2},"east":{"uv":[17.5,6,18,8],"texture":2},"south":{"uv":[17.5,8,18,10],"texture":2},"west":{"uv":[17.5,10,18,12],"texture":2},"up":{"uv":[10,21.5,9.5,21],"texture":2},"down":{"uv":[21.5,9.5,21,10],"texture":2}},"type":"cube","uuid":"a062934d-994a-47e4-6535-088a89402613"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,12,10.5],"to":[9,13,11],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[24,17,26,18],"texture":3},"east":{"uv":[27,23,28,24],"texture":3},"south":{"uv":[24,18,26,19],"texture":3},"west":{"uv":[24,27,25,28],"texture":3},"up":{"uv":[26,20,24,19],"texture":3},"down":{"uv":[26,20,24,21],"texture":3}},"type":"cube","uuid":"eba16b35-6474-d61a-e3db-bc26b27667e7"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,12,11],"to":[8.5,19,11.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[11,4,12,11],"texture":3},"east":{"uv":[11,11,12,18],"texture":3},"south":{"uv":[12,4,13,11],"texture":3},"west":{"uv":[12,11,13,18],"texture":3},"up":{"uv":[28,25,27,24],"texture":3},"down":{"uv":[26,27,25,28],"texture":3}},"type":"cube","uuid":"fedd16e3-49c9-9ec8-d996-643d84b96cd6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,12,2],"to":[9,13,2.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[25,2,27,3],"texture":3},"east":{"uv":[3,28,4,29],"texture":3},"south":{"uv":[25,3,27,4],"texture":3},"west":{"uv":[28,3,29,4],"texture":3},"up":{"uv":[27,5,25,4],"texture":3},"down":{"uv":[27,5,25,6],"texture":3}},"type":"cube","uuid":"ab665418-dea2-4053-7ce1-b30718b92b69"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,15,11.5],"to":[8.25,18,12],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[20,19,21,22],"texture":3},"east":{"uv":[0,21,1,24],"texture":3},"south":{"uv":[1,21,2,24],"texture":3},"west":{"uv":[2,21,3,24],"texture":3},"up":{"uv":[28,26,27,25],"texture":3},"down":{"uv":[27,27,26,28],"texture":3}},"type":"cube","uuid":"456612a9-3ca3-8187-916b-6d70ea8b1eb1"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,18,4.75],"to":[6.5,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,2,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[13,25,11,24],"texture":2},"down":{"uv":[26,12,24,13],"texture":2}},"type":"cube","uuid":"8e3e2f7f-2c30-d1d6-f535-443ccc1941fc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,18,4.25],"to":[6,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,12,27,11],"texture":2},"down":{"uv":[13,27,12,28],"texture":2}},"type":"cube","uuid":"6c3d3467-4e7b-157a-f2d2-34cc98eb6b7e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,18,5.75],"to":[6,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,13,27,12],"texture":2},"down":{"uv":[14,27,13,28],"texture":2}},"type":"cube","uuid":"cc8956c4-0a6a-a562-5fa1-5b92c1479af9"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,18,7.25],"to":[6.5,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,2,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[15,25,13,24],"texture":2},"down":{"uv":[26,13,24,14],"texture":2}},"type":"cube","uuid":"410e3fbb-e168-c52a-5813-6a3fc1b8b9f6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,18,6.75],"to":[6,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,15,27,14],"texture":2},"down":{"uv":[16,27,15,28],"texture":2}},"type":"cube","uuid":"55172053-7eda-e631-b5af-c86fbd9288c8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,18,8.25],"to":[6,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,14,27,13],"texture":2},"down":{"uv":[15,27,14,28],"texture":2}},"type":"cube","uuid":"a58762cd-efd8-b38d-b5c5-2a989a6f2430"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,18,4.75],"to":[11.5,18,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,2,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[26,16,24,15],"texture":2},"down":{"uv":[26,16,24,17],"texture":2}},"type":"cube","uuid":"8ef6fd96-cbc5-ff42-42a5-206272756884"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,18,4.25],"to":[11,18,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,19,27,18],"texture":2},"down":{"uv":[20,27,19,28],"texture":2}},"type":"cube","uuid":"4b0fea8b-997c-35d3-1f2d-e6d25729bc4a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,18,5.75],"to":[11,18,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,18,27,17],"texture":2},"down":{"uv":[19,27,18,28],"texture":2}},"type":"cube","uuid":"41106c0c-1f94-17c1-3276-abc5d69c7588"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,18,8.25],"to":[11,18,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,17,27,16],"texture":2},"down":{"uv":[18,27,17,28],"texture":2}},"type":"cube","uuid":"41b352af-0723-10d0-b84d-1e3780e7024d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,18,6.75],"to":[11,18,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,1,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[28,16,27,15],"texture":2},"down":{"uv":[17,27,16,28],"texture":2}},"type":"cube","uuid":"c1872c73-53b3-6ee6-dbbf-1b43e0bf2d2f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,18,7.25],"to":[11.5,18,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":2},"east":{"uv":[0,0,1,0],"texture":2},"south":{"uv":[0,0,2,0],"texture":2},"west":{"uv":[0,0,1,0],"texture":2},"up":{"uv":[26,15,24,14],"texture":2},"down":{"uv":[17,24,15,25],"texture":2}},"type":"cube","uuid":"7a5d8c10-7258-3ec2-e006-4850a30d323e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,19,6],"to":[8.5,21,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[10,21,11,23],"texture":3},"east":{"uv":[17,21,18,23],"texture":3},"south":{"uv":[21,17,22,19],"texture":3},"west":{"uv":[18,21,19,23],"texture":3},"up":{"uv":[23,4,22,3],"texture":3},"down":{"uv":[4,25,3,26],"texture":3}},"type":"cube","uuid":"5d68268c-5373-0b05-fb01-cd61b0ea4190"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,19,6.5],"to":[9,21,7],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,21,20,23],"texture":3},"east":{"uv":[21,19,22,21],"texture":3},"south":{"uv":[21,21,22,23],"texture":3},"west":{"uv":[5,22,6,24],"texture":3},"up":{"uv":[4,27,3,26],"texture":3},"down":{"uv":[5,26,4,27],"texture":3}},"type":"cube","uuid":"c727a53f-2edd-2ed5-ca2f-ef0e6044a94c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,19,7],"to":[9.5,21,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[6,22,7,24],"texture":3},"east":{"uv":[22,6,23,8],"texture":3},"south":{"uv":[7,22,8,24],"texture":3},"west":{"uv":[8,22,9,24],"texture":3},"up":{"uv":[6,27,5,26],"texture":3},"down":{"uv":[7,26,6,27],"texture":3}},"type":"cube","uuid":"415e9c62-4f95-b6ae-ee6d-0be6271b7a0a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,19,8],"to":[9,21,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[22,8,23,10],"texture":3},"east":{"uv":[11,22,12,24],"texture":3},"south":{"uv":[12,22,13,24],"texture":3},"west":{"uv":[13,22,14,24],"texture":3},"up":{"uv":[8,27,7,26],"texture":3},"down":{"uv":[27,7,26,8],"texture":3}},"type":"cube","uuid":"cf989dad-9f8b-2eda-503a-44b382fc3c3f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,19,6.5],"to":[7.5,21,7],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,22,15,24],"texture":3},"east":{"uv":[15,22,16,24],"texture":3},"south":{"uv":[16,22,17,24],"texture":3},"west":{"uv":[22,17,23,19],"texture":3},"up":{"uv":[9,27,8,26],"texture":3},"down":{"uv":[10,26,9,27],"texture":3}},"type":"cube","uuid":"19190e0c-52e2-3486-cf86-1148d839f536"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,19,7],"to":[7,21,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[22,19,23,21],"texture":3},"east":{"uv":[20,22,21,24],"texture":3},"south":{"uv":[22,21,23,23],"texture":3},"west":{"uv":[23,0,24,2],"texture":3},"up":{"uv":[11,27,10,26],"texture":3},"down":{"uv":[12,26,11,27],"texture":3}},"type":"cube","uuid":"8693c878-87f4-48b7-8a9b-cc74fd5814b3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,19,8],"to":[7.5,21,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[23,2,24,4],"texture":3},"east":{"uv":[23,6,24,8],"texture":3},"south":{"uv":[23,8,24,10],"texture":3},"west":{"uv":[10,23,11,25],"texture":3},"up":{"uv":[13,27,12,26],"texture":3},"down":{"uv":[27,12,26,13],"texture":3}},"type":"cube","uuid":"5d315c86-e5dc-03a1-c6f6-2dc2265db845"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,19,8.5],"to":[8.5,21,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[23,16,24,18],"texture":3},"east":{"uv":[17,23,18,25],"texture":3},"south":{"uv":[18,23,19,25],"texture":3},"west":{"uv":[23,18,24,20],"texture":3},"up":{"uv":[14,27,13,26],"texture":3},"down":{"uv":[27,13,26,14],"texture":3}},"type":"cube","uuid":"5e956acb-2658-264f-74b5-686734647b4f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,19,9.5],"to":[8.25,20,10],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15,26,16,27],"texture":3},"east":{"uv":[26,15,27,16],"texture":3},"south":{"uv":[16,26,17,27],"texture":3},"west":{"uv":[26,16,27,17],"texture":3},"up":{"uv":[18,27,17,26],"texture":3},"down":{"uv":[27,17,26,18],"texture":3}},"type":"cube","uuid":"dc63c3f7-1b6d-36fc-7de6-ecf46e5dcec1"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,19,9],"to":[8.25,20.5,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,23,20,25],"texture":3},"east":{"uv":[23,20,24,22],"texture":3},"south":{"uv":[21,23,22,25],"texture":3},"west":{"uv":[22,23,23,25],"texture":3},"up":{"uv":[15,27,14,26],"texture":3},"down":{"uv":[27,14,26,15],"texture":3}},"type":"cube","uuid":"93932a8b-a7d4-0b61-2382-d64daf444049"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,20,5.5],"to":[8.25,22,6],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[23,22,24,24],"texture":3},"east":{"uv":[0,24,1,26],"texture":3},"south":{"uv":[24,0,25,2],"texture":3},"west":{"uv":[1,24,2,26],"texture":3},"up":{"uv":[25,27,24,26],"texture":3},"down":{"uv":[27,24,26,25],"texture":3}},"type":"cube","uuid":"e61acc4d-3983-e18a-91e3-15afb17a46fc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,19,5.5],"to":[8.25,20,6],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[18,26,19,27],"texture":3},"east":{"uv":[26,18,27,19],"texture":3},"south":{"uv":[19,26,20,27],"texture":3},"west":{"uv":[26,19,27,20],"texture":3},"up":{"uv":[21,27,20,26],"texture":3},"down":{"uv":[27,20,26,21],"texture":3}},"type":"cube","uuid":"a3bc3128-5f51-8585-53fc-3dd405510488"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,19,5],"to":[8.25,19.5,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[21,26,22,27],"texture":3},"east":{"uv":[26,21,27,22],"texture":3},"south":{"uv":[22,26,23,27],"texture":3},"west":{"uv":[26,22,27,23],"texture":3},"up":{"uv":[24,27,23,26],"texture":3},"down":{"uv":[27,23,26,24],"texture":3}},"type":"cube","uuid":"be45b3e9-f965-b177-0fbe-40070c25ebc3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,22,3.5],"to":[8.25,22.5,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[25,26,26,27],"texture":3},"east":{"uv":[23,4,25,5],"texture":3},"south":{"uv":[26,25,27,26],"texture":3},"west":{"uv":[2,24,4,25],"texture":3},"up":{"uv":[25,4,24,2],"texture":3},"down":{"uv":[5,24,4,26],"texture":3}},"type":"cube","uuid":"9bdea789-37a8-a2d2-483a-3ec3ec275be6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,20,3],"to":[8.25,22,3.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[5,24,6,26],"texture":3},"east":{"uv":[24,5,25,7],"texture":3},"south":{"uv":[6,24,7,26],"texture":3},"west":{"uv":[7,24,8,26],"texture":3},"up":{"uv":[27,27,26,26],"texture":3},"down":{"uv":[1,27,0,28],"texture":3}},"type":"cube","uuid":"638aee7e-2abb-d41b-5637-bf96c96dc7e8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,19.5,3.5],"to":[8.25,20,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[1,27,2,28],"texture":3},"east":{"uv":[24,7,26,8],"texture":3},"south":{"uv":[2,27,3,28],"texture":3},"west":{"uv":[8,24,10,25],"texture":3},"up":{"uv":[25,10,24,8],"texture":3},"down":{"uv":[25,10,24,12],"texture":3}},"type":"cube","uuid":"09710376-d077-9d7f-9910-9052ea3a180e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.900000000000001,21.5,5],"to":[8.100000000000001,22,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,2,28,3],"texture":3},"east":{"uv":[3,27,4,28],"texture":3},"south":{"uv":[27,3,28,4],"texture":3},"west":{"uv":[4,27,5,28],"texture":3},"up":{"uv":[28,5,27,4],"texture":3},"down":{"uv":[6,27,5,28],"texture":3}},"type":"cube","uuid":"8e706f92-71ef-9034-a356-3eb7a54ecbb9"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.9,21.25,4.5],"to":[8.1,21.75,5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,5,28,6],"texture":3},"east":{"uv":[6,27,7,28],"texture":3},"south":{"uv":[27,6,28,7],"texture":3},"west":{"uv":[7,27,8,28],"texture":3},"up":{"uv":[28,8,27,7],"texture":3},"down":{"uv":[9,27,8,28],"texture":3}},"type":"cube","uuid":"ae31f797-d653-c6dd-5d12-0b1acad3bbcc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.900000000000001,21,4],"to":[8.100000000000001,21.5,4.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,8,28,9],"texture":3},"east":{"uv":[9,27,10,28],"texture":3},"south":{"uv":[27,9,28,10],"texture":3},"west":{"uv":[10,27,11,28],"texture":3},"up":{"uv":[28,11,27,10],"texture":3},"down":{"uv":[12,27,11,28],"texture":3}},"type":"cube","uuid":"b4c4fa39-82c2-f5ff-6257-4af422a84513"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,21,6],"to":[8.5,22,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[9,17,10,18],"texture":0},"east":{"uv":[10,17,11,18],"texture":0},"south":{"uv":[17,10,18,11],"texture":0},"west":{"uv":[11,17,12,18],"texture":0},"up":{"uv":[13,18,12,17],"texture":0},"down":{"uv":[18,12,17,13],"texture":0}},"type":"cube","uuid":"6424a059-a163-8d30-e08f-d502485e0578"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,21,6.5],"to":[9,22,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,13,18,14],"texture":0},"east":{"uv":[4,13,6,14],"texture":0},"south":{"uv":[14,17,15,18],"texture":0},"west":{"uv":[13,5,15,6],"texture":0},"up":{"uv":[7,15,6,13],"texture":0},"down":{"uv":[8,13,7,15],"texture":0}},"type":"cube","uuid":"4d6f6b70-6bd0-6a8b-5e3b-153bddcb4044"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,21,8.5],"to":[8.5,22,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[15,17,16,18],"texture":0},"east":{"uv":[17,15,18,16],"texture":0},"south":{"uv":[17,16,18,17],"texture":0},"west":{"uv":[17,17,18,18],"texture":0},"up":{"uv":[1,19,0,18],"texture":0},"down":{"uv":[19,0,18,1],"texture":0}},"type":"cube","uuid":"e12eae89-aca5-3660-3e12-c0cfc7529cfe"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,21,6.5],"to":[7.5,22,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[1,18,2,19],"texture":0},"east":{"uv":[13,7,15,8],"texture":0},"south":{"uv":[18,1,19,2],"texture":0},"west":{"uv":[13,8,15,9],"texture":0},"up":{"uv":[10,15,9,13],"texture":0},"down":{"uv":[14,9,13,11],"texture":0}},"type":"cube","uuid":"42af1794-60f5-0671-1168-5ea76a075af9"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,22,6],"to":[9,23,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[7,18,8,19],"texture":0},"east":{"uv":[13,11,15,12],"texture":0},"south":{"uv":[18,7,19,8],"texture":0},"west":{"uv":[13,12,15,13],"texture":0},"up":{"uv":[14,15,13,13],"texture":0},"down":{"uv":[1,14,0,16],"texture":0}},"type":"cube","uuid":"8ef58fc6-c903-be22-4511-20efdd3cc293"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,22,8],"to":[8.5,23,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[8,18,9,19],"texture":0},"east":{"uv":[18,8,19,9],"texture":0},"south":{"uv":[9,18,10,19],"texture":0},"west":{"uv":[18,9,19,10],"texture":0},"up":{"uv":[11,19,10,18],"texture":0},"down":{"uv":[19,10,18,11],"texture":0}},"type":"cube","uuid":"56809c45-e108-a8b0-8f0d-3e1b0c75b61f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,22,6],"to":[7.5,23,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[11,18,12,19],"texture":0},"east":{"uv":[14,2,16,3],"texture":0},"south":{"uv":[18,11,19,12],"texture":0},"west":{"uv":[14,3,16,4],"texture":0},"up":{"uv":[2,16,1,14],"texture":0},"down":{"uv":[5,14,4,16],"texture":0}},"type":"cube","uuid":"accb2157-32d3-5fde-e24e-f0d5b2557333"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,22,5.5],"to":[8.5,23,6],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[2,18,3,19],"texture":0},"east":{"uv":[18,2,19,3],"texture":0},"south":{"uv":[3,18,4,19],"texture":0},"west":{"uv":[18,5,19,6],"texture":0},"up":{"uv":[7,19,6,18],"texture":0},"down":{"uv":[19,6,18,7],"texture":0}},"type":"cube","uuid":"7d95444e-7c5d-5d27-f967-cc50ffd086ac"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,23,5],"to":[8.5,24,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,6,20,7],"texture":0},"east":{"uv":[7,19,8,20],"texture":0},"south":{"uv":[19,7,20,8],"texture":0},"west":{"uv":[8,19,9,20],"texture":0},"up":{"uv":[20,9,19,8],"texture":0},"down":{"uv":[10,19,9,20],"texture":0}},"type":"cube","uuid":"fb8c4e95-5f7a-6e03-fc07-dd26dff7da82"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,23,5.5],"to":[9,24,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,5,20,6],"texture":0},"east":{"uv":[15,8,17,9],"texture":0},"south":{"uv":[6,19,7,20],"texture":0},"west":{"uv":[10,15,12,16],"texture":0},"up":{"uv":[16,13,15,11],"texture":0},"down":{"uv":[13,15,12,17],"texture":0}},"type":"cube","uuid":"60bf1dce-b6b9-3ee7-a6e7-b43b9e67c8ee"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,23,7.5],"to":[8.5,24,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,2,20,3],"texture":0},"east":{"uv":[3,19,4,20],"texture":0},"south":{"uv":[19,3,20,4],"texture":0},"west":{"uv":[4,19,5,20],"texture":0},"up":{"uv":[20,5,19,4],"texture":0},"down":{"uv":[6,19,5,20],"texture":0}},"type":"cube","uuid":"1a49c0d1-add6-f635-aefe-980cb5f4d4ab"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,23,5.5],"to":[7.5,24,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,1,20,2],"texture":0},"east":{"uv":[15,6,17,7],"texture":0},"south":{"uv":[2,19,3,20],"texture":0},"west":{"uv":[15,7,17,8],"texture":0},"up":{"uv":[8,17,7,15],"texture":0},"down":{"uv":[10,15,9,17],"texture":0}},"type":"cube","uuid":"649f6333-09c3-1fd7-2b91-a3fcbd449824"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,24,4.5],"to":[8.5,25,5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,18,18,19],"texture":0},"east":{"uv":[18,17,19,18],"texture":0},"south":{"uv":[18,18,19,19],"texture":0},"west":{"uv":[0,19,1,20],"texture":0},"up":{"uv":[20,1,19,0],"texture":0},"down":{"uv":[2,19,1,20],"texture":0}},"type":"cube","uuid":"2b00e9ea-7e14-cf30-32c6-d1456d88ec7a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,24,5],"to":[9,25,7],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,18,17,19],"texture":0},"east":{"uv":[14,13,16,14],"texture":0},"south":{"uv":[18,16,19,17],"texture":0},"west":{"uv":[14,14,16,15],"texture":0},"up":{"uv":[16,6,15,4],"texture":0},"down":{"uv":[7,15,6,17],"texture":0}},"type":"cube","uuid":"c5bb2e34-5ac0-18e9-b112-3f1f214fa0a3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,24,7],"to":[8.5,25,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13,18,14,19],"texture":0},"east":{"uv":[18,13,19,14],"texture":0},"south":{"uv":[14,18,15,19],"texture":0},"west":{"uv":[18,14,19,15],"texture":0},"up":{"uv":[16,19,15,18],"texture":0},"down":{"uv":[19,15,18,16],"texture":0}},"type":"cube","uuid":"2164b1b1-3dcc-ccab-bbda-b03ff1f1aa19"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,24,5],"to":[7.5,25,7],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[12,18,13,19],"texture":0},"east":{"uv":[14,9,16,10],"texture":0},"south":{"uv":[18,12,19,13],"texture":0},"west":{"uv":[14,10,16,11],"texture":0},"up":{"uv":[6,16,5,14],"texture":0},"down":{"uv":[9,14,8,16],"texture":0}},"type":"cube","uuid":"bc2c9857-e694-f0dd-32b1-21fe612aedf2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,25,4.5],"to":[7.5,27,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,12,20,13],"texture":0},"east":{"uv":[11,3,14,4],"texture":0},"south":{"uv":[13,19,14,20],"texture":0},"west":{"uv":[10,11,13,12],"texture":0},"up":{"uv":[9,14,8,11],"texture":0},"down":{"uv":[11,12,10,15],"texture":0}},"type":"cube","uuid":"4b24fb8f-4565-bde1-0c9a-3bab144f8908"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,25,5.5],"to":[8.5,27,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,11,20,12],"texture":0},"east":{"uv":[10,10,13,11],"texture":0},"south":{"uv":[12,19,13,20],"texture":0},"west":{"uv":[11,2,14,3],"texture":0},"up":{"uv":[1,14,0,11],"texture":0},"down":{"uv":[2,11,1,14],"texture":0}},"type":"cube","uuid":"2909e86f-a25e-175d-7f5c-3b74fb50d07e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,25,4.5],"to":[9,27,7.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,10,20,11],"texture":0},"east":{"uv":[10,5,13,6],"texture":0},"south":{"uv":[11,19,12,20],"texture":0},"west":{"uv":[10,9,13,10],"texture":0},"up":{"uv":[7,13,6,10],"texture":0},"down":{"uv":[8,10,7,13],"texture":0}},"type":"cube","uuid":"5f1106bc-382f-0ea6-f390-6853e12722b8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,25,4],"to":[8.5,27,5.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,9,20,10],"texture":0},"east":{"uv":[13,15,15,16],"texture":0},"south":{"uv":[10,19,11,20],"texture":0},"west":{"uv":[15,15,17,16],"texture":0},"up":{"uv":[1,18,0,16],"texture":0},"down":{"uv":[17,0,16,2],"texture":0}},"type":"cube","uuid":"18afe468-da8a-c8f7-b866-6a6ffb9f42fd"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,27,4.5],"to":[8.5,28,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,16,20,17],"texture":0},"east":{"uv":[4,16,6,17],"texture":0},"south":{"uv":[17,19,18,20],"texture":0},"west":{"uv":[16,5,18,6],"texture":0},"up":{"uv":[9,18,8,16],"texture":0},"down":{"uv":[17,9,16,11],"texture":0}},"type":"cube","uuid":"55e0c36e-4193-1385-e0a2-946852933a16"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,27,5],"to":[9,28,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,15,20,16],"texture":0},"east":{"uv":[5,1,9,2],"texture":0},"south":{"uv":[16,19,17,20],"texture":0},"west":{"uv":[6,5,10,6],"texture":0},"up":{"uv":[7,10,6,6],"texture":0},"down":{"uv":[1,7,0,11],"texture":0}},"type":"cube","uuid":"f2a0b2d2-2dc3-3553-ca90-3e7fce3d4fd5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,27,7],"to":[8.5,28,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,14,20,15],"texture":0},"east":{"uv":[1,16,3,17],"texture":0},"south":{"uv":[15,19,16,20],"texture":0},"west":{"uv":[16,2,18,3],"texture":0},"up":{"uv":[4,18,3,16],"texture":0},"down":{"uv":[17,3,16,5],"texture":0}},"type":"cube","uuid":"2ec07916-970d-113d-c707-3df421a02abe"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,27,5],"to":[7.5,28,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,13,20,14],"texture":0},"east":{"uv":[4,4,8,5],"texture":0},"south":{"uv":[14,19,15,20],"texture":0},"west":{"uv":[5,0,9,1],"texture":0},"up":{"uv":[5,9,4,5],"texture":0},"down":{"uv":[6,5,5,9],"texture":0}},"type":"cube","uuid":"1afd9464-d386-c92d-e1a2-0c61bdb60cf6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,28,4.5],"to":[8.5,29,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[1,20,2,21],"texture":0},"east":{"uv":[14,16,16,17],"texture":0},"south":{"uv":[20,1,21,2],"texture":0},"west":{"uv":[16,14,18,15],"texture":0},"up":{"uv":[17,18,16,16],"texture":0},"down":{"uv":[18,0,17,2],"texture":0}},"type":"cube","uuid":"c6acfb5a-50c0-c139-92a3-4460cb815359"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,28,5],"to":[9,29,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,20,1,21],"texture":0},"east":{"uv":[8,4,12,5],"texture":0},"south":{"uv":[20,0,21,1],"texture":0},"west":{"uv":[8,6,12,7],"texture":0},"up":{"uv":[9,11,8,7],"texture":0},"down":{"uv":[3,9,2,13],"texture":0}},"type":"cube","uuid":"f59cdd49-f0e1-d883-8bec-ed994e9d5fc8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,28,7],"to":[8.5,29,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,18,20,19],"texture":0},"east":{"uv":[10,16,12,17],"texture":0},"south":{"uv":[19,19,20,20],"texture":0},"west":{"uv":[16,11,18,12],"texture":0},"up":{"uv":[17,14,16,12],"texture":0},"down":{"uv":[14,16,13,18],"texture":0}},"type":"cube","uuid":"d85d8105-10f7-2ce4-73b4-60ec3ea48eb8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,28,5],"to":[7.5,29,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[19,17,20,18],"texture":0},"east":{"uv":[7,2,11,3],"texture":0},"south":{"uv":[18,19,19,20],"texture":0},"west":{"uv":[7,3,11,4],"texture":0},"up":{"uv":[2,11,1,7],"texture":0},"down":{"uv":[8,6,7,10],"texture":0}},"type":"cube","uuid":"da83b2e7-97c3-5e76-35e8-08612a812fda"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,29,4.5],"to":[8.5,30,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[5,20,6,21],"texture":0},"east":{"uv":[17,4,19,5],"texture":0},"south":{"uv":[20,5,21,6],"texture":0},"west":{"uv":[6,17,8,18],"texture":0},"up":{"uv":[18,8,17,6],"texture":0},"down":{"uv":[18,8,17,10],"texture":0}},"type":"cube","uuid":"cdd15042-9cf0-92c1-f24c-71527c20a6ee"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,29,5],"to":[9,30,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[4,20,5,21],"texture":0},"east":{"uv":[9,7,13,8],"texture":0},"south":{"uv":[20,4,21,5],"texture":0},"west":{"uv":[9,8,13,9],"texture":0},"up":{"uv":[6,13,5,9],"texture":0},"down":{"uv":[10,9,9,13],"texture":0}},"type":"cube","uuid":"47830dc1-6389-2780-fb61-ea7bb61bf9b4"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,29,7],"to":[8.5,30,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[3,20,4,21],"texture":0},"east":{"uv":[1,17,3,18],"texture":0},"south":{"uv":[20,3,21,4],"texture":0},"west":{"uv":[17,3,19,4],"texture":0},"up":{"uv":[5,19,4,17],"texture":0},"down":{"uv":[6,17,5,19],"texture":0}},"type":"cube","uuid":"6ea9654e-a865-99b5-bf67-266b8a898f3e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,29,5],"to":[7.5,30,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[2,20,3,21],"texture":0},"east":{"uv":[9,0,13,1],"texture":0},"south":{"uv":[20,2,21,3],"texture":0},"west":{"uv":[9,1,13,2],"texture":0},"up":{"uv":[4,13,3,9],"texture":0},"down":{"uv":[5,9,4,13],"texture":0}},"type":"cube","uuid":"1b5ce2db-b063-0929-9694-85602e4befdb"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,30.5,4.5],"to":[9,32,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[14,4,16,6],"texture":1},"east":{"uv":[4,4,14,6],"texture":1},"south":{"uv":[14,6,16,8],"texture":1},"west":{"uv":[4,6,14,8],"texture":1},"up":{"uv":[6,18,4,8],"texture":1},"down":{"uv":[8,8,6,18],"texture":1}},"type":"cube","uuid":"eff65476-38fd-97cc-1678-7f0eab58c796"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,30.5,4],"to":[8.5,32,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,16,2,18],"texture":1},"east":{"uv":[0,0,12,2],"texture":1},"south":{"uv":[2,16,4,18],"texture":1},"west":{"uv":[0,2,12,4],"texture":1},"up":{"uv":[2,16,0,4],"texture":1},"down":{"uv":[4,4,2,16],"texture":1}},"type":"cube","uuid":"76737977-c76f-a2f8-0238-c470c68716a1"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,30.5,4.5],"to":[7.5,32,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,4,18,6],"texture":1},"east":{"uv":[8,8,18,10],"texture":1},"south":{"uv":[16,6,18,8],"texture":1},"west":{"uv":[8,10,18,12],"texture":1},"up":{"uv":[10,22,8,12],"texture":1},"down":{"uv":[12,12,10,22],"texture":1}},"type":"cube","uuid":"a8fcc1f1-22ef-f521-13e4-e1a0f53a8cf4"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,2.5,4.75],"to":[7.5,3.5,5.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[26,28,27,29],"texture":3},"east":{"uv":[28,26,29,27],"texture":3},"south":{"uv":[27,28,28,29],"texture":3},"west":{"uv":[28,27,29,28],"texture":3},"up":{"uv":[29,29,28,28],"texture":3},"down":{"uv":[1,29,0,30],"texture":3}},"type":"cube","uuid":"b112a22b-67bd-fd74-576f-1c9b70b0f6b3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,2.5,5],"to":[7,3.5,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,0,30,1],"texture":3},"east":{"uv":[1,29,2,30],"texture":3},"south":{"uv":[29,1,30,2],"texture":3},"west":{"uv":[2,29,3,30],"texture":3},"up":{"uv":[30,3,29,2],"texture":3},"down":{"uv":[4,29,3,30],"texture":3}},"type":"cube","uuid":"1ba85fcc-9621-abb5-0d4b-15c285342cc0"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,2.5,5.5],"to":[6.5,3.5,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,3,30,4],"texture":3},"east":{"uv":[4,29,5,30],"texture":3},"south":{"uv":[29,4,30,5],"texture":3},"west":{"uv":[5,29,6,30],"texture":3},"up":{"uv":[30,6,29,5],"texture":3},"down":{"uv":[7,29,6,30],"texture":3}},"type":"cube","uuid":"4cebb813-02a0-2408-5170-1a3a8f2bade5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5.75,2.5,6],"to":[6.25,3.5,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,6,30,7],"texture":3},"east":{"uv":[7,29,8,30],"texture":3},"south":{"uv":[29,7,30,8],"texture":3},"west":{"uv":[8,29,9,30],"texture":3},"up":{"uv":[30,9,29,8],"texture":3},"down":{"uv":[10,29,9,30],"texture":3}},"type":"cube","uuid":"9ad0a987-a1b3-c747-8011-73f684882845"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5.5,2.5,6.5],"to":[6,3.5,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,9,30,10],"texture":3},"east":{"uv":[10,29,11,30],"texture":3},"south":{"uv":[29,10,30,11],"texture":3},"west":{"uv":[11,29,12,30],"texture":3},"up":{"uv":[30,12,29,11],"texture":3},"down":{"uv":[13,29,12,30],"texture":3}},"type":"cube","uuid":"c0d9bb1f-86cd-4264-5914-4e248b02d57b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5.75,2.5,7.5],"to":[6.25,3.5,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,24,30,25],"texture":3},"east":{"uv":[25,29,26,30],"texture":3},"south":{"uv":[29,25,30,26],"texture":3},"west":{"uv":[26,29,27,30],"texture":3},"up":{"uv":[30,27,29,26],"texture":3},"down":{"uv":[28,29,27,30],"texture":3}},"type":"cube","uuid":"46fda13b-6ce3-1f64-4aa0-8f59db38fa16"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,2.5,8],"to":[6.5,3.5,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,21,30,22],"texture":3},"east":{"uv":[22,29,23,30],"texture":3},"south":{"uv":[29,22,30,23],"texture":3},"west":{"uv":[23,29,24,30],"texture":3},"up":{"uv":[30,24,29,23],"texture":3},"down":{"uv":[25,29,24,30],"texture":3}},"type":"cube","uuid":"4ddf5aeb-2b76-26b4-f310-1f3c5601714f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,2.5,8.5],"to":[7,3.5,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,18,30,19],"texture":3},"east":{"uv":[19,29,20,30],"texture":3},"south":{"uv":[29,19,30,20],"texture":3},"west":{"uv":[20,29,21,30],"texture":3},"up":{"uv":[30,21,29,20],"texture":3},"down":{"uv":[22,29,21,30],"texture":3}},"type":"cube","uuid":"dc8e0212-efad-fd39-5e5f-e41ad8c8660b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,2.5,8.75],"to":[7.5,3.5,9.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,15,30,16],"texture":3},"east":{"uv":[16,29,17,30],"texture":3},"south":{"uv":[29,16,30,17],"texture":3},"west":{"uv":[17,29,18,30],"texture":3},"up":{"uv":[30,18,29,17],"texture":3},"down":{"uv":[19,29,18,30],"texture":3}},"type":"cube","uuid":"398fedba-b65c-ec22-ca51-acc2aeb80f50"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,2.5,9],"to":[8.5,3.5,10],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,12,30,13],"texture":3},"east":{"uv":[13,29,14,30],"texture":3},"south":{"uv":[29,13,30,14],"texture":3},"west":{"uv":[14,29,15,30],"texture":3},"up":{"uv":[30,15,29,14],"texture":3},"down":{"uv":[16,29,15,30],"texture":3}},"type":"cube","uuid":"3a4f573e-2c13-874c-86a3-c0ae32e7e72d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,2.5,8.75],"to":[9,3.5,9.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[10,30,11,31],"texture":3},"east":{"uv":[30,10,31,11],"texture":3},"south":{"uv":[11,30,12,31],"texture":3},"west":{"uv":[30,11,31,12],"texture":3},"up":{"uv":[13,31,12,30],"texture":3},"down":{"uv":[31,12,30,13],"texture":3}},"type":"cube","uuid":"f60d56c6-12de-1bfb-e629-de5c4d70e063"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,2.5,8.5],"to":[9.5,3.5,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[7,30,8,31],"texture":3},"east":{"uv":[30,7,31,8],"texture":3},"south":{"uv":[8,30,9,31],"texture":3},"west":{"uv":[30,8,31,9],"texture":3},"up":{"uv":[10,31,9,30],"texture":3},"down":{"uv":[31,9,30,10],"texture":3}},"type":"cube","uuid":"4d5f3d9c-e21c-bc09-89be-10296f0e9bca"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,2.5,8],"to":[10,3.5,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[4,30,5,31],"texture":3},"east":{"uv":[30,4,31,5],"texture":3},"south":{"uv":[5,30,6,31],"texture":3},"west":{"uv":[30,5,31,6],"texture":3},"up":{"uv":[7,31,6,30],"texture":3},"down":{"uv":[31,6,30,7],"texture":3}},"type":"cube","uuid":"469f1a22-2158-7cef-03e1-856a969ed655"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.75,2.5,7.5],"to":[10.25,3.5,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[1,30,2,31],"texture":3},"east":{"uv":[30,1,31,2],"texture":3},"south":{"uv":[2,30,3,31],"texture":3},"west":{"uv":[30,2,31,3],"texture":3},"up":{"uv":[4,31,3,30],"texture":3},"down":{"uv":[31,3,30,4],"texture":3}},"type":"cube","uuid":"f1e26158-beca-80b6-65fd-1ab24f2fdc67"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,2.5,6.5],"to":[10.5,3.5,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[29,27,30,28],"texture":3},"east":{"uv":[28,29,29,30],"texture":3},"south":{"uv":[29,28,30,29],"texture":3},"west":{"uv":[29,29,30,30],"texture":3},"up":{"uv":[1,31,0,30],"texture":3},"down":{"uv":[31,0,30,1],"texture":3}},"type":"cube","uuid":"46e8f018-a4e2-2fd7-14aa-dbae5c512f0e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.75,2.5,6],"to":[10.25,3.5,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[22,30,23,31],"texture":3},"east":{"uv":[30,22,31,23],"texture":3},"south":{"uv":[23,30,24,31],"texture":3},"west":{"uv":[30,23,31,24],"texture":3},"up":{"uv":[25,31,24,30],"texture":3},"down":{"uv":[31,24,30,25],"texture":3}},"type":"cube","uuid":"1d238ecf-7ec6-ad42-d017-ee04512de1ec"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,2.5,5.5],"to":[10,3.5,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[19,30,20,31],"texture":3},"east":{"uv":[30,19,31,20],"texture":3},"south":{"uv":[20,30,21,31],"texture":3},"west":{"uv":[30,20,31,21],"texture":3},"up":{"uv":[22,31,21,30],"texture":3},"down":{"uv":[31,21,30,22],"texture":3}},"type":"cube","uuid":"0b31e7c9-1210-7601-14de-504193d38537"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,2.5,5],"to":[9.5,3.5,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[16,30,17,31],"texture":3},"east":{"uv":[30,16,31,17],"texture":3},"south":{"uv":[17,30,18,31],"texture":3},"west":{"uv":[30,17,31,18],"texture":3},"up":{"uv":[19,31,18,30],"texture":3},"down":{"uv":[31,18,30,19],"texture":3}},"type":"cube","uuid":"6a3502ad-094f-6aaa-7998-90ca9acadfe9"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,2.5,4.75],"to":[9,3.5,5.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[13,30,14,31],"texture":3},"east":{"uv":[30,13,31,14],"texture":3},"south":{"uv":[14,30,15,31],"texture":3},"west":{"uv":[30,14,31,15],"texture":3},"up":{"uv":[16,31,15,30],"texture":3},"down":{"uv":[31,15,30,16],"texture":3}},"type":"cube","uuid":"e8ab0327-6e26-0958-4ee8-3d5cb5f69a2a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,2.9,9.75],"to":[7.5,3.1,11.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[25,30,26,31],"texture":3},"east":{"uv":[30,25,31,26],"texture":3},"south":{"uv":[26,30,27,31],"texture":3},"west":{"uv":[30,26,31,27],"texture":3},"up":{"uv":[28,31,27,30],"texture":3},"down":{"uv":[31,27,30,28],"texture":3}},"type":"cube","uuid":"a76c8bb7-397e-cfa8-0a87-5bb6329e9138"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,2.9,9.75],"to":[9,3.1,11.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[28,30,29,31],"texture":3},"east":{"uv":[30,28,31,29],"texture":3},"south":{"uv":[29,30,30,31],"texture":3},"west":{"uv":[30,29,31,30],"texture":3},"up":{"uv":[31,31,30,30],"texture":3},"down":{"uv":[1,31,0,32],"texture":3}},"type":"cube","uuid":"89688973-2638-217c-b6ac-0754d36f00f4"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.75,2.85,11.25],"to":[9.25,3.15,11.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[21,5,24,6],"texture":3},"east":{"uv":[31,0,32,1],"texture":3},"south":{"uv":[21,10,24,11],"texture":3},"west":{"uv":[1,31,2,32],"texture":3},"up":{"uv":[24,12,21,11],"texture":3},"down":{"uv":[24,12,21,13],"texture":3}},"type":"cube","uuid":"9459550e-0025-920d-9efb-72ddd07dfe2f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,2.9,11.75],"to":[7.5,3.15,13.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[31,5,32,6],"texture":3},"east":{"uv":[6,31,7,32],"texture":3},"south":{"uv":[31,6,32,7],"texture":3},"west":{"uv":[7,31,8,32],"texture":3},"up":{"uv":[32,8,31,7],"texture":3},"down":{"uv":[9,31,8,32],"texture":3}},"type":"cube","uuid":"6bb63954-2186-d68a-52a4-cfe9ae8d3638"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,2.9,11.75],"to":[9,3.15,13.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[31,2,32,3],"texture":3},"east":{"uv":[3,31,4,32],"texture":3},"south":{"uv":[31,3,32,4],"texture":3},"west":{"uv":[4,31,5,32],"texture":3},"up":{"uv":[32,5,31,4],"texture":3},"down":{"uv":[6,31,5,32],"texture":3}},"type":"cube","uuid":"b211ff1b-e91f-194e-52b4-ec2a9e5d7f0b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.75,2.8,13.25],"to":[9.25,3.1999999999999997,13.75],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[21,13,24,14],"texture":3},"east":{"uv":[31,1,32,2],"texture":3},"south":{"uv":[14,21,17,22],"texture":3},"west":{"uv":[2,31,3,32],"texture":3},"up":{"uv":[24,15,21,14],"texture":3},"down":{"uv":[24,15,21,16],"texture":3}},"type":"cube","uuid":"1eff1d87-19c4-f670-34f7-e59751413f39"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,14,4.75],"to":[6.5,14,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[27,7,25,6],"texture":3},"down":{"uv":[10,25,8,26],"texture":3}},"type":"cube","uuid":"d89a4343-f9dd-c81e-20f4-119992e24678"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,4.25],"to":[6,14,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[11,29,10,28],"texture":3},"down":{"uv":[29,10,28,11],"texture":3}},"type":"cube","uuid":"7eb9caba-bd0a-7f14-74e7-78e087087924"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,5.75],"to":[6,14,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[12,29,11,28],"texture":3},"down":{"uv":[29,11,28,12],"texture":3}},"type":"cube","uuid":"7f264e7a-2434-c8f2-e410-4fe1f7470821"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,8.25],"to":[6,14,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[13,29,12,28],"texture":3},"down":{"uv":[29,12,28,13],"texture":3}},"type":"cube","uuid":"49ac18f3-f5e0-333d-2a51-02a20b2a9bb3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,6.75],"to":[6,14,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[14,29,13,28],"texture":3},"down":{"uv":[29,13,28,14],"texture":3}},"type":"cube","uuid":"c6f0b2f3-78b8-0ff8-a467-ee6032737f18"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,14,7.25],"to":[6.5,14,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[27,9,25,8],"texture":3},"down":{"uv":[27,9,25,10],"texture":3}},"type":"cube","uuid":"e40f243e-b8d3-7a87-36a1-1cb1cbec6e74"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,14,7.25],"to":[11.5,14,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[12,26,10,25],"texture":3},"down":{"uv":[27,10,25,11],"texture":3}},"type":"cube","uuid":"c5115ca2-f67e-0ed5-d966-f1ca887d28bc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,6.75],"to":[11,14,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[15,29,14,28],"texture":3},"down":{"uv":[29,14,28,15],"texture":3}},"type":"cube","uuid":"81279b7f-cbd4-cd4c-dd71-9ec2453ea785"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,8.25],"to":[11,14,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[16,29,15,28],"texture":3},"down":{"uv":[29,15,28,16],"texture":3}},"type":"cube","uuid":"01ad688f-5df9-be54-c306-ad21805c48a2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,5.75],"to":[11,14,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[17,29,16,28],"texture":3},"down":{"uv":[29,16,28,17],"texture":3}},"type":"cube","uuid":"ac0e565f-1959-a09f-7e4e-2f4d776a4b24"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,4.25],"to":[11,14,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[18,29,17,28],"texture":3},"down":{"uv":[29,17,28,18],"texture":3}},"type":"cube","uuid":"d4269ced-c53d-651c-be11-fe8adce7481d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,14,4.75],"to":[11.5,14,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[27,12,25,11],"texture":3},"down":{"uv":[14,25,12,26],"texture":3}},"type":"cube","uuid":"4bcd491f-b92d-3e11-5dcc-59d6e9b91b01"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,30,4],"to":[8.5,31.5,6.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[16,12,18,14],"texture":1},"east":{"uv":[12,0,18,2],"texture":1},"south":{"uv":[16,14,18,16],"texture":1},"west":{"uv":[12,2,18,4],"texture":1},"up":{"uv":[14,18,12,12],"texture":1},"down":{"uv":[16,12,14,18],"texture":1}},"type":"cube","uuid":"22c124a8-6709-297e-8322-0e2364dbc330"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,30,4.5],"to":[9,30.5,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[8,20,9,21],"texture":0},"east":{"uv":[2,2,7,3],"texture":0},"south":{"uv":[20,8,21,9],"texture":0},"west":{"uv":[2,3,7,4],"texture":0},"up":{"uv":[3,9,2,4],"texture":0},"down":{"uv":[4,4,3,9],"texture":0}},"type":"cube","uuid":"96d4d03e-2c63-5c11-d9ca-9aa70d663e86"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,30,6.5],"to":[8.5,30.5,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[7,20,8,21],"texture":0},"east":{"uv":[12,4,15,5],"texture":0},"south":{"uv":[20,7,21,8],"texture":0},"west":{"uv":[12,6,15,7],"texture":0},"up":{"uv":[12,15,11,12],"texture":0},"down":{"uv":[13,12,12,15],"texture":0}},"type":"cube","uuid":"8cac6dba-2c7d-bb9f-6573-85260bd24efc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,30,4.5],"to":[7.5,30.5,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[6,20,7,21],"texture":0},"east":{"uv":[0,0,5,1],"texture":0},"south":{"uv":[20,6,21,7],"texture":0},"west":{"uv":[0,1,5,2],"texture":0},"up":{"uv":[1,7,0,2],"texture":0},"down":{"uv":[2,2,1,7],"texture":0}},"type":"cube","uuid":"eb454a04-09a7-d8e9-6ff4-4d6e79e9e9c6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.25,13,5],"to":[5.25,14,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,19,28,20],"texture":2},"east":{"uv":[11,18,14,19],"texture":2},"south":{"uv":[20,27,21,28],"texture":2},"west":{"uv":[19,3,22,4],"texture":2},"up":{"uv":[16,21,15,18],"texture":2},"down":{"uv":[12,19,11,22],"texture":2}},"type":"cube","uuid":"8f7e7434-9e21-fca2-0f6c-e5d0481e8b38"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5.25,13,4],"to":[6.5,14,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,20,28,21],"texture":2},"east":{"uv":[16,7,21,8],"texture":2},"south":{"uv":[21,27,22,28],"texture":2},"west":{"uv":[16,8,21,9],"texture":2},"up":{"uv":[1,21,0,16],"texture":2},"down":{"uv":[2,16,1,21],"texture":2}},"type":"cube","uuid":"5bbe6ea6-00c8-d820-8169-3f5187c31144"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,13,2.75],"to":[9.5,14,10.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,19,20,20],"texture":2},"east":{"uv":[11,0,19,1],"texture":2},"south":{"uv":[20,4,23,5],"texture":2},"west":{"uv":[11,1,19,2],"texture":2},"up":{"uv":[3,16,0,8],"texture":2},"down":{"uv":[11,0,8,8],"texture":2}},"type":"cube","uuid":"4dff0fb7-964b-38a9-21f4-33a432e03f63"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,13,4],"to":[10.75,14,9],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,21,28,22],"texture":2},"east":{"uv":[16,9,21,10],"texture":2},"south":{"uv":[22,27,23,28],"texture":2},"west":{"uv":[16,10,21,11],"texture":2},"up":{"uv":[3,21,2,16],"texture":2},"down":{"uv":[17,11,16,16],"texture":2}},"type":"cube","uuid":"534a0293-ac8b-7cae-b247-68bd0250dc7c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10.75,13,5],"to":[11.75,14,8],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,22,28,23],"texture":2},"east":{"uv":[20,16,23,17],"texture":2},"south":{"uv":[23,27,24,28],"texture":2},"west":{"uv":[17,20,20,21],"texture":2},"up":{"uv":[13,22,12,19],"texture":2},"down":{"uv":[14,19,13,22],"texture":2}},"type":"cube","uuid":"2acd481b-cd8a-f385-84ec-08e1a436da00"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,14,4.75],"to":[11.5,14,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[28,1,26,0],"texture":3},"down":{"uv":[28,1,26,2],"texture":3}},"type":"cube","uuid":"2759333f-661a-61e7-e906-1dce8e29d5b0"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,4.25],"to":[11,14,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[26,29,25,28],"texture":3},"down":{"uv":[29,25,28,26],"texture":3}},"type":"cube","uuid":"82958236-c2c9-a329-1218-4a4f05879f9b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,5.75],"to":[11,14,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[25,29,24,28],"texture":3},"down":{"uv":[29,24,28,25],"texture":3}},"type":"cube","uuid":"1a9abfee-dc1b-e94a-9d64-36ca247144e0"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,8.25],"to":[11,14,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[24,29,23,28],"texture":3},"down":{"uv":[29,23,28,24],"texture":3}},"type":"cube","uuid":"f88ac62a-9ce4-34e4-7ca2-c68f219b85cb"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,14,6.75],"to":[11,14,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[23,29,22,28],"texture":3},"down":{"uv":[29,22,28,23],"texture":3}},"type":"cube","uuid":"c1bc4926-0e84-14a1-d77e-fcdbdd7a7aa4"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,14,7.25],"to":[11.5,14,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[26,26,24,25],"texture":3},"down":{"uv":[2,26,0,27],"texture":3}},"type":"cube","uuid":"078bf81b-52bf-14f4-dd4a-53d029b0dc63"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,14,7.25],"to":[6.5,14,8.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[20,26,18,25],"texture":3},"down":{"uv":[23,25,21,26],"texture":3}},"type":"cube","uuid":"6a834756-a47c-ecb3-e8d3-2a9420899df1"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,6.75],"to":[6,14,7.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[22,29,21,28],"texture":3},"down":{"uv":[29,21,28,22],"texture":3}},"type":"cube","uuid":"ec83b6c1-d6bc-b7a9-cf5c-a0273479bb63"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,8.25],"to":[6,14,8.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[21,29,20,28],"texture":3},"down":{"uv":[29,20,28,21],"texture":3}},"type":"cube","uuid":"549fe4f3-6839-9932-b462-d61c2b2c0bc2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,5.75],"to":[6,14,6.25],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[20,29,19,28],"texture":3},"down":{"uv":[29,19,28,20],"texture":3}},"type":"cube","uuid":"5b45c39f-73b8-db01-ceff-1d7ff191eafc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,14,4.25],"to":[6,14,4.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,1,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,1,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[19,29,18,28],"texture":3},"down":{"uv":[29,18,28,19],"texture":3}},"type":"cube","uuid":"3f82d037-4d2f-6460-8b88-499246586db3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4.5,14,4.75],"to":[6.5,14,5.75],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,0,2,0],"texture":3},"east":{"uv":[0,0,1,0],"texture":3},"south":{"uv":[0,0,2,0],"texture":3},"west":{"uv":[0,0,1,0],"texture":3},"up":{"uv":[16,26,14,25],"texture":3},"down":{"uv":[18,25,16,26],"texture":3}},"type":"cube","uuid":"137e76f3-ea50-71d0-762d-b5e6f3a1b40a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.75,11,6],"to":[10.25,12,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[19.5,13.5,20,14],"texture":2},"east":{"uv":[19.5,14,20,14.5],"texture":2},"south":{"uv":[19.5,14.5,20,15],"texture":2},"west":{"uv":[19.5,15,20,15.5],"texture":2},"up":{"uv":[20,16,19.5,15.5],"texture":2},"down":{"uv":[20,16,19.5,16.5],"texture":2}},"type":"cube","uuid":"50b32161-5a4c-0e99-bd79-21e3522c15c7"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,11,5.5],"to":[10,12,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[19.5,16.5,20,17],"texture":2},"east":{"uv":[19.5,17,20,17.5],"texture":2},"south":{"uv":[19.5,17.5,20,18],"texture":2},"west":{"uv":[19.5,18,20,18.5],"texture":2},"up":{"uv":[20,19,19.5,18.5],"texture":2},"down":{"uv":[19.5,19.5,19,20],"texture":2}},"type":"cube","uuid":"d1a5a83b-765b-1942-5a28-a072468bd16e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,11,8.75],"to":[9,12,9.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[19.5,19,20,19.5],"texture":2},"east":{"uv":[19.5,19.5,20,20],"texture":2},"south":{"uv":[20,0,20.5,0.5],"texture":2},"west":{"uv":[20,0.5,20.5,1],"texture":2},"up":{"uv":[20.5,1.5,20,1],"texture":2},"down":{"uv":[20.5,1.5,20,2],"texture":2}},"type":"cube","uuid":"2c3de6c6-0d11-29de-cbf9-6578f69597e3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.5,11,4.75],"to":[9,12,5.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,2,20.5,2.5],"texture":2},"east":{"uv":[20,2.5,20.5,3],"texture":2},"south":{"uv":[20,3,20.5,3.5],"texture":2},"west":{"uv":[20,3.5,20.5,4],"texture":2},"up":{"uv":[20.5,4.5,20,4],"texture":2},"down":{"uv":[20.5,4.5,20,5],"texture":2}},"type":"cube","uuid":"53875594-cd99-d0bd-2cb0-080f2847df1c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,11,5],"to":[9.5,12,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,5,20.5,5.5],"texture":2},"east":{"uv":[20,7.5,20.5,8],"texture":2},"south":{"uv":[20,8,20.5,8.5],"texture":2},"west":{"uv":[20,8.5,20.5,9],"texture":2},"up":{"uv":[20.5,9.5,20,9],"texture":2},"down":{"uv":[20.5,9.5,20,10],"texture":2}},"type":"cube","uuid":"554d6a10-01a8-3748-fd3e-5430bb36b5f0"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9,11,8.5],"to":[9.5,12,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,10,20.5,10.5],"texture":2},"east":{"uv":[20,10.5,20.5,11],"texture":2},"south":{"uv":[20,11,20.5,11.5],"texture":2},"west":{"uv":[20,11.5,20.5,12],"texture":2},"up":{"uv":[12.5,20.5,12,20],"texture":2},"down":{"uv":[20.5,12,20,12.5],"texture":2}},"type":"cube","uuid":"ed76f4bd-afa5-4e68-75a4-0d9a3b92ec45"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.5,11,8],"to":[10,12,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[12.5,20,13,20.5],"texture":2},"east":{"uv":[20,12.5,20.5,13],"texture":2},"south":{"uv":[13,20,13.5,20.5],"texture":2},"west":{"uv":[20,13,20.5,13.5],"texture":2},"up":{"uv":[14,20.5,13.5,20],"texture":2},"down":{"uv":[20.5,13.5,20,14],"texture":2}},"type":"cube","uuid":"f8b9c62a-1ecf-cf22-4066-77f8f2bfc09f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[9.75,11,7.5],"to":[10.25,12,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,14,20.5,14.5],"texture":2},"east":{"uv":[20,14.5,20.5,15],"texture":2},"south":{"uv":[20,15,20.5,15.5],"texture":2},"west":{"uv":[15.5,20,16,20.5],"texture":2},"up":{"uv":[20.5,16,20,15.5],"texture":2},"down":{"uv":[16.5,20,16,20.5],"texture":2}},"type":"cube","uuid":"aaa53df2-e9da-085c-b95c-d050ed9c407e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,11,6.5],"to":[10.5,12,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,16,20.5,16.5],"texture":2},"east":{"uv":[16.5,20,17,20.5],"texture":2},"south":{"uv":[20,16.5,20.5,17],"texture":2},"west":{"uv":[17,20,17.5,20.5],"texture":2},"up":{"uv":[20.5,17.5,20,17],"texture":2},"down":{"uv":[18,20,17.5,20.5],"texture":2}},"type":"cube","uuid":"d1ec83ed-cd83-f16e-0390-0cbf372e5ae1"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5.75,11,7.5],"to":[6.25,12,8],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,17.5,20.5,18],"texture":2},"east":{"uv":[18,20,18.5,20.5],"texture":2},"south":{"uv":[20,18,20.5,18.5],"texture":2},"west":{"uv":[18.5,20,19,20.5],"texture":2},"up":{"uv":[20.5,19,20,18.5],"texture":2},"down":{"uv":[19.5,20,19,20.5],"texture":2}},"type":"cube","uuid":"0b962282-c0fb-eae3-90bb-93165126476c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,11,8],"to":[6.5,12,8.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20,19,20.5,19.5],"texture":2},"east":{"uv":[19.5,20,20,20.5],"texture":2},"south":{"uv":[20,19.5,20.5,20],"texture":2},"west":{"uv":[20,20,20.5,20.5],"texture":2},"up":{"uv":[21,0.5,20.5,0],"texture":2},"down":{"uv":[21,0.5,20.5,1],"texture":2}},"type":"cube","uuid":"77a76ac4-83d8-4c28-0a7b-ecf0883d9705"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,11,8.5],"to":[7,12,9],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,1,21,1.5],"texture":2},"east":{"uv":[20.5,1.5,21,2],"texture":2},"south":{"uv":[20.5,2,21,2.5],"texture":2},"west":{"uv":[2.5,20.5,3,21],"texture":2},"up":{"uv":[21,3,20.5,2.5],"texture":2},"down":{"uv":[3.5,20.5,3,21],"texture":2}},"type":"cube","uuid":"b8e6d00c-b05a-93ab-3746-fd7f7663127a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,11,8.75],"to":[7.5,12,9.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,3,21,3.5],"texture":2},"east":{"uv":[3.5,20.5,4,21],"texture":2},"south":{"uv":[20.5,3.5,21,4],"texture":2},"west":{"uv":[4,20.5,4.5,21],"texture":2},"up":{"uv":[21,4.5,20.5,4],"texture":2},"down":{"uv":[5,20.5,4.5,21],"texture":2}},"type":"cube","uuid":"aa217bd3-2ca1-d8e1-057f-7fb36dcb1ffe"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,11,9],"to":[8.5,12,9.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,4.5,21,5],"texture":2},"east":{"uv":[5,20.5,5.5,21],"texture":2},"south":{"uv":[20.5,5,21,5.5],"texture":2},"west":{"uv":[5.5,20.5,6,21],"texture":2},"up":{"uv":[21,6,20.5,5.5],"texture":2},"down":{"uv":[6.5,20.5,6,21],"texture":2}},"type":"cube","uuid":"73efe3d4-3fdc-6cb6-0b71-0e40f0068e91"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5.5,11,6.5],"to":[6,12,7.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,6,21,6.5],"texture":2},"east":{"uv":[6.5,20.5,7,21],"texture":2},"south":{"uv":[20.5,6.5,21,7],"texture":2},"west":{"uv":[7,20.5,7.5,21],"texture":2},"up":{"uv":[21,7.5,20.5,7],"texture":2},"down":{"uv":[8,20.5,7.5,21],"texture":2}},"type":"cube","uuid":"1e952719-e1c2-a1be-e127-a6e81a422ccc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5.75,11,6],"to":[6.25,12,6.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,7.5,21,8],"texture":2},"east":{"uv":[8,20.5,8.5,21],"texture":2},"south":{"uv":[20.5,8,21,8.5],"texture":2},"west":{"uv":[8.5,20.5,9,21],"texture":2},"up":{"uv":[21,9,20.5,8.5],"texture":2},"down":{"uv":[9.5,20.5,9,21],"texture":2}},"type":"cube","uuid":"0a8b503d-d77b-42c0-be56-edcd2be43b15"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,11,5.5],"to":[6.5,12,6],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,9,21,9.5],"texture":2},"east":{"uv":[9.5,20.5,10,21],"texture":2},"south":{"uv":[20.5,9.5,21,10],"texture":2},"west":{"uv":[10,20.5,10.5,21],"texture":2},"up":{"uv":[21,10.5,20.5,10],"texture":2},"down":{"uv":[11,20.5,10.5,21],"texture":2}},"type":"cube","uuid":"a1812b03-60b4-9f97-9a13-fe69910d0017"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6.5,11,5],"to":[7,12,5.5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,10.5,21,11],"texture":2},"east":{"uv":[11,20.5,11.5,21],"texture":2},"south":{"uv":[20.5,11,21,11.5],"texture":2},"west":{"uv":[11.5,20.5,12,21],"texture":2},"up":{"uv":[21,12,20.5,11.5],"texture":2},"down":{"uv":[12.5,20.5,12,21],"texture":2}},"type":"cube","uuid":"c02d841a-1ed8-3f52-e9e8-272191a3eae3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,11,4.75],"to":[7.5,12,5.25],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,12,21,12.5],"texture":2},"east":{"uv":[12.5,20.5,13,21],"texture":2},"south":{"uv":[20.5,12.5,21,13],"texture":2},"west":{"uv":[13,20.5,13.5,21],"texture":2},"up":{"uv":[21,13.5,20.5,13],"texture":2},"down":{"uv":[14,20.5,13.5,21],"texture":2}},"type":"cube","uuid":"5a28d30a-e0c1-16f9-ff5b-c2a9c0714204"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,11,4.5],"to":[8.5,12,5],"autouv":0,"color":6,"origin":[8,6,8],"faces":{"north":{"uv":[20.5,13.5,21,14],"texture":2},"east":{"uv":[14,20.5,14.5,21],"texture":2},"south":{"uv":[20.5,14,21,14.5],"texture":2},"west":{"uv":[14.5,20.5,15,21],"texture":2},"up":{"uv":[21,15,20.5,14.5],"texture":2},"down":{"uv":[15.5,20.5,15,21],"texture":2}},"type":"cube","uuid":"6b51eebb-26d3-053e-5ca2-aaba39b870d7"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,18,2],"to":[8.5,19,3.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[0,28,1,29],"texture":3},"east":{"uv":[24,23,26,24],"texture":3},"south":{"uv":[28,0,29,1],"texture":3},"west":{"uv":[24,24,26,25],"texture":3},"up":{"uv":[26,2,25,0],"texture":3},"down":{"uv":[3,25,2,27],"texture":3}},"type":"cube","uuid":"3c220ec0-f24b-4379-ad94-a973697dd356"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,18,3.5],"to":[10,19,9.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[17,18,21,19],"texture":3},"east":{"uv":[5,16,11,17],"texture":3},"south":{"uv":[19,0,23,1],"texture":3},"west":{"uv":[16,6,22,7],"texture":3},"up":{"uv":[7,14,3,8],"texture":3},"down":{"uv":[11,8,7,14],"texture":3}},"type":"cube","uuid":"71e26934-e105-6cce-d149-4df2e33d199e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[10,18,4.5],"to":[11,19,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[9,28,10,29],"texture":3},"east":{"uv":[19,1,23,2],"texture":3},"south":{"uv":[28,9,29,10],"texture":3},"west":{"uv":[19,2,23,3],"texture":3},"up":{"uv":[8,22,7,18],"texture":3},"down":{"uv":[9,18,8,22],"texture":3}},"type":"cube","uuid":"c1513afe-857e-2831-5059-3ac1bd98ae38"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,18,9.5],"to":[8.5,19,11],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[27,26,28,27],"texture":3},"east":{"uv":[24,21,26,22],"texture":3},"south":{"uv":[27,27,28,28],"texture":3},"west":{"uv":[24,22,26,23],"texture":3},"up":{"uv":[21,26,20,24],"texture":3},"down":{"uv":[24,24,23,26],"texture":3}},"type":"cube","uuid":"1708e7e9-574d-e7f9-baf2-26566e210865"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,18,4.5],"to":[6,19,8.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[8,28,9,29],"texture":3},"east":{"uv":[17,15,21,16],"texture":3},"south":{"uv":[28,8,29,9],"texture":3},"west":{"uv":[17,17,21,18],"texture":3},"up":{"uv":[6,22,5,18],"texture":3},"down":{"uv":[7,18,6,22],"texture":3}},"type":"cube","uuid":"e6f90844-9719-80d3-7884-80091236364f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.5,12,1.5],"to":[8.5,19,2],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[13,4,14,11],"texture":3},"east":{"uv":[13,11,14,18],"texture":3},"south":{"uv":[3,14,4,21],"texture":3},"west":{"uv":[4,14,5,21],"texture":3},"up":{"uv":[2,29,1,28],"texture":3},"down":{"uv":[29,1,28,2],"texture":3}},"type":"cube","uuid":"52062059-0205-f40e-c253-fc488430617e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7.75,13,1],"to":[8.25,16,1.5],"autouv":0,"color":6,"origin":[8,12.5,6.5],"faces":{"north":{"uv":[3,21,4,24],"texture":3},"east":{"uv":[4,21,5,24],"texture":3},"south":{"uv":[21,7,22,10],"texture":3},"west":{"uv":[9,21,10,24],"texture":3},"up":{"uv":[3,29,2,28],"texture":3},"down":{"uv":[29,2,28,3],"texture":3}},"type":"cube","uuid":"7cb69ebb-b84b-c143-863b-58539ad0be5c"}],"outliner":[{"name":"Barrel","origin":[8,8,8],"color":0,"uuid":"8c48afe2-8c47-1df1-18f0-65d698206d74","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["8b53daa8-9584-82a2-08e1-7212e1f91c99","e4dea0e2-a7bc-c935-0e00-2a33a4d5cf09","b868d7c8-b28c-43cc-0e61-34ba6da772d8","6cca4618-0c43-28a6-1fdc-899fb2e5c9dd","33c76f9d-5f71-62a6-1c89-6414ad81b7a0","723a9f3d-508a-ce0d-d919-4d78db46743e","5edfe1ac-5fe5-4073-d8a2-7f0f8d1c3823","c8d61798-73e2-1034-9cff-1b281cb4abac","03fd5df8-8fc1-ce05-654b-15b836e5e598","263b96b1-c7f5-368d-5171-0deeb8555969","a0610043-899f-f806-e05a-9dda4ca9f307","e1914e7b-6e82-e4ef-71d0-787e7a6785f1","9313a4fd-0d0f-7f56-95c6-93273a26ef36","268f3e54-6221-be8d-2825-3aa6f098052e","2a92565d-2296-e854-2c59-a9c91704ed77","305d3f9d-8d9a-1d2c-3da4-5f9e3da031b8",{"name":"Top","origin":[8,8,8],"color":0,"uuid":"0663199e-89a6-4898-b4ad-66d8fd0de10f","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["50b32161-5a4c-0e99-bd79-21e3522c15c7","d1a5a83b-765b-1942-5a28-a072468bd16e","2c3de6c6-0d11-29de-cbf9-6578f69597e3","53875594-cd99-d0bd-2cb0-080f2847df1c","554d6a10-01a8-3748-fd3e-5430bb36b5f0","ed76f4bd-afa5-4e68-75a4-0d9a3b92ec45","f8b9c62a-1ecf-cf22-4066-77f8f2bfc09f","aaa53df2-e9da-085c-b95c-d050ed9c407e","d1ec83ed-cd83-f16e-0390-0cbf372e5ae1","0b962282-c0fb-eae3-90bb-93165126476c","77a76ac4-83d8-4c28-0a7b-ecf0883d9705","b8e6d00c-b05a-93ab-3746-fd7f7663127a","aa217bd3-2ca1-d8e1-057f-7fb36dcb1ffe","73efe3d4-3fdc-6cb6-0b71-0e40f0068e91","1e952719-e1c2-a1be-e127-a6e81a422ccc","0a8b503d-d77b-42c0-be56-edcd2be43b15","a1812b03-60b4-9f97-9a13-fe69910d0017","c02d841a-1ed8-3f52-e9e8-272191a3eae3","5a28d30a-e0c1-16f9-ff5b-c2a9c0714204","6b51eebb-26d3-053e-5ca2-aaba39b870d7"]}]},{"name":"Barrel Details","origin":[8,8,8],"color":0,"uuid":"fb782982-75bd-9c80-023e-95ca9914c351","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Scope","origin":[8,8,8],"color":0,"uuid":"aa410614-fe3b-730b-d534-1ab695401aec","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["b112a22b-67bd-fd74-576f-1c9b70b0f6b3","1ba85fcc-9621-abb5-0d4b-15c285342cc0","4cebb813-02a0-2408-5170-1a3a8f2bade5","9ad0a987-a1b3-c747-8011-73f684882845","c0d9bb1f-86cd-4264-5914-4e248b02d57b","3a4f573e-2c13-874c-86a3-c0ae32e7e72d","398fedba-b65c-ec22-ca51-acc2aeb80f50","dc8e0212-efad-fd39-5e5f-e41ad8c8660b","4ddf5aeb-2b76-26b4-f310-1f3c5601714f","46fda13b-6ce3-1f64-4aa0-8f59db38fa16","46e8f018-a4e2-2fd7-14aa-dbae5c512f0e","f1e26158-beca-80b6-65fd-1ab24f2fdc67","469f1a22-2158-7cef-03e1-856a969ed655","4d5f3d9c-e21c-bc09-89be-10296f0e9bca","f60d56c6-12de-1bfb-e629-de5c4d70e063","e8ab0327-6e26-0958-4ee8-3d5cb5f69a2a","6a3502ad-094f-6aaa-7998-90ca9acadfe9","0b31e7c9-1210-7601-14de-504193d38537","1d238ecf-7ec6-ad42-d017-ee04512de1ec",{"name":"Net","origin":[8,8,8],"color":0,"uuid":"a365703f-c34c-3673-629b-49754db95c90","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["a76c8bb7-397e-cfa8-0a87-5bb6329e9138","89688973-2638-217c-b6ac-0754d36f00f4","9459550e-0025-920d-9efb-72ddd07dfe2f","1eff1d87-19c4-f670-34f7-e59751413f39","b211ff1b-e91f-194e-52b4-ec2a9e5d7f0b","6bb63954-2186-d68a-52a4-cfe9ae8d3638"]}]},{"name":"Solid Ends","origin":[8,6,8],"color":0,"uuid":"99022c48-4ca4-05dc-e0fd-c8f7329e7d88","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["d89a4343-f9dd-c81e-20f4-119992e24678","7eb9caba-bd0a-7f14-74e7-78e087087924","7f264e7a-2434-c8f2-e410-4fe1f7470821","49ac18f3-f5e0-333d-2a51-02a20b2a9bb3","c6f0b2f3-78b8-0ff8-a467-ee6032737f18","e40f243e-b8d3-7a87-36a1-1cb1cbec6e74","c5115ca2-f67e-0ed5-d966-f1ca887d28bc","81279b7f-cbd4-cd4c-dd71-9ec2453ea785","01ad688f-5df9-be54-c306-ad21805c48a2","ac0e565f-1959-a09f-7e4e-2f4d776a4b24","d4269ced-c53d-651c-be11-fe8adce7481d","4bcd491f-b92d-3e11-5dcc-59d6e9b91b01","137e76f3-ea50-71d0-762d-b5e6f3a1b40a","3f82d037-4d2f-6460-8b88-499246586db3","5b45c39f-73b8-db01-ceff-1d7ff191eafc","549fe4f3-6839-9932-b462-d61c2b2c0bc2","ec83b6c1-d6bc-b7a9-cf5c-a0273479bb63","6a834756-a47c-ecb3-e8d3-2a9420899df1","078bf81b-52bf-14f4-dd4a-53d029b0dc63","c1bc4926-0e84-14a1-d77e-fcdbdd7a7aa4","f88ac62a-9ce4-34e4-7ca2-c68f219b85cb","1a9abfee-dc1b-e94a-9d64-36ca247144e0","82958236-c2c9-a329-1218-4a4f05879f9b","2759333f-661a-61e7-e906-1dce8e29d5b0"]},{"name":"Stock","origin":[8,8,8],"color":0,"uuid":"6e4c00b4-5ed8-9f0a-2c99-45c4cb197b73","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["4bc2b90a-f51f-7a0f-812c-ba3ac25cd5bd","65ee8b0b-a58b-361f-ec15-a7bfa00f4dac"]}]},{"name":"Drum","origin":[8,6,8],"color":0,"uuid":"79cf0495-eab6-d60b-dd0b-f8e6a0ad4aaf","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Ends","origin":[8,6,8],"color":0,"uuid":"f3c07ab2-32b9-231d-ba6d-c696edbb8c63","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["7797f956-9cb2-3690-0b9b-36f3f825dfa6","c6ffba98-6dc9-f970-5548-a4c992ffa264","f70ab9c0-8ed4-41de-e3ed-45be35c55954","ae1ca423-7afc-c33b-0177-020b12c33209","6106195e-ce97-e5f5-c1eb-65e4a78cc98b"]},{"name":"Joins","origin":[8,6,8],"color":0,"uuid":"87e621c6-0a39-0256-1b8b-4c2f66db0caa","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["eba16b35-6474-d61a-e3db-bc26b27667e7","fedd16e3-49c9-9ec8-d996-643d84b96cd6","456612a9-3ca3-8187-916b-6d70ea8b1eb1","ab665418-dea2-4053-7ce1-b30718b92b69"]},{"name":"Barrels","origin":[8,6,8],"color":0,"uuid":"275269b5-f4b3-f2c5-2d71-bb79f6fb3f75","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"1","origin":[8,6,8],"color":0,"uuid":"7bf1a4fd-3e51-7667-7887-0dbc1eb5faa3","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["d8f614ad-1ade-caa9-c82b-131fc7b2c7e5","d70fd6e5-9109-c662-0a8d-0325bf585861","c5dfbe01-7329-a1ab-3a2c-11ae66ff776e","be574ec3-44cc-b0fe-9350-1e54ccc8b531","d64dc413-586a-4e58-bfcd-e7703ce81ad3","aa02415c-23e3-c0bf-fc7d-98679b22e4c2","17779524-6e13-088a-0201-6905773d7e9c","2d218f20-ceda-459b-0b2d-f59f79b6c3e6"]},{"name":"2","origin":[8,6,8],"color":0,"uuid":"3084252e-c337-7094-9a55-4c765ae3c746","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["b1e37af1-5322-b269-5f39-3fc3b767bcc3","aa1bcc13-744b-e33d-cfdc-712a1debd507","859dc7a7-3a01-ed34-ba2a-dc4e58b0123a","a0564f5d-898e-dd2e-30c0-9cedbb3313c8","29a6b1d8-61cb-f5f2-2ce7-ccfaf0619c3e","c473daae-978d-2d0d-5101-68afda719f03","48780337-0bef-f592-2071-fa571a641fc8","571eb247-6cb0-2f30-7801-6e0950fe2322"]},{"name":"3","origin":[8,6,8],"color":0,"uuid":"826b8f82-b248-8958-95a1-fae9ef0f7c5d","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["db5b3a51-9ec1-5f33-1229-f06f488a8431","cda42d92-754d-eb33-d20c-5436d647944c","a348ec56-5f2e-79c9-9f1f-12dc84382ec3","891c582c-2746-44fb-7515-ed69ccfe4f68","398b3156-1c63-3eb0-be90-5c98e0b4b8be","ca322da9-7ac1-614f-e0ac-08b4abd5b3a9","1bcf6434-155a-0acb-2c62-ef8b3fbae2dc"]},{"name":"4","origin":[8,6,8],"color":0,"uuid":"db29136d-23b7-82e6-8c7f-d43e271fbbd1","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["a269081e-1d0f-a078-740e-59b902e73ee6","cde11b35-dbda-e4a2-25e0-665eef1cb32f","431af857-12d1-734f-99a6-787be978e953","c59c865a-2725-3534-ae8c-b17e27330d7d","ee28745c-8838-08b1-5f82-d2a0de139e17","126bb4c4-f955-a0b3-c3be-a1cbd0659634","94f85714-28e1-973b-9f77-8140e1b1769a","a062934d-994a-47e4-6535-088a89402613"]},{"name":"5","origin":[8,6,8],"color":0,"uuid":"c138973b-77d2-a711-c2dd-da7115f8ca9e","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["d76b237e-94e8-0200-5035-612e2cbb95c5","90635316-063b-a9fc-5a9a-88f3375cf075","ea87e214-dfd8-2b0d-2330-c4e066bce96e","d262c61d-1e34-bdd5-6aa5-6cc9ed74220e","4bd5767d-b842-4c2b-b5b6-462a842142d2","9caf9bf3-0d49-d2ee-7da6-8130766a2670","2a5627a9-a28f-67ce-3e69-ab4fb93edb49"]},{"name":"6","origin":[8,6,8],"color":0,"uuid":"9994f304-2aad-931e-785c-f381a5309dbf","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["8cfab8d1-be30-790e-dd77-d34be7ccd30c","06448771-119f-d4e9-d633-e78191cf791c","a14cf836-1ee9-67ec-4c48-7c0d949fdfb1","62e2ac94-6000-e6a9-56d5-3c4404c876f0","3a5cab6d-31dc-51e2-48f4-4888813767c2","d7cb1699-1818-8264-8006-b604a312310a","73a660ad-65a6-302a-6517-ceccb02dfdb2","980915cf-b217-2d80-b071-d78c11124a25"]},{"name":"Solid Ends","origin":[8,6,8],"color":0,"uuid":"2f010cfb-6d25-57f5-da79-5a90ec6a95af","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["8e3e2f7f-2c30-d1d6-f535-443ccc1941fc","6c3d3467-4e7b-157a-f2d2-34cc98eb6b7e","cc8956c4-0a6a-a562-5fa1-5b92c1479af9","a58762cd-efd8-b38d-b5c5-2a989a6f2430","55172053-7eda-e631-b5af-c86fbd9288c8","410e3fbb-e168-c52a-5813-6a3fc1b8b9f6","7a5d8c10-7258-3ec2-e006-4850a30d323e","c1872c73-53b3-6ee6-dbbf-1b43e0bf2d2f","41b352af-0723-10d0-b84d-1e3780e7024d","41106c0c-1f94-17c1-3276-abc5d69c7588","4b0fea8b-997c-35d3-1f2d-e6d25729bc4a","8ef6fd96-cbc5-ff42-42a5-206272756884","8f7e7434-9e21-fca2-0f6c-e5d0481e8b38","5bbe6ea6-00c8-d820-8169-3f5187c31144","4dff0fb7-964b-38a9-21f4-33a432e03f63","534a0293-ac8b-7cae-b247-68bd0250dc7c","2acd481b-cd8a-f385-84ec-08e1a436da00"]}]}]},{"name":"Trigger","origin":[8,8,8],"color":0,"uuid":"7a401894-96f3-41f8-26d2-466b07c9327d","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Ring","origin":[8,6,8],"color":0,"uuid":"4422efd3-e879-f113-fcc2-31c88f826615","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["5d68268c-5373-0b05-fb01-cd61b0ea4190","c727a53f-2edd-2ed5-ca2f-ef0e6044a94c","415e9c62-4f95-b6ae-ee6d-0be6271b7a0a","cf989dad-9f8b-2eda-503a-44b382fc3c3f","19190e0c-52e2-3486-cf86-1148d839f536","8693c878-87f4-48b7-8a9b-cc74fd5814b3","5d315c86-e5dc-03a1-c6f6-2dc2265db845","5e956acb-2658-264f-74b5-686734647b4f","93932a8b-a7d4-0b61-2382-d64daf444049","dc63c3f7-1b6d-36fc-7de6-ecf46e5dcec1","a3bc3128-5f51-8585-53fc-3dd405510488","be45b3e9-f965-b177-0fbe-40070c25ebc3"]},"e61acc4d-3983-e18a-91e3-15afb17a46fc","9bdea789-37a8-a2d2-483a-3ec3ec275be6","638aee7e-2abb-d41b-5637-bf96c96dc7e8","09710376-d077-9d7f-9910-9052ea3a180e","8e706f92-71ef-9034-a356-3eb7a54ecbb9","ae31f797-d653-c6dd-5d12-0b1acad3bbcc","b4c4fa39-82c2-f5ff-6257-4af422a84513",{"name":"BackDrum","origin":[8,8,8],"color":0,"uuid":"8f29e356-fbc5-3269-ea73-fa70c405e407","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["3c220ec0-f24b-4379-ad94-a973697dd356","71e26934-e105-6cce-d149-4df2e33d199e","c1513afe-857e-2831-5059-3ac1bd98ae38","1708e7e9-574d-e7f9-baf2-26566e210865","e6f90844-9719-80d3-7884-80091236364f","7cb69ebb-b84b-c143-863b-58539ad0be5c","52062059-0205-f40e-c253-fc488430617e"]}]},{"name":"Shoulder Stock","origin":[8,8,8],"color":0,"uuid":"3f4ffaa3-0026-fda8-7e22-968725d015e4","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["6424a059-a163-8d30-e08f-d502485e0578","4d6f6b70-6bd0-6a8b-5e3b-153bddcb4044","e12eae89-aca5-3660-3e12-c0cfc7529cfe","42af1794-60f5-0671-1168-5ea76a075af9","7d95444e-7c5d-5d27-f967-cc50ffd086ac","8ef58fc6-c903-be22-4511-20efdd3cc293","56809c45-e108-a8b0-8f0d-3e1b0c75b61f","accb2157-32d3-5fde-e24e-f0d5b2557333","bc2c9857-e694-f0dd-32b1-21fe612aedf2","2164b1b1-3dcc-ccab-bbda-b03ff1f1aa19","c5bb2e34-5ac0-18e9-b112-3f1f214fa0a3","2b00e9ea-7e14-cf30-32c6-d1456d88ec7a","649f6333-09c3-1fd7-2b91-a3fcbd449824","1a49c0d1-add6-f635-aefe-980cb5f4d4ab","60bf1dce-b6b9-3ee7-a6e7-b43b9e67c8ee","fb8c4e95-5f7a-6e03-fc07-dd26dff7da82","18afe468-da8a-c8f7-b866-6a6ffb9f42fd","5f1106bc-382f-0ea6-f390-6853e12722b8","2909e86f-a25e-175d-7f5c-3b74fb50d07e","4b24fb8f-4565-bde1-0c9a-3bab144f8908","1afd9464-d386-c92d-e1a2-0c61bdb60cf6","2ec07916-970d-113d-c707-3df421a02abe","f2a0b2d2-2dc3-3553-ca90-3e7fce3d4fd5","55e0c36e-4193-1385-e0a2-946852933a16","da83b2e7-97c3-5e76-35e8-08612a812fda","d85d8105-10f7-2ce4-73b4-60ec3ea48eb8","f59cdd49-f0e1-d883-8bec-ed994e9d5fc8","c6acfb5a-50c0-c139-92a3-4460cb815359","1b5ce2db-b063-0929-9694-85602e4befdb","6ea9654e-a865-99b5-bf67-266b8a898f3e","47830dc1-6389-2780-fb61-ea7bb61bf9b4","cdd15042-9cf0-92c1-f24c-71527c20a6ee","eb454a04-09a7-d8e9-6ff4-4d6e79e9e9c6","8cac6dba-2c7d-bb9f-6573-85260bd24efc","96d4d03e-2c63-5c11-d9ca-9aa70d663e86",{"name":"Ends","origin":[8,8,8],"color":0,"uuid":"e486efe5-61e4-0f61-b2d8-12135e14e66d","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["eff65476-38fd-97cc-1678-7f0eab58c796","76737977-c76f-a2f8-0238-c470c68716a1","a8fcc1f1-22ef-f521-13e4-e1a0f53a8cf4","22c124a8-6709-297e-8322-0e2364dbc330"]}]}],"textures":[{"path":"C:\\Users\\amazi\\Documents\\McDonalds-Projects\\Grenades-And-Gadgets\\1.18.2-GnG\\src\\main\\resources\\assets\\grenadesandgadgets\\textures\\item\\grenade3d\\grenade_launcher_stock_texture.png","name":"grenade_launcher_stock_texture.png","folder":"item/grenade3d","namespace":"grenadesandgadgets","id":"0","particle":true,"render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"mode":"bitmap","saved":true,"uuid":"a208d519-5456-62eb-9533-2df57559c8a0","relative_path":"../../../textures/item/grenade3d/grenade_launcher_stock_texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAeVJREFUWEftVklSwzAQHC1x4lDwBp7Anf8/CCjixNZCtZQWchwOVm6UdVJsj6bV09MZ9f72Gl96K85Hee6tYH0NruxPo5djZ8T5IKOPaT+MXpQS+Ti59P0j8QoAcAgOxgIIJPU+ijEqPcO78+QlRJHOKJl8nAF4JD4BQAJrVGHhLwBIdNhlMFhk4JH4BAAU9p1J1PedFg1+ReTsQrrx6KJoLWK1Emt0+g6AP4ffErTGFwDISYqR8LDTorXK1AdJAHB7auQWQGt8KQFrzxsf9znZ6ZLp9iGLFGIcxpDfjfkdStAaPwMAarFQBlCdyjD5RD2SQpQAyDLcAmiJLwCQlDfbWZXoDiHKeQrS2QwAzwEGC52A1mWbtsbPALgQZXKxMMD61wDqVrwF0BJfANTUo87oBHTB9cKJkZpy0k0GWuNnPgBHgqDYjnQ+MEEAMCgIDt/UgNAVLfGlDWnFVHntgngG4dGgkgiqLqiteG38AgCpBQDaM50P9T9YLd8XvzAiXmBt/F0A7GkAYI1x8NPeJHO654Q1gDXxCxGi7ux1uh5rjt/1vtYARbg2fibCHXz/CgAHYg/Rof9T77ssQPwdswXphBBhS/yiBPWtKbRtHuBAAka2eWCbB7Z5YJsHtnlgmwf+3TzwA3yL1A82PqouAAAAAElFTkSuQmCC"},{"path":"C:\\Users\\amazi\\Documents\\McDonalds-Projects\\Grenades-And-Gadgets\\1.18.2-GnG\\src\\main\\resources\\assets\\grenadesandgadgets\\textures\\item\\grenade3d\\grenade_launcher_end_texture.png","name":"grenade_launcher_end_texture.png","folder":"item/grenade3d","namespace":"grenadesandgadgets","id":"2","particle":false,"render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"mode":"bitmap","saved":true,"uuid":"0e239e42-62d5-5f6b-0c23-5b51c383aeef","relative_path":"../../../textures/item/grenade3d/grenade_launcher_end_texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAEFJREFUOE9jZGBg+M9AGDDiUgKSGDVgRIQBzjQAShvI6QCmEDld4NUMMwA9kcEMIKgZlwGEEzaSCqJswWfiMDAAAFccDBFYaJCcAAAAAElFTkSuQmCC"},{"path":"C:\\Users\\amazi\\Documents\\McDonalds-Projects\\Grenades-And-Gadgets\\1.18.2-GnG\\src\\main\\resources\\assets\\grenadesandgadgets\\textures\\item\\grenade3d\\grenade_launcher_barrel_texture.png","name":"grenade_launcher_barrel_texture.png","folder":"item/grenade3d","namespace":"grenadesandgadgets","id":"3","particle":false,"render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"mode":"bitmap","saved":true,"uuid":"d4d73b39-93e5-8f18-e06b-761ab4a107f3","relative_path":"../../../textures/item/grenade3d/grenade_launcher_barrel_texture.png","source":"data:image/png;base64,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"},{"path":"C:\\Users\\amazi\\Documents\\McDonalds-Projects\\Grenades-And-Gadgets\\1.18.2-GnG\\src\\main\\resources\\assets\\grenadesandgadgets\\textures\\item\\grenade3d\\grenade_launcher_metal_texture.png","name":"grenade_launcher_metal_texture.png","folder":"item/grenade3d","namespace":"grenadesandgadgets","id":"4","particle":false,"render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"mode":"bitmap","saved":true,"uuid":"2853a01c-b08c-5d52-875c-e0430b3f8806","relative_path":"../../../textures/item/grenade3d/grenade_launcher_metal_texture.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAv5JREFUWEeFlguOwkAMQzv8bwZC3P8siF9XHu0buSbbrVRBhzJxHMeZdrvd5un3aq1Nm82m37r0udvtxrO+n06nvlZdn89ner1ekz518aw1bq3N8wg5NQeggNvttgcEjD8r8OFw6O/o0ka+mTZ/v99jjWetAUDfAag9BgCCK4gCVEB8jQw9YALiOZlwEAsACs5NsKoU0J8Z94xa6zcM6R1uZ0KMCOCiBE6xb5RaAEBmrP84cAV8PB4dgPbQ+wr8fD7H+gKA/rzf7/smAEgtpPgcKAD0qWBrAARCwBYloAPQQ2oBar1rPGNKQHCnn3KJATQwSqCNvd08a1/PGiflqQ1aToG8IwAwGFDG2V79xwJYlXEy4+pXMISMMMXC/X7vemjX63XWpg6AFtMnetCmLsZUu/uBM4Ha8Rb9BgDpoF0ul9lr7jogCDWFEcqCY1bt6E7oXsH6EKEAeC0RnmeOkcAIZkVWAISFLIGLET3ghr0EZK2gZOetpAzIwgUKWN5dE6F+Yx90Maw4N83MMoO1LkmLdlfEF/4EkEOIzKA2a+2MuUFRAkpL9jigT8wvI6JlfPCQRY5b1447J+8nAAWWNQsIXvA1jmGhsuAEgDFVzuluSf8zjGBCz12EIM4W9POB19YdDhBMUWYJQSkH6udc8NWG1RxwNnxDtIA4aU8FPx6P48SU9ksX+P/a+XzuDCSAnAEASCawbCapO+raQWSUKAGkCFPdoKczAJ7m5E7oE9D36+X7CwA265n7jKD2lXNm2+Y50B2zLIEHz1Os/5bDqToH5KmJhNi3A4B26PQh5ABcK14q9wkXGnR7xg5glMB7luBZAoYHBpUd4trI0UwLJpB/AaSPcyaAiWTqS2BxOq7KsVoCp9AHEgIESAamPH5S8hHtDC0AOL0E8ZrlMHImHARa8gT+BZD970cob6uFi/1S7Jlm8BzlqY/BAGjd/32q8bt3RXUO9LOEn34QcWlEuQgIB1AZEwEqDfjAqoAurLhSr1OZ/e9spFHhltV6BfQHVDE69FPeuIUAAAAASUVORK5CYII="}],"display":{"thirdperson_righthand":{"rotation":[90,180,0],"translation":[0,1.6,-7.3],"scale":[0.6,0.6,0.6]},"thirdperson_lefthand":{"rotation":[90,180,0],"translation":[0,1.6,-7.3],"scale":[0.6,0.6,0.6]},"firstperson_righthand":{"rotation":[100,180,4],"translation":[0,4.5,-5.5],"scale":[0.75,0.75,0.75]},"firstperson_lefthand":{"rotation":[100,180,0],"translation":[0,4.5,-5.5],"scale":[0.75,0.75,0.75]},"ground":{"rotation":[90,180,0],"translation":[0,0,-6],"scale":[0.7,0.7,0.7]},"gui":{"rotation":[-90,-45,90],"translation":[2.5,3.5,0],"scale":[0.55,0.55,0.55]},"head":{"rotation":[90,180,0],"translation":[0,10.5,-4.5],"scale":[0.6,0.6,0.6]},"fixed":{"rotation":[90,135,90],"translation":[-3.5,4.5,0],"scale":[0.7,0.7,0.7]}}} \ No newline at end of file diff --git a/src/main/resources/assets/grenadesandgadgets/lang/en_us.json b/src/main/resources/assets/grenadesandgadgets/lang/en_us.json index 31966be..fd85758 100644 --- a/src/main/resources/assets/grenadesandgadgets/lang/en_us.json +++ b/src/main/resources/assets/grenadesandgadgets/lang/en_us.json @@ -12,5 +12,8 @@ "container.grenadesandgadgets.time_ticks": "Delay:", "container.grenadesandgadgets.already": "§cAlready linked to this detonator!", "container.grenadesandgadgets.added": "Linked to explosive at: ", - "container.grenadesandgadgets.maxsize": "§cCannot link any more explosives to this detonator!" + "container.grenadesandgadgets.maxsize": "§cCannot link any more explosives to this detonator!", + "container.grenadesandgadgets.notfound": "§cExplosive is not linked to this detonator!", + "container.grenadesandgadgets.removed": "Removed explosive at: ", + "container.grenadesandgadgets.armed_remote": "ARMED" } \ No newline at end of file